Repository: Asabeneh/30-Days-Of-Python Branch: master Commit: de23649ab646 Files: 174 Total size: 58.8 MB Directory structure: gitextract_nzd5gzb_/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── 01_Day_Introduction/ │ └── helloworld.py ├── 02_Day_Variables_builtin_functions/ │ ├── 02_variables_builtin_functions.md │ └── variables.py ├── 03_Day_Operators/ │ ├── 03_operators.md │ └── day-3.py ├── 04_Day_Strings/ │ ├── 04_strings.md │ └── day_4.py ├── 05_Day_Lists/ │ ├── 05_lists.md │ └── day_5.py ├── 06_Day_Tuples/ │ └── 06_tuples.md ├── 07_Day_Sets/ │ └── 07_sets.md ├── 08_Day_Dictionaries/ │ └── 08_dictionaries.md ├── 09_Day_Conditionals/ │ └── 09_conditionals.md ├── 10_Day_Loops/ │ └── 10_loops.md ├── 11_Day_Functions/ │ └── 11_functions.md ├── 12_Day_Modules/ │ ├── 12_modules.md │ ├── main.py │ └── mymodule.py ├── 13_Day_List_comprehension/ │ └── 13_list_comprehension.md ├── 14_Day_Higher_order_functions/ │ └── 14_higher_order_functions.md ├── 15_Day_Python_type_errors/ │ └── 15_python_type_errors.md ├── 16_Day_Python_date_time/ │ └── 16_python_datetime.md ├── 17_Day_Exception_handling/ │ └── 17_exception_handling.md ├── 18_Day_Regular_expressions/ │ └── 18_regular_expressions.md ├── 19_Day_File_handling/ │ └── 19_file_handling.md ├── 20_Day_Python_package_manager/ │ ├── 20_python_package_manager.md │ ├── __init__.py │ ├── arithmetic.py │ └── greet.py ├── 21_Day_Classes_and_objects/ │ └── 21_classes_and_objects.md ├── 22_Day_Web_scraping/ │ ├── 22_web_scraping.md │ └── scrapped_data.json ├── 23_Day_Virtual_environment/ │ └── 23_virtual_environment.md ├── 24_Day_Statistics/ │ └── 24_statistics.md ├── 25_Day_Pandas/ │ └── 25_pandas.md ├── 26_Day_Python_web/ │ └── 26_python_web.md ├── 27_Day_Python_with_mongodb/ │ └── 27_python_with_mongodb.md ├── 28_Day_API/ │ └── 28_API.md ├── 29_Day_Building_API/ │ └── 29_building_API.md ├── 30_Day_Conclusions/ │ └── 30_conclusions.md ├── Chinese/ │ ├── 02_variables_builtin_functions.md │ ├── 03_operators.md │ ├── 04_strings.md │ ├── 05_lists.md │ ├── 06_tuples.md │ ├── 07_sets.md │ ├── 08_dictionaries.md │ ├── 09_conditionals.md │ ├── 10_loops.md │ ├── 11_functions.md │ ├── 12_modules.md │ ├── 13_list_comprehension.md │ ├── 14_higher_order_functions.md │ ├── 15_python_type_errors.md │ ├── 15_python_type_errors_cn.md │ ├── 16_python_datetime.md │ ├── 16_python_datetime_cn.md │ ├── 17_exception_handling_cn.md │ ├── 18_regular_expressions_cn.md │ ├── 19_file_handling_cn.md │ ├── 20_python_package_manager_cn.md │ ├── 21_classes_and_objects_cn.md │ ├── 22_web_scraping_cn.md │ ├── 23_virtual_environment_cn.md │ ├── 24_statistics_cn.md │ ├── 25_pandas_cn.md │ ├── 26_python_web_cn.md │ ├── 27_python_with_mongodb_cn.md │ ├── 28_API_cn.md │ ├── 29_building_API_cn.md │ ├── 30_conclusions_cn.md │ └── README.md ├── Korean/ │ ├── 02_Day_Variables_builtin_functions/ │ │ └── 02_variables_builtin_functions.md │ ├── 04_strings_ko.md │ ├── 05_Day_Lists/ │ │ └── 05_lists.md │ ├── 07_sets_ko.md │ ├── 08_Day_Dictionaries/ │ │ └── 08_dictionaries.md │ ├── 10_loops_ko.md │ └── readme_ko.md ├── Portuguese/ │ ├── 02_Dia_Variaveis_BuiltIn_Functions/ │ │ └── README.md │ └── README.md ├── Spanish/ │ ├── 01_Day_Introduction/ │ │ └── helloworld.py │ ├── 02_Day_Variables_builtin_functions/ │ │ ├── 02_variables_builtin_functions.md │ │ └── variables.py │ ├── 02_variables_builtin_functions_sp.md │ ├── 03_Day_Operators/ │ │ ├── 03_operators.md │ │ └── day-3.py │ ├── 03_operators_sp.md │ ├── 04_strings_sp.md │ ├── 05_lists_sp.md │ ├── 06_tuples_sp.md │ ├── 07_sets_sp.md │ ├── 08_dictionaries_sp.md │ ├── 09_conditionals_sp.md │ ├── 10_loops_sp.md │ ├── 11_functions_sp.md │ ├── 12_modules_sp.md │ ├── 13_list_comprehension_sp.md │ ├── 14_higher_order_functions_sp.md │ ├── 15_python_type_errors_sp.md │ ├── 16_python_datetime_sp.md │ ├── 17_exception_handling_sp.md │ ├── 18_regular_expressions_sp.md │ ├── 19_file_handling_sp.md │ ├── 20_python_package_manager_sp.md │ ├── 21_classes_and_objects_sp.md │ ├── 22_web_scraping_sp.md │ ├── 23_virtual_environment_sp.md │ ├── 24_statistics_sp.md │ ├── 25_pandas_sp.md │ ├── 26_python_web_sp.md │ ├── 27_python_with_mongodb_sp.md │ ├── 28_API_sp.md │ ├── 29_building_API_sp.md │ ├── 30_conclusions_sp.md │ ├── README_sp.md │ └── readme.md ├── Ukrainian/ │ └── readme.md ├── data/ │ ├── F500.csv │ ├── HN_posts_year_to_Sep_26_2016.csv │ ├── cats.json │ ├── countries-data.py │ ├── countries.py │ ├── countries_data.json │ ├── countries_data_long.json │ ├── donald_speech.txt │ ├── email_exchanges.txt │ ├── email_exchanges_big.txt │ ├── fortune1000_final.csv │ ├── fortune_500_companies_2017.csv │ ├── hacker_news.csv │ ├── melina_trump_speech.txt │ ├── michelle_obama_speech.txt │ ├── obama_speech.txt │ ├── result.csv │ ├── romeo_and_juliet.txt │ ├── stop_words.py │ └── weight-height.csv ├── files/ │ ├── csv_example.csv │ ├── example.txt │ ├── excel_example.xlsx │ ├── json_example.json │ ├── reading_file_example.txt │ └── xml_example.xml ├── korean/ │ ├── 03_Day_Operators/ │ │ └── 03_operators.md │ └── readme.md ├── mymodule.py ├── mypackage/ │ ├── __init__.py │ ├── arithmetics.py │ └── greet.py ├── numpy.md ├── old_files/ │ ├── readme.md │ ├── readme10-12.md │ ├── readme13-15.md │ ├── readme16-18.md │ ├── readme19-21.md │ ├── readme22-24.md │ ├── readme25-27.md │ ├── readme28-30.md │ ├── readme4-6.md │ └── readme7-9.md ├── python_for_web/ │ ├── .gitignore │ ├── Procfile │ ├── app.py │ ├── requirements.txt │ ├── static/ │ │ └── css/ │ │ └── main.css │ └── templates/ │ ├── about.html │ ├── home.html │ ├── layout.html │ ├── post.html │ └── result.html └── readme.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ github: [Asabeneh] thanks_dev: custom: [] ================================================ FILE: .gitignore ================================================ readme-draft.md readme13-18.md readme19-24.md readme25-30.md playground.py res.py hello.py backup.md .DS_Store __pycache__ playground/ playground flask_project/venv flask_project/ven/bin/ flask_project/venv/include/ flask_project/ven/lib numpy.ipynb .ipynb_checkpoints .vscode/ *~ test.py ================================================ FILE: 01_Day_Introduction/helloworld.py ================================================ # Introduction # Day 1 - 30DaysOfPython Challenge print("Hello World!") # print hello world print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 + 2) # addition(+) print(3 - 2) # subtraction(-) print(3 * 2) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name': 'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Tuple ================================================ FILE: 02_Day_Variables_builtin_functions/02_variables_builtin_functions.md ================================================

30 Days Of Python: Day 2 - Variables, Builtin Functions

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 1](../readme.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 2](#-day-2) - [Built in functions](#built-in-functions) - [Variables](#variables) - [Declaring Multiple Variable in a Line](#declaring-multiple-variable-in-a-line) - [Data Types](#data-types) - [Checking Data types and Casting](#checking-data-types-and-casting) - [Numbers](#numbers) - [💻 Exercises - Day 2](#-exercises---day-2) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) # 📘 Day 2 ## Built in functions In Python we have lots of built-in functions. Built-in functions are globally available for your use that mean you can make use of the built-in functions without importing or configuring. Some of the most commonly used Python built-in functions are the following: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_, and _dir()_. In the following table you will see an exhaustive list of Python built-in functions taken from [python documentation](https://docs.python.org/3/library/functions.html). ![Built-in Functions](../images/builtin-functions.png) Let us open the Python shell and start using some of the most common built-in functions. ![Built-in functions](../images/builtin-functions_practice.png) Let us practice more by using different built-in functions ![Help and Dir Built in Functions](../images/help_and_dir_builtin.png) As you can see from the terminal above, Python has got reserved words. We do not use reserved words to declare variables or functions. We will cover variables in the next section. I believe, by now you are familiar with built-in functions. Let us do one more practice of built-in functions and we will move on to the next section. ![Min Max Sum](../images/builtin-functional-final.png) ## Variables Variables store data in a computer memory. Mnemonic variables are recommended to use in many programming languages. A mnemonic variable is a variable name that can be easily remembered and associated. A variable refers to a memory address in which data is stored. Number at the beginning, special character, hyphen are not allowed when naming a variable. A variable can have a short name (like x, y, z), but a more descriptive name (firstname, lastname, age, country) is highly recommended. Python Variable Name Rules - A variable name must start with a letter or the underscore character - A variable name cannot start with a number - A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and \_ ) - Variable names are case-sensitive (firstname, Firstname, FirstName and FIRSTNAME) are different variables) Here are some example of valid variable names: ```shell firstname lastname age country city first_name last_name capital_city _if # if we want to use reserved word as a variable year_2021 year2021 current_year_2021 birth_year num1 num2 ``` Invalid variables names ```shell first-name first@name first$name num-1 1num ``` We will use standard Python variable naming style which has been adopted by many Python developers. Python developers use snake case(snake_case) variable naming convention. We use underscore character after each word for a variable containing more than one word(eg. first_name, last_name, engine_rotation_speed). The example below is an example of standard naming of variables, underscore is required when the variable name is more than one word. When we assign a certain data type to a variable, it is called variable declaration. For instance in the example below my first name is assigned to a variable first_name. The equal sign is an assignment operator. Assigning means storing data in the variable. The equal sign in Python is not equality as in Mathematics. _Example:_ ```py # Variables in Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` Let us use the _print()_ and _len()_ built-in functions. Print function takes unlimited number of arguments. An argument is a value which we can be passed or put inside the function parenthesis, see the example below. **Example:** ```py print('Hello, World!') # The text Hello, World! is an argument print('Hello',',', 'World','!') # it can take multiple arguments, four arguments have been passed print(len('Hello, World!')) # it takes only one argument ``` Let us print and also find the length of the variables declared at the top: **Example:** ```py # Printing the values stored in the variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### Declaring Multiple Variable in a Line Multiple variables can also be declared in one line: **Example:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` Getting user input using the _input()_ built-in function. Let us assign the data we get from a user into first_name and age variables. **Example:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## Data Types There are several data types in Python. To identify the data type we use the _type_ built-in function. I would like to ask you to focus on understanding different data types very well. When it comes to programming, it is all about data types. I introduced data types at the very beginning and it comes again, because every topic is related to data types. We will cover data types in more detail in their respective sections. ## Checking Data types and Casting - Check Data types: To check the data type of certain data/variable we use the _type_ **Examples:** ```py # Different python data types # Let's declare variables with various data types first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, it is not my real age, don't worry about it # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh'})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # zip ``` - Casting: Converting one data type to another data type. We use _int()_, _float()_, _str()_, _list_, _set_ When we do arithmetic operations string numbers should be first converted to int or float otherwise it will return an error. If we concatenate a number with a string, the number should be first converted to a string. We will talk about concatenation in String section. **Examples:** ```py # int to float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # float to int gravity = 9.81 print(int(gravity)) # 9 # int to str num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # str to int or float num_str = '10.6' num_float = float(num_str) # Convert the string to a float first num_int = int(num_float) # Then convert the float to an integer print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 num_int = int(num_float) print('num_int', int(num_int)) # 10 # str to list first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Numbers Number data types in Python: 1. Integers: Integer(negative, zero and positive) numbers Example: ... -3, -2, -1, 0, 1, 2, 3 ... 2. Floating Point Numbers(Decimal numbers) Example: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... 3. Complex Numbers Example: 1 + j, 2 + 4j, 1 - 1j 🌕 You are awesome. You have just completed day 2 challenges and you are two steps ahead on your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises - Day 2 ### Exercises: Level 1 1. Inside 30DaysOfPython create a folder called day_2. Inside this folder create a file named variables.py 2. Write a python comment saying 'Day 2: 30 Days of python programming' 3. Declare a first name variable and assign a value to it 4. Declare a last name variable and assign a value to it 5. Declare a full name variable and assign a value to it 6. Declare a country variable and assign a value to it 7. Declare a city variable and assign a value to it 8. Declare an age variable and assign a value to it 9. Declare a year variable and assign a value to it 10. Declare a variable is_married and assign a value to it 11. Declare a variable is_true and assign a value to it 12. Declare a variable is_light_on and assign a value to it 13. Declare multiple variable on one line ### Exercises: Level 2 1. Check the data type of all your variables using type() built-in function 2. Using the _len()_ built-in function, find the length of your first name 3. Compare the length of your first name and your last name 4. Declare 5 as num_one and 4 as num_two 5. Add num_one and num_two and assign the value to a variable total 6. Subtract num_two from num_one and assign the value to a variable diff 7. Multiply num_two and num_one and assign the value to a variable product 8. Divide num_one by num_two and assign the value to a variable division 9. Use modulus division to find num_two divided by num_one and assign the value to a variable remainder 10. Calculate num_one to the power of num_two and assign the value to a variable exp 11. Find floor division of num_one by num_two and assign the value to a variable floor_division 12. The radius of a circle is 30 meters. 1. Calculate the area of a circle and assign the value to a variable name of _area_of_circle_ 2. Calculate the circumference of a circle and assign the value to a variable name of _circum_of_circle_ 3. Take radius as user input and calculate the area. 13. Use the built-in input function to get first name, last name, country and age from a user and store the value to their corresponding variable names 14. Run help('keywords') in Python shell or in your file to check for the Python reserved words or keywords 🎉 CONGRATULATIONS ! 🎉 [<< Day 1](../readme.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ================================================ FILE: 02_Day_Variables_builtin_functions/variables.py ================================================ # Variables in Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname': 'Asabeneh', 'lastname': 'Yetayeh', 'country': 'Finland', 'city': 'Helsinki' } # Printing the values stored in the variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) # Declaring multiple variables in one line first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ================================================ FILE: 03_Day_Operators/03_operators.md ================================================

30 Days Of Python: Day 3 - Operators

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Day 4 >>](../04_Day_Strings/04_strings.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 3](#-day-3) - [Boolean](#boolean) - [Operators](#operators) - [Assignment Operators](#assignment-operators) - [Arithmetic Operators:](#arithmetic-operators) - [Comparison Operators](#comparison-operators) - [Logical Operators](#logical-operators) - [💻 Exercises - Day 3](#-exercises---day-3) # 📘 Day 3 ## Boolean A boolean data type represents one of the two values: _True_ or _False_. The use of these data types will be clear once we start using the comparison operator. The first letter **T** for True and **F** for False should be capital unlike JavaScript. **Example: Boolean Values** ```py print(True) print(False) ``` ## Operators Python language supports several types of operators. In this section, we will focus on few of them. ### Assignment Operators Assignment operators are used to assign values to variables. Let us take = as an example. Equal sign in mathematics shows that two values are equal, however in Python it means we are storing a value in a certain variable and we call it assignment or a assigning value to a variable. The table below shows the different types of python assignment operators, taken from [w3school](https://www.w3schools.com/python/python_operators.asp). ![Assignment Operators](../images/assignment_operators.png) ### Arithmetic Operators: - Addition(+): a + b - Subtraction(-): a - b - Multiplication(*): a * b - Division(/): a / b - Modulus(%): a % b - Floor division(//): a // b - Exponentiation(**): a ** b ![Arithmetic Operators](../images/arithmetic_operators.png) **Example:Integers** ```py # Arithmetic Operations in Python # Integers print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division: ', 4 / 2) # 2.0 Division in Python gives floating number print('Division: ', 6 / 2) # 3.0 print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, gives without the floating number or without the remaining print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, Gives the remainder print('Exponentiation: ', 2 ** 3) # 8 it means 2 * 2 * 2 ``` **Example:Floats** ```py # Floating numbers print('Floating Point Number, PI', 3.14) print('Floating Point Number, gravity', 9.81) ``` **Example:Complex numbers** ```py # Complex numbers print('Complex number: ', 1 + 1j) print('Multiplying complex numbers: ',(1 + 1j) * (1 - 1j)) ``` Let's declare a variable and assign a number data type. I am going to use single character variable but remember do not develop a habit of declaring such types of variables. Variable names should be all the time mnemonic. **Example:** ```python # Declaring the variable at the top first a = 3 # a is a variable name and 3 is an integer data type b = 2 # b is a variable name and 3 is an integer data type # Arithmetic operations and assigning the result to a variable total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # I should have used sum instead of total but sum is a built-in function - try to avoid overriding built-in functions print(total) # if you do not label your print with some string, you never know where the result is coming from print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponential) ``` **Example:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # Declaring values and organizing them together num_one = 3 num_two = 4 # Arithmetic operations total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_one remainder = num_two % num_one # Printing values with label print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` Let us start connecting the dots and start making use of what we already know to calculate (area, volume,density, weight, perimeter, distance, force). **Example:** ```py # Calculating area of a circle radius = 10 # radius of a circle area_of_circle = 3.14 * radius ** 2 # two * sign means exponent or power print('Area of a circle:', area_of_circle) # Calculating area of a rectangle length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # Calculating a weight of an object mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # Adding unit to the weight # Calculate the density of a liquid mass = 75 # in Kg volume = 0.075 # in cubic meter density = mass / volume # 1000 Kg/m^3 print(density, 'Kg/m^3') # Adding unit to the density ``` ### Comparison Operators In programming we compare values, we use comparison operators to compare two values. We check if a value is greater or less or equal to other value. The following table shows Python comparison operators which was taken from [w3shool](https://www.w3schools.com/python/python_operators.asp). ![Comparison Operators](../images/comparison_operators.png) **Example: Comparison Operators** ```py print(3 > 2) # True, because 3 is greater than 2 print(3 >= 2) # True, because 3 is greater than 2 print(3 < 2) # False, because 3 is greater than 2 print(2 < 3) # True, because 2 is less than 3 print(2 <= 3) # True, because 2 is less than 3 print(3 == 2) # False, because 3 is not equal to 2 print(3 != 2) # True, because 3 is not equal to 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Comparing something gives either a True or False print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) ``` In addition to the above comparison operator Python uses: - _is_: Returns true if both variables are the same object(x is y) - _is not_: Returns true if both variables are not the same object(x is not y) - _in_: Returns True if the queried list contains a certain item(x in y) - _not in_: Returns True if the queried list doesn't have a certain item(x not in y) ```py print('1 is 1', 1 is 1) # True - because the data values are the same print('1 is not 2', 1 is not 2) # True - because 1 is not 2 print('A in Asabeneh', 'A' in 'Asabeneh') # True - A found in the string print('B not in Asabeneh', 'B' in 'Asabeneh') # False - there is no uppercase B print('coding' in 'coding for all') # True - because coding for all has the word coding print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True ``` ### Logical Operators Unlike other programming languages python uses keywords _and_, _or_ and _not_ for logical operators. Logical operators are used to combine conditional statements: ![Logical Operators](../images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # True - because both statements are true print(3 > 2 and 4 < 3) # False - because the second statement is false print(3 < 2 and 4 < 3) # False - because both statements are false print('True and True: ', True and True) print(3 > 2 or 4 > 3) # True - because both statements are true print(3 > 2 or 4 < 3) # True - because one of the statements is true print(3 < 2 or 4 < 3) # False - because both statements are false print('True or False:', True or False) print(not 3 > 2) # False - because 3 > 2 is true, then not True gives False print(not True) # False - Negation, the not operator turns true to false print(not False) # True print(not not True) # True print(not not False) # False ``` 🌕 You have boundless energy. You have just completed day 3 challenges and you are three steps ahead on your way to greatness. Now do some exercises for your brain and your muscles. ## 💻 Exercises - Day 3 1. Declare your age as integer variable 2. Declare your height as a float variable 3. Declare a variable that store a complex number 4. Write a script that prompts the user to enter base and height of the triangle and calculate an area of this triangle (area = 0.5 x b x h). ```py Enter base: 20 Enter height: 10 The area of the triangle is 100 ``` 5. Write a script that prompts the user to enter side a, side b, and side c of the triangle. Calculate the perimeter of the triangle (perimeter = a + b + c). ```py Enter side a: 5 Enter side b: 4 Enter side c: 3 The perimeter of the triangle is 12 ``` 6. Get length and width of a rectangle using prompt. Calculate its area (area = length x width) and perimeter (perimeter = 2 x (length + width)) 7. Get radius of a circle using prompt. Calculate the area (area = pi x r x r) and circumference (c = 2 x pi x r) where pi = 3.14. 8. Calculate the slope, x-intercept and y-intercept of y = 2x -2 9. Slope is (m = y2-y1/x2-x1). Find the slope and [Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) between point (2, 2) and point (6,10) 10. Compare the slopes in tasks 8 and 9. 11. Calculate the value of y (y = x^2 + 6x + 9). Try to use different x values and figure out at what x value y is going to be 0. 12. Find the length of 'python' and 'dragon' and make a falsy comparison statement. 13. Use _and_ operator to check if 'on' is found in both 'python' and 'dragon' 14. _I hope this course is not full of jargon_. Use _in_ operator to check if _jargon_ is in the sentence. 15. There is no 'on' in both dragon and python 16. Find the length of the text _python_ and convert the value to float and convert it to string 17. Even numbers are divisible by 2 and the remainder is zero. How do you check if a number is even or not using python? 18. Check if the floor division of 7 by 3 is equal to the int converted value of 2.7. 19. Check if type of '10' is equal to type of 10 20. Check if int('9.8') is equal to 10 21. Write a script that prompts the user to enter hours and rate per hour. Calculate pay of the person? ```py Enter hours: 40 Enter rate per hour: 28 Your weekly earning is 1120 ``` 22. Write a script that prompts the user to enter number of years. Calculate the number of seconds a person can live. Assume a person can live hundred years ```py Enter number of years you have lived: 100 You have lived for 3153600000 seconds. ``` 23. Write a Python script that displays the following table ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` 🎉 CONGRATULATIONS ! 🎉 [<< Day 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Day 4 >>](../04_Day_Strings/04_strings.md) ================================================ FILE: 03_Day_Operators/day-3.py ================================================ # Arithmetic Operations in Python # Integers print('Addition: ', 1 + 2) print('Subtraction: ', 2 - 1) print('Multiplication: ', 2 * 3) # Division in python gives floating number print('Division: ', 4 / 2) print('Division: ', 6 / 2) print('Division: ', 7 / 2) # gives without the floating number or without the remaining print('Division without the remainder: ', 7 // 2) print('Modulus: ', 3 % 2) # Gives the remainder print('Division without the remainder: ', 7 // 3) print('Exponential: ', 3 ** 2) # it means 3 * 3 # Floating numbers print('Floating Number,PI', 3.14) print('Floating Number, gravity', 9.81) # Complex numbers print('Complex number: ', 1+1j) print('Multiplying complex number: ', (1+1j) * (1-1j)) # Declaring the variable at the top first a = 3 # a is a variable name and 3 is an integer data type b = 2 # b is a variable name and 3 is an integer data type # Arithmetic operations and assigning the result to a variable total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # I should have used sum instead of total but sum is a built-in function try to avoid overriding builtin functions print(total) # if you don't label your print with some string, you never know from where is the result is coming print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponential) # Declaring values and organizing them together num_one = 3 num_two = 4 # Arithmetic operations total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_two remainder = num_two % num_one # Printing values with label print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) # Calculating area of a circle radius = 10 # radius of a circle # two * sign means exponent or power area_of_circle = 3.14 * radius ** 2 print('Area of a circle:', area_of_circle) # Calculating area of a rectangle length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # Calculating a weight of an object mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') print(3 > 2) # True, because 3 is greater than 2 print(3 >= 2) # True, because 3 is greater than 2 print(3 < 2) # False, because 3 is greater than 2 print(2 < 3) # True, because 2 is less than 3 print(2 <= 3) # True, because 2 is less than 3 print(3 == 2) # False, because 3 is not equal to 2 print(3 != 2) # True, because 3 is not equal to 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Boolean comparison print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) print('True and True: ', True and True) print('True or False:', True or False) # Another way comparison # True - because the data values are the same print('1 is 1', 1 is 1) print('1 is not 2', 1 is not 2) # True - because 1 is not 2 print('A in Asabeneh', 'A' in 'Asabeneh') # True - A found in the string print('B in Asabeneh', 'B' in 'Asabeneh') # False -there is no uppercase B # True - because coding for all has the word coding print('coding' in 'coding for all') print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True print(3 > 2 and 4 > 3) # True - because both statements are true print(3 > 2 and 4 < 3) # False - because the second statement is false print(3 < 2 and 4 < 3) # False - because both statements are false print(3 > 2 or 4 > 3) # True - because both statements are true print(3 > 2 or 4 < 3) # True - because one of the statement is true print(3 < 2 or 4 < 3) # False - because both statements are false print(not 3 > 2) # False - because 3 > 2 is true, then not True gives False print(not True) # False - Negation, the not operator turns true to false print(not False) # True print(not not True) # True print(not not False) # False ================================================ FILE: 04_Day_Strings/04_strings.md ================================================

30 Days Of Python: Day 4 - Strings

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 3](../03_Day_Operators/03_operators.md) | [Day 5 >>](../05_Day_Lists/05_lists.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 4](#day-4) - [Strings](#strings) - [Creating a String](#creating-a-string) - [String Concatenation](#string-concatenation) - [Escape Sequences in Strings](#escape-sequences-in-strings) - [String formatting](#string-formatting) - [Old Style String Formatting (% Operator)](#old-style-string-formatting--operator) - [New Style String Formatting (str.format)](#new-style-string-formatting-strformat) - [String Interpolation / f-Strings (Python 3.6+)](#string-interpolation--f-strings-python-36) - [Python Strings as Sequences of Characters](#python-strings-as-sequences-of-characters) - [Unpacking Characters](#unpacking-characters) - [Accessing Characters in Strings by Index](#accessing-characters-in-strings-by-index) - [Slicing Python Strings](#slicing-python-strings) - [Reversing a String](#reversing-a-string) - [Skipping Characters While Slicing](#skipping-characters-while-slicing) - [String Methods](#string-methods) - [💻 Exercises - Day 4](#-exercises---day-4) # Day 4 ## Strings Text is a string data type. Any data type written as text is a string. Any data under single, double or triple quote are strings. There are different string methods and built-in functions to deal with string data types. To check the length of a string use the len() method. ### Creating a String ```py letter = 'P' # A string could be a single character or a bunch of texts print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # String could be made using a single or double quote,"Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of Python Challenge" print(sentence) ``` Multiline string is created by using triple single (''') or triple double quotes ("""). See the example below. ```py multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # Another way of doing the same thing multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) ``` ### String Concatenation We can connect strings together. Merging or connecting strings is called concatenation. See the example below: ```py first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # Checking the length of a string using len() built-in function print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 16 ``` ### Escape Sequences in Strings In Python and other programming languages \ followed by a character is an escape sequence. Let us see the most common escape characters: - \n: new line - \t: Tab means(8 spaces) - \\\\: Back slash - \\': Single quote (') - \\": Double quote (") Now, let us see the use of the above escape sequences with examples. ```py print('I hope everyone is enjoying the Python Challenge.\nAre you ?') # line break print('Days\tTopics\tExercises') # adding tab space or 4 spaces print('Day 1\t5\t5') print('Day 2\t6\t20') print('Day 3\t5\t23') print('Day 4\t1\t35') print('This is a backslash symbol (\\)') # To write a backslash print('In every programming language it starts with \"Hello, World!\"') # to write a double quote inside a single quote # output I hope every one is enjoying the Python Challenge. Are you ? Days Topics Exercises Day 1 5 5 Day 2 6 20 Day 3 5 23 Day 4 1 35 This is a backslash symbol (\) In every programming language it starts with "Hello, World!" ``` ### String formatting #### Old Style String Formatting (% Operator) In Python there are many ways of formatting strings. In this section, we will cover some of them. The "%" operator is used to format a set of variables enclosed in a "tuple" (a fixed size list), together with a format string, which contains normal text together with "argument specifiers", special symbols like "%s", "%d", "%f", "%.number of digitsf". - %s - String (or any object with a string representation, like numbers) - %d - Integers - %f - Floating point numbers - "%.number of digitsf" - Floating point numbers with fixed precision ```py # Strings only first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am %s %s. I teach %s' %(first_name, last_name, language) print(formated_string) # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of circle with a radius %d is %.2f.' %(radius, area) # 2 refers the 2 significant digits after the point python_libraries = ['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas'] formated_string = 'The following are python libraries:%s' % (python_libraries) print(formated_string) # "The following are python libraries:['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas']" ``` #### New Style String Formatting (str.format) This format was introduced in Python version 3. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am {} {}. I teach {}'.format(first_name, last_name, language) print(formated_string) a = 4 b = 3 print('{} + {} = {}'.format(a, b, a + b)) print('{} - {} = {}'.format(a, b, a - b)) print('{} * {} = {}'.format(a, b, a * b)) print('{} / {} = {:.2f}'.format(a, b, a / b)) # limits it to two digits after decimal print('{} % {} = {}'.format(a, b, a % b)) print('{} // {} = {}'.format(a, b, a // b)) print('{} ** {} = {}'.format(a, b, a ** b)) # output 4 + 3 = 7 4 - 3 = 1 4 * 3 = 12 4 / 3 = 1.33 4 % 3 = 1 4 // 3 = 1 4 ** 3 = 64 # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of a circle with a radius {} is {:.2f}.'.format(radius, area) # 2 digits after decimal print(formated_string) ``` #### String Interpolation / f-Strings (Python 3.6+) Another new string formatting is string interpolation, f-strings. Strings start with f and we can inject the data in their corresponding positions. ```py a = 4 b = 3 print(f'{a} + {b} = {a +b}') print(f'{a} - {b} = {a - b}') print(f'{a} * {b} = {a * b}') print(f'{a} / {b} = {a / b:.2f}') print(f'{a} % {b} = {a % b}') print(f'{a} // {b} = {a // b}') print(f'{a} ** {b} = {a ** b}') ``` ### Python Strings as Sequences of Characters Python strings are sequences of characters, and share their basic methods of access with other Python ordered sequences of objects – lists and tuples. The simplest way of extracting single characters from strings (and individual members from any sequence) is to unpack them into corresponding variables. #### Unpacking Characters ``` language = 'Python' a,b,c,d,e,f = language # unpacking sequence characters into variables print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n ``` #### Accessing Characters in Strings by Index In programming counting starts from zero. Therefore the first letter of a string is at zero index and the last letter of a string is the length of a string minus one. ![String index](../images/string_index.png) ```py language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n ``` If we want to start from right end we can use negative indexing. -1 is the last index. ```py language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o ``` #### Slicing Python Strings In python we can slice strings into substrings. ```py language = 'Python' first_three = language[0:3] # starts at zero index and up to 3 but not include 3 print(first_three) #Pyt last_three = language[3:6] print(last_three) # hon # Another way last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon ``` #### Reversing a String We can easily reverse strings in python. ```py greeting = 'Hello, World!' print(greeting[::-1]) # !dlroW ,olleH ``` #### Skipping Characters While Slicing It is possible to skip characters while slicing by passing step argument to slice method. ```py language = 'Python' pto = language[0:6:2] # print(pto) # Pto ``` ### String Methods There are many string methods which allow us to format strings. See some of the string methods in the following example: - capitalize(): Converts the first character of the string to capital letter ```py challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' ``` - count(): returns occurrences of substring in string, count(substring, start=.., end=..). The start is a starting indexing for counting and end is the last index to count. ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1, print(challenge.count('th')) # 2` ``` - endswith(): Checks if a string ends with a specified ending ```py challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False ``` - expandtabs(): Replaces tab character with spaces, default tab size is 8. It takes tab size argument ```py challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' ``` - find(): Returns the index of the first occurrence of a substring, if not found returns -1 ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` - rfind(): Returns the index of the last occurrence of a substring, if not found returns -1 ```py challenge = 'thirty days of python' print(challenge.rfind('y')) # 16 print(challenge.rfind('th')) # 17 ``` - format(): formats string into a nicer output More about string formatting check this [link](https://www.programiz.com/python-programming/methods/string/format) ```py first_name = 'Asabeneh' last_name = 'Yetayeh' age = 250 job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I am {} years old. I live in {}.'.format(first_name, last_name, job, age, country) print(sentence) # I am Asabeneh Yetayeh. I am 250 years old. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi * radius ** 2 result = 'The area of a circle with radius {} is {}'.format(str(radius), str(area)) print(result) # The area of a circle with radius 10 is 314 ``` - index(): Returns the lowest index of a substring, additional arguments indicate starting and ending index (default 0 and string length - 1). If the substring is not found it raises a valueError. ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.index(sub_string)) # 7 print(challenge.index(sub_string, 9)) # error ``` - rindex(): Returns the highest index of a substring, additional arguments indicate starting and ending index (default 0 and string length - 1) ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.rindex(sub_string)) # 7 print(challenge.rindex(sub_string, 9)) # error print(challenge.rindex('on', 8)) # 19 ``` - isalnum(): Checks alphanumeric character ```py challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False, space is not an alphanumeric character challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False ``` - isalpha(): Checks if all string elements are alphabet characters (a-z and A-Z) ```py challenge = 'thirty days of python' print(challenge.isalpha()) # False, space is once again excluded challenge = 'ThirtyDaysPython' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False ``` - isdecimal(): Checks if all characters in a string are decimal (0-9) ```py challenge = 'thirty days of python' print(challenge.isdecimal()) # False challenge = '123' print(challenge.isdecimal()) # True challenge = '\u00B2' print(challenge.isdigit()) # True challenge = '12 3' print(challenge.isdecimal()) # False, space not allowed ``` - isdigit(): Checks if all characters in a string are numbers (0-9 and some other unicode characters for numbers) ```py challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.isdigit()) # True challenge = '\u00B2' print(challenge.isdigit()) # True ``` - isnumeric(): Checks if all characters in a string are numbers or number related (just like isdigit(), just accepts more symbols, like ½) ```py num = '10' print(num.isnumeric()) # True num = '\u00BD' # ½ print(num.isnumeric()) # True num = '10.5' print(num.isnumeric()) # False ``` - isidentifier(): Checks for a valid identifier - it checks if a string is a valid variable name ```py challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, because it starts with a number challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True ``` - islower(): Checks if all alphabet characters in the string are lowercase ```py challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False ``` - isupper(): Checks if all alphabet characters in the string are uppercase ```py challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True ``` - join(): Returns a concatenated string ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = ' '.join(web_tech) print(result) # 'HTML CSS JavaScript React' ``` ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '# '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' ``` - strip(): Removes all given characters starting from the beginning and end of the string ```py challenge = 'thirty days of pythoonnn' print(challenge.strip('noth')) # 'irty days of py' ``` - replace(): Replaces substring with a given string ```py challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' ``` - split(): Splits the string, using given string or space as a separator ```py challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] challenge = 'thirty, days, of, python' print(challenge.split(', ')) # ['thirty', 'days', 'of', 'python'] ``` - title(): Returns a title cased string ```py challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python ``` - swapcase(): Converts all uppercase characters to lowercase and all lowercase characters to uppercase characters ```py challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON ``` - startswith(): Checks if String Starts with the Specified String ```py challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False ``` 🌕 You are an extraordinary person and you have a remarkable potential. You have just completed day 4 challenges and you are four steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises - Day 4 1. Concatenate the string 'Thirty', 'Days', 'Of', 'Python' to a single string, 'Thirty Days Of Python'. 2. Concatenate the string 'Coding', 'For' , 'All' to a single string, 'Coding For All'. 3. Declare a variable named company and assign it to an initial value "Coding For All". 4. Print the variable company using _print()_. 5. Print the length of the company string using _len()_ method and _print()_. 6. Change all the characters to uppercase letters using _upper()_ method. 7. Change all the characters to lowercase letters using _lower()_ method. 8. Use capitalize(), title(), swapcase() methods to format the value of the string _Coding For All_. 9. Cut(slice) out the first word of _Coding For All_ string. 10. Check if _Coding For All_ string contains a word Coding using the method index, find or other methods. 11. Replace the word coding in the string 'Coding For All' to Python. 12. Change "Python for Everyone" to "Python for All" using the replace method or other methods. 13. Split the string 'Coding For All' using space as the separator (split()) . 14. "Facebook, Google, Microsoft, Apple, IBM, Oracle, Amazon" split the string at the comma. 15. What is the character at index 0 in the string _Coding For All_. 16. What is the last index of the string _Coding For All_. 17. What character is at index 10 in "Coding For All" string. 18. Create an acronym or an abbreviation for the name 'Python For Everyone'. 19. Create an acronym or an abbreviation for the name 'Coding For All'. 20. Use index to determine the position of the first occurrence of C in Coding For All. 21. Use index to determine the position of the first occurrence of F in Coding For All. 22. Use rfind to determine the position of the last occurrence of l in Coding For All People. 23. Use index or find to find the position of the first occurrence of the word 'because' in the following sentence: 'You cannot end a sentence with because because because is a conjunction' 24. Use rindex to find the position of the last occurrence of the word because in the following sentence: 'You cannot end a sentence with because because because is a conjunction' 25. Slice out the phrase 'because because because' in the following sentence: 'You cannot end a sentence with because because because is a conjunction' 26. Find the position of the first occurrence of the word 'because' in the following sentence: 'You cannot end a sentence with because because because is a conjunction' 27. Slice out the phrase 'because because because' in the following sentence: 'You cannot end a sentence with because because because is a conjunction' 28. Does 'Coding For All' start with a substring _Coding_? 29. Does 'Coding For All' end with a substring _coding_? 30. '   Coding For All      '  , remove the left and right trailing spaces in the given string. 31. Which one of the following variables return True when we use the method isidentifier(): - 30DaysOfPython - thirty_days_of_python 32. The following list contains the names of some of python libraries: ['Django', 'Flask', 'Bottle', 'Pyramid', 'Falcon']. Join the list with a hash with space string. 33. Use the new line escape sequence to separate the following sentences. ```py I am enjoying this challenge. I just wonder what is next. ``` 34. Use a tab escape sequence to write the following lines. ```py Name Age Country City Asabeneh 250 Finland Helsinki ``` 35. Use the string formatting method to display the following: ```sh radius = 10 area = 3.14 * radius ** 2 The area of a circle with radius 10 is 314 meters square. ``` 36. Make the following using string formatting methods: ```sh 8 + 6 = 14 8 - 6 = 2 8 * 6 = 48 8 / 6 = 1.33 8 % 6 = 2 8 // 6 = 1 8 ** 6 = 262144 ``` 🎉 CONGRATULATIONS ! 🎉 [<< Day 3](../03_Day_Operators/03_operators.md) | [Day 5 >>](../05_Day_Lists/05_lists.md) ================================================ FILE: 04_Day_Strings/day_4.py ================================================ # Single line comment letter = 'P' # A string could be a single character or a bunch of texts print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # String could be a single or double quote,"Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of python challenge" print(sentence) # Multiline String multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # Another way of doing the same thing multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) # String Concatenation first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # Checking length of a string using len() builtin function print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 15 # Unpacking characters language = 'Python' a, b, c, d, e, f = language # unpacking sequence characters into variables print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n # Accessing characters in strings by index language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n # If we want to start from right end we can use negative indexing. -1 is the last index language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o # Slicing language = 'Python' # starts at zero index and up to 3 but not include 3 first_three = language[0:3] last_three = language[3:6] print(last_three) # hon # Another way last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon # Skipping character while splitting Python strings language = 'Python' pto = language[0:6:2] print(pto) # pto # Escape sequence print('I hope every one enjoying the python challenge.\nDo you ?') # line break print('Days\tTopics\tExercises') print('Day 1\t3\t5') print('Day 2\t3\t5') print('Day 3\t3\t5') print('Day 4\t3\t5') print('This is a back slash symbol (\\)') # To write a back slash print('In every programming language it starts with \"Hello, World!\"') # String Methods # capitalize(): Converts the first character the string to Capital Letter challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' # count(): returns occurrences of substring in string, count(substring, start=.., end=..) challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1 print(challenge.count('th')) # 2` # endswith(): Checks if a string ends with a specified ending challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False # expandtabs(): Replaces tab character with spaces, default tab size is 8. It takes tab size argument challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' # find(): Returns the index of first occurrence of substring challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 # format() formats string into nicer output first_name = 'Asabeneh' last_name = 'Yetayeh' job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I live in {}.'.format( first_name, last_name, job, country) print(sentence) # I am Asabeneh Yetayeh. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi # radius ## 2 result = 'The area of circle with {} is {}'.format(str(radius), str(area)) print(result) # The area of circle with 10 is 314.0 # index(): Returns the index of substring challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 # isalnum(): Checks alphanumeric character challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False # isalpha(): Checks if all characters are alphabets challenge = 'thirty days of python' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False # isdecimal(): Checks Decimal Characters challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 # isdigit(): Checks Digit Characters challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.isdigit()) # True # isdecimal():Checks decimal characters num = '10' print(num.isdecimal()) # True num = '10.5' print(num.isdecimal()) # False # isidentifier():Checks for valid identifier means it check if a string is a valid variable name challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, because it starts with a number challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True # islower():Checks if all alphabets in a string are lowercase challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False # isupper(): returns if all characters are uppercase characters challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True # isnumeric():Checks numeric characters num = '10' print(num.isnumeric()) # True print('ten'.isnumeric()) # False # join(): Returns a concatenated string web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '#, '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' # strip(): Removes both leading and trailing characters challenge = ' thirty days of python ' print(challenge.strip('y')) # 5 # replace(): Replaces substring inside challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' # split():Splits String from Left challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] # title(): Returns a Title Cased String challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python # swapcase(): Checks if String Starts with the Specified String challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON # startswith(): Checks if String Starts with the Specified String challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False ================================================ FILE: 05_Day_Lists/05_lists.md ================================================

30 Days Of Python: Day 5 - Lists

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July - 2021
[<< Day 4](../04_Day_Strings/04_strings.md) | [Day 6 >>](../06_Day_Tuples/06_tuples.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 5](#day-5) - [Lists](#lists) - [How to Create a List](#how-to-create-a-list) - [Accessing List Items Using Positive Indexing](#accessing-list-items-using-positive-indexing) - [Accessing List Items Using Negative Indexing](#accessing-list-items-using-negative-indexing) - [Unpacking List Items](#unpacking-list-items) - [Slicing Items from a List](#slicing-items-from-a-list) - [Modifying Lists](#modifying-lists) - [Checking Items in a List](#checking-items-in-a-list) - [Adding Items to a List](#adding-items-to-a-list) - [Inserting Items into a List](#inserting-items-into-a-list) - [Removing Items from a List](#removing-items-from-a-list) - [Removing Items Using Pop](#removing-items-using-pop) - [Removing Items Using Del](#removing-items-using-del) - [Clearing List Items](#clearing-list-items) - [Copying a List](#copying-a-list) - [Joining Lists](#joining-lists) - [Counting Items in a List](#counting-items-in-a-list) - [Finding Index of an Item](#finding-index-of-an-item) - [Reversing a List](#reversing-a-list) - [Sorting List Items](#sorting-list-items) - [💻 Exercises: Day 5](#-exercises-day-5) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) # Day 5 ## Lists There are four collection data types in Python : - List: is a collection which is ordered and changeable(modifiable). Allows duplicate members. - Tuple: is a collection which is ordered and unchangeable or unmodifiable(immutable). Allows duplicate members. - Set: is a collection which is unordered, un-indexed and unmodifiable, but we can add new items to the set. Duplicate members are not allowed. - Dictionary: is a collection which is unordered, changeable(modifiable) and indexed. No duplicate members. A list is collection of different data types which is ordered and modifiable(mutable). A list can be empty or it may have different data type items. ### How to Create a List In Python we can create lists in two ways: - Using list built-in function ```py # syntax lst = list() ``` ```py empty_list = list() # this is an empty list, no item in the list print(len(empty_list)) # 0 ``` - Using square brackets, [] ```py # syntax lst = [] ``` ```py empty_list = [] # this is an empty list, no item in the list print(len(empty_list)) # 0 ``` Lists with initial values. We use _len()_ to find the length of a list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] # list of fruits vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] # list of vegetables animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # list of animal products web_techs = ['HTML', 'CSS', 'JS', 'React','Redux', 'Node', 'MongDB'] # list of web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # Print the lists and its length print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:',animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Countries:', countries) print('Number of countries:', len(countries)) ``` ```sh output Fruits: ['banana', 'orange', 'mango', 'lemon'] Number of fruits: 4 Vegetables: ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] Number of vegetables: 5 Animal products: ['milk', 'meat', 'butter', 'yoghurt'] Number of animal products: 4 Web technologies: ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] Number of web technologies: 7 Countries: ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] Number of countries: 5 ``` - Lists can have items of different data types ```py lst = ['Asabeneh', 250, True, {'country':'Finland', 'city':'Helsinki'}] # list containing different data types ``` ### Accessing List Items Using Positive Indexing We access each item in a list using their index. A list index starts from 0. The picture below shows clearly where the index starts ![List index](../images/list_index.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # we are accessing the first item using its index print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] ``` ### Accessing List Items Using Negative Indexing Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second last item. ![List negative indexing](../images/list_negative_indexing.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[-4] last_fruit = fruits[-1] second_last = fruits[-2] print(first_fruit) # banana print(last_fruit) # lemon print(second_last) # mango ``` ### Unpacking List Items ```py lst = ['item1','item2','item3', 'item4', 'item5'] first_item, second_item, third_item, *rest = lst print(first_item) # item1 print(second_item) # item2 print(third_item) # item3 print(rest) # ['item4', 'item5'] ``` ```py # First Example fruits = ['banana', 'orange', 'mango', 'lemon','lime','apple'] first_fruit, second_fruit, third_fruit, *rest = fruits print(first_fruit) # banana print(second_fruit) # orange print(third_fruit) # mango print(rest) # ['lemon','lime','apple'] # Second Example about unpacking list first, second, third,*rest, tenth = [1,2,3,4,5,6,7,8,9,10] print(first) # 1 print(second) # 2 print(third) # 3 print(rest) # [4,5,6,7,8,9] print(tenth) # 10 # Third Example about unpacking list countries = ['Germany', 'France','Belgium','Sweden','Denmark','Finland','Norway','Iceland','Estonia'] gr, fr, bg, sw, *scandic, es = countries print(gr) print(fr) print(bg) print(sw) print(scandic) print(es) ``` ### Slicing Items from a List - Positive Indexing: We can specify a range of positive indexes by specifying the start, end and step, the return value will be a new list. (default values for start = 0, end = len(lst) - 1 (last item), step = 1) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # it returns all the fruits # this will also give the same result as the one above all_fruits = fruits[0:] # if we don't set where to stop it takes all the rest orange_and_mango = fruits[1:3] # it does not include the first index orange_mango_lemon = fruits[1:] orange_and_lemon = fruits[::2] # here we used a 3rd argument, step. It will take every 2cnd item - ['banana', 'mango'] ``` - Negative Indexing: We can specify a range of negative indexes by specifying the start, end and step, the return value will be a new list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # it returns all the fruits orange_and_mango = fruits[-3:-1] # it does not include the last index,['orange', 'mango'] orange_mango_lemon = fruits[-3:] # this will give starting from -3 to the end,['orange', 'mango', 'lemon'] reverse_fruits = fruits[::-1] # a negative step will take the list in reverse order,['lemon', 'mango', 'orange', 'banana'] ``` ### Modifying Lists List is a mutable or modifiable ordered collection of items. Lets modify the fruit list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) - 1 fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ``` ### Checking Items in a List Checking an item if it is a member of a list using *in* operator. See the example below. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False ``` ### Adding Items to a List To add item to the end of an existing list we use the method *append()*. ```py # syntax lst = list() lst.append(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] fruits.append('lime') # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime'] print(fruits) ``` ### Inserting Items into a List We can use *insert()* method to insert a single item at a specified index in a list. Note that other items are shifted to the right. The *insert()* methods takes two arguments:index and an item to insert. ```py # syntax lst = ['item1', 'item2'] lst.insert(index, item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # insert apple between orange and mango print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] fruits.insert(3, 'lime') # ['banana', 'orange', 'apple', 'lime', 'mango', 'lemon'] print(fruits) ``` ### Removing Items from a List The remove method removes a specified item from a list ```py # syntax lst = ['item1', 'item2'] lst.remove(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'banana'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon', 'banana'] - this method removes the first occurrence of the item in the list fruits.remove('lemon') print(fruits) # ['orange', 'mango', 'banana'] ``` ### Removing Items Using Pop The *pop()* method removes the specified index, (or the last item if index is not specified): ```py # syntax lst = ['item1', 'item2'] lst.pop() # last item lst.pop(index) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.pop() print(fruits) # ['banana', 'orange', 'mango'] fruits.pop(0) print(fruits) # ['orange', 'mango'] ``` ### Removing Items Using Del The *del* keyword removes the specified index and it can also be used to delete items within index range. It can also delete the list completely ```py # syntax lst = ['item1', 'item2'] del lst[index] # only a single item del lst # to delete the list completely ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[1] print(fruits) # ['orange', 'lemon', 'kiwi', 'lime'] del fruits[1:3] # this deletes items between given indexes, so it does not delete the item with index 3! print(fruits) # ['orange', 'lime'] del fruits print(fruits) # This should give: NameError: name 'fruits' is not defined ``` ### Clearing List Items The *clear()* method empties the list: ```py # syntax lst = ['item1', 'item2'] lst.clear() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] ``` ### Copying a List It is possible to copy a list by reassigning it to a new variable in the following way: list2 = list1. Now, list2 is a reference of list1, any changes we make in list2 will also modify the original, list1. But there are lots of case in which we do not like to modify the original instead we like to have a different copy. One of way of avoiding the problem above is using _copy()_. ```py # syntax lst = ['item1', 'item2'] lst_copy = lst.copy() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] ``` ### Joining Lists There are several ways to join, or concatenate, two or more lists in Python. - Plus Operator (+) ```py # syntax list3 = list1 + list2 ``` ```py positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers = [-5,-4,-3,-2,-1] integers = negative_numbers + zero + positive_numbers print(integers) # [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables ) # ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` - Joining using extend() method The *extend()* method allows to append list in a list. See the example below. ```py # syntax list1 = ['item1', 'item2'] list2 = ['item3', 'item4', 'item5'] list1.extend(list2) # ['item1', 'item2', 'item3', 'item4', 'item5'] ``` ```py num1 = [0, 1, 2, 3] num2= [4, 5, 6] num1.extend(num2) print('Numbers:', num1) # Numbers: [0, 1, 2, 3, 4, 5, 6] negative_numbers = [-5,-4,-3,-2,-1] positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) # Integers: [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits ) # Fruits and vegetables: ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` ### Counting Items in a List The *count()* method returns the number of times an item appears in a list: ```py # syntax lst = ['item1', 'item2'] lst.count(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 ``` ### Finding Index of an Item The *index()* method returns the index of an item in the list: ```py # syntax lst = ['item1', 'item2'] lst.index(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # 2, the first occurrence ``` ### Reversing a List The *reverse()* method reverses the order of a list. ```py # syntax lst = ['item1', 'item2'] lst.reverse() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits) # ['lemon', 'mango', 'orange', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages) # [24, 25, 24, 26, 25, 24, 19, 22] ``` ### Sorting List Items To sort lists we can use _sort()_ method or _sorted()_ built-in functions. The _sort()_ method reorders the list items in ascending order and modifies the original list. If an argument of _sort()_ method reverse is equal to true, it will arrange the list in descending order. - sort(): this method modifies the original list ```py # syntax lst = ['item1', 'item2'] lst.sort() # ascending lst.sort(reverse=True) # descending ``` **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) # sorted in alphabetical order, ['banana', 'lemon', 'mango', 'orange'] fruits.sort(reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) # [19, 22, 24, 24, 24, 25, 25, 26] ages.sort(reverse=True) print(ages) # [26, 25, 25, 24, 24, 24, 22, 19] ``` sorted(): returns the ordered list without modifying the original list **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(sorted(fruits)) # ['banana', 'lemon', 'mango', 'orange'] # Reverse order fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits,reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ``` 🌕 You are diligent and you have already achieved quite a lot. You have just completed day 5 challenges and you are 5 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 5 ### Exercises: Level 1 1. Declare an empty list 2. Declare a list with more than 5 items 3. Find the length of your list 4. Get the first item, the middle item and the last item of the list 5. Declare a list called mixed_data_types, put your(name, age, height, marital status, address) 6. Declare a list variable named it_companies and assign initial values Facebook, Google, Microsoft, Apple, IBM, Oracle and Amazon. 7. Print the list using _print()_ 8. Print the number of companies in the list 9. Print the first, middle and last company 10. Print the list after modifying one of the companies 11. Add an IT company to it_companies 12. Insert an IT company in the middle of the companies list 13. Change one of the it_companies names to uppercase (IBM excluded!) 14. Join the it_companies with a string '#;  ' 15. Check if a certain company exists in the it_companies list. 16. Sort the list using sort() method 17. Reverse the list in descending order using reverse() method 18. Slice out the first 3 companies from the list 19. Slice out the last 3 companies from the list 20. Slice out the middle IT company or companies from the list 21. Remove the first IT company from the list 22. Remove the middle IT company or companies from the list 23. Remove the last IT company from the list 24. Remove all IT companies from the list 25. Destroy the IT companies list 26. Join the following lists: ```py front_end = ['HTML', 'CSS', 'JS', 'React', 'Redux'] back_end = ['Node','Express', 'MongoDB'] ``` 27. After joining the lists in question 26. Copy the joined list and assign it to a variable full_stack, then insert Python and SQL after Redux. ### Exercises: Level 2 1. The following is a list of 10 students ages: ```sh ages = [19, 22, 19, 24, 20, 25, 26, 24, 25, 24] ``` - Sort the list and find the min and max age - Add the min age and the max age again to the list - Find the median age (one middle item or two middle items divided by two) - Find the average age (sum of all items divided by their number ) - Find the range of the ages (max minus min) - Compare the value of (min - average) and (max - average), use _abs()_ method 1. Find the middle country(ies) in the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/tree/master/data/countries.py) 1. Divide the countries list into two equal lists if it is even if not one more country for the first half. 1. ['China', 'Russia', 'USA', 'Finland', 'Sweden', 'Norway', 'Denmark']. Unpack the first three countries and the rest as scandic countries. 🎉 CONGRATULATIONS ! 🎉 [<< Day 4](../04_Day_Strings/04_strings.md) | [Day 6 >>](../06_Day_Tuples/06_tuples.md) ================================================ FILE: 05_Day_Lists/day_5.py ================================================ empty_list = list() # this is an empty list, no item in the list print(len(empty_list)) # 0 # list of fruits fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] # list of vegetables animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # list of animal products web_techs = ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] # list of web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # Print the lists and it length print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:', animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Number of countries:', len(countries)) # Modifying list fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # we are accessing the first item using its index print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] # Accessing itmes fruits = ['banana', 'orange', 'mango', 'lemon'] last_fruit = fruits[-1] second_last = fruits[-2] print(last_fruit) # lemon print(second_last) # mango # Slicing items fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # it returns all the fruits # this is also give the same result as the above all_fruits = fruits[0:] # if we don't set where to stop it takes all the rest orange_and_mango = fruits[1:3] # it does not include the end index orange_mango_lemon = fruits[1:] fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # it returns all the fruits # this is also give the same result as the above orange_and_mango = fruits[-3:-1] # it does not include the end index orange_mango_lemon = fruits[-3:] fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'Avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] # checking items fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False # Append fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime] fruits.append('lime') print(fruits) # insert fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # insert apple between orange and mango print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] # ['banana', 'orange', 'apple', 'mango', 'lime','lemon',] fruits.list(3, 'lime') print(fruits) # remove fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon'] fruits.remove('lemon') print(fruits) # ['orange', 'mango'] # pop fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.remove() print(fruits) # ['banana', 'orange', 'mango'] fruits.remove(0) print(fruits) # ['orange', 'mango'] # del fruits = ['banana', 'orange', 'mango', 'lemon'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon'] del fruits[1] print(fruits) # ['orange', 'lemon'] del fruits print(fruits) # This should give: NameError: name 'fruits' is not defined # clear fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] # copying a lits fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] # join positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers = [-5, -4, -3, -2, -1] integers = negative_numbers + zero + positive_numbers print(integers) fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables) # join with extend num1 = [0, 1, 2, 3] num2 = [4, 5, 6] num1.extend(num2) print('Numbers:', num1) negative_numbers = [-5, -4, -3, -2, -1] positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits) # count fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 # index fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # Reverse fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits.reverse()) ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages.reverse()) # sort fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) fruits.sort(reverse=True) print(fruits) ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) ages.sort(reverse=True) print(ages) ================================================ FILE: 06_Day_Tuples/06_tuples.md ================================================

30 Days Of Python: Day 6 - Tuples

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 5](../05_Day_Lists/05_lists.md) | [Day 7 >>](../07_Day_Sets/07_sets.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 6:](#day-6) - [Tuples](#tuples) - [Creating a Tuple](#creating-a-tuple) - [Tuple length](#tuple-length) - [Accessing Tuple Items](#accessing-tuple-items) - [Slicing tuples](#slicing-tuples) - [Changing Tuples to Lists](#changing-tuples-to-lists) - [Checking an Item in a Tuple](#checking-an-item-in-a-tuple) - [Joining Tuples](#joining-tuples) - [Deleting Tuples](#deleting-tuples) - [💻 Exercises: Day 6](#-exercises-day-6) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) # Day 6: ## Tuples A tuple is a collection of different data types which is ordered and unchangeable (immutable). Tuples are written with round brackets, (). Once a tuple is created, we cannot change its values. We cannot use add, insert, remove methods in a tuple because it is not modifiable (mutable). Unlike list, tuple has few methods. Methods related to tuples: - tuple(): to create an empty tuple - count(): to count the number of a specified item in a tuple - index(): to find the index of a specified item in a tuple - `+` operator: to join two or more tuples and to create a new tuple ### Creating a Tuple - Empty tuple: Creating an empty tuple ```py # syntax empty_tuple = () # or using the tuple constructor empty_tuple = tuple() ``` - Tuple with initial values ```py # syntax tpl = ('item1', 'item2','item3') ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') ``` ### Tuple length We use the _len()_ method to get the length of a tuple. ```py # syntax tpl = ('item1', 'item2', 'item3') len(tpl) ``` ### Accessing Tuple Items - Positive Indexing Similar to the list data type we use positive or negative indexing to access tuple items. ![Accessing tuple items](../images/tuples_index.png) ```py # Syntax tpl = ('item1', 'item2', 'item3') first_item = tpl[0] second_item = tpl[1] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[0] second_fruit = fruits[1] last_index =len(fruits) - 1 last_fruit = fruits[last_index] ``` - Negative indexing Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second last and the negative of the list/tuple length refers to the first item. ![Tuple Negative indexing](../images/tuple_negative_indexing.png) ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') first_item = tpl[-4] second_item = tpl[-3] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[-4] second_fruit = fruits[-3] last_fruit = fruits[-1] ``` ### Slicing tuples We can slice out a sub-tuple by specifying a range of indexes where to start and where to end in the tuple, the return value will be a new tuple with the specified items. - Range of Positive Indexes ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[0:4] # all items all_items = tpl[0:] # all items middle_two_items = tpl[1:3] # does not include item at index 3 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[0:4] # all items all_fruits= fruits[0:] # all items orange_mango = fruits[1:3] # doesn't include item at index 3 orange_to_the_rest = fruits[1:] ``` - Range of Negative Indexes ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[-4:] # all items middle_two_items = tpl[-3:-1] # does not include item at index 3 (-1) ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[-4:] # all items orange_mango = fruits[-3:-1] # doesn't include item at index 3 orange_to_the_rest = fruits[-3:] ``` ### Changing Tuples to Lists We can change tuples to lists and lists to tuples. Tuple is immutable if we want to modify a tuple we should change it to a list. ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') lst = list(tpl) ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') fruits = list(fruits) fruits[0] = 'apple' print(fruits) # ['apple', 'orange', 'mango', 'lemon'] fruits = tuple(fruits) print(fruits) # ('apple', 'orange', 'mango', 'lemon') ``` ### Checking an Item in a Tuple We can check if an item exists or not in a tuple using _in_, it returns a boolean. ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') 'item2' in tpl # True ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') print('orange' in fruits) # True print('apple' in fruits) # False fruits[0] = 'apple' # TypeError: 'tuple' object does not support item assignment ``` ### Joining Tuples We can join two or more tuples using + operator ```py # syntax tpl1 = ('item1', 'item2', 'item3') tpl2 = ('item4', 'item5','item6') tpl3 = tpl1 + tpl2 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') vegetables = ('Tomato', 'Potato', 'Cabbage','Onion', 'Carrot') fruits_and_vegetables = fruits + vegetables ``` ### Deleting Tuples It is not possible to remove a single item in a tuple but it is possible to delete the tuple itself using _del_. ```py # syntax tpl1 = ('item1', 'item2', 'item3') del tpl1 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') del fruits ``` 🌕 You are so brave, you made it to this far. You have just completed day 6 challenges and you are 6 steps a head in to your way to greatness. Now do some exercises for your brain and for your muscle. ## 💻 Exercises: Day 6 ### Exercises: Level 1 1. Create an empty tuple 2. Create a tuple containing names of your sisters and your brothers (imaginary siblings are fine) 3. Join brothers and sisters tuples and assign it to siblings 4. How many siblings do you have? 5. Modify the siblings tuple and add the name of your father and mother and assign it to family_members ### Exercises: Level 2 1. Unpack siblings and parents from family_members 1. Create fruits, vegetables and animal products tuples. Join the three tuples and assign it to a variable called food_stuff_tp. 1. Change the about food_stuff_tp tuple to a food_stuff_lt list 1. Slice out the middle item or items from the food_stuff_tp tuple or food_stuff_lt list. 1. Slice out the first three items and the last three items from food_stuff_lt list 1. Delete the food_stuff_tp tuple completely 1. Check if an item exists in tuple: - Check if 'Estonia' is a nordic country - Check if 'Iceland' is a nordic country ```py nordic_countries = ('Denmark', 'Finland','Iceland', 'Norway', 'Sweden') ``` [<< Day 5](../05_Day_Lists/05_lists.md) | [Day 7 >>](../07_Day_Sets/07_sets.md) ================================================ FILE: 07_Day_Sets/07_sets.md ================================================

30 Days Of Python: Day 7 - Sets

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 6](../06_Day_Tuples/06_tuples.md) | [Day 8 >>](../08_Day_Dictionaries/08_dictionaries.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 7](#-day-7) - [Sets](#sets) - [Creating a Set](#creating-a-set) - [Getting Set's Length](#getting-sets-length) - [Accessing Items in a Set](#accessing-items-in-a-set) - [Checking an Item](#checking-an-item) - [Adding Items to a Set](#adding-items-to-a-set) - [Removing Items from a Set](#removing-items-from-a-set) - [Clearing Items in a Set](#clearing-items-in-a-set) - [Deleting a Set](#deleting-a-set) - [Converting List to Set](#converting-list-to-set) - [Joining Sets](#joining-sets) - [Finding Intersection Items](#finding-intersection-items) - [Checking Subset and Super Set](#checking-subset-and-super-set) - [Checking the Difference Between Two Sets](#checking-the-difference-between-two-sets) - [Finding Symmetric Difference Between Two Sets](#finding-symmetric-difference-between-two-sets) - [Joining Sets](#joining-sets-1) - [💻 Exercises: Day 7](#-exercises-day-7) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 7 ## Sets Set is a collection of items. Let me take you back to your elementary or high school Mathematics lesson. The Mathematics definition of a set can be applied also in Python. Set is a collection of unordered and un-indexed distinct elements. In Python set is used to store unique items, and it is possible to find the _union_, _intersection_, _difference_, _symmetric difference_, _subset_, _super set_ and _disjoint set_ among sets. ### Creating a Set To create an empty set, we use the set() function. Empty curly brackets {} will create a dictionary. - Creating an empty set ```py # syntax st = set() ``` - Creating a set with initial items ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} ``` **Example:** ```py # syntax fruits = {'banana', 'orange', 'mango', 'lemon'} ``` ### Getting Set's Length We use **len()** method to find the length of a set. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} len(st) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} len(fruits) ``` ### Accessing Items in a Set We use loops to access items. We will see this in loop section ### Checking an Item To check if an item exist in a list we use _in_ membership operator. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} print("Does set st contain item3? ", 'item3' in st) # Does set st contain item3? True ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} print('mango' in fruits ) # True ``` ### Adding Items to a Set Once a set is created we cannot change any items and we can also add additional items. - Add one item using _add()_ ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.add('item5') ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.add('lime') ``` - Add multiple items using _update()_ The _update()_ allows to add multiple items to a set. The _update()_ takes a list argument. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.update(['item5','item6','item7']) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = ('tomato', 'potato', 'cabbage','onion', 'carrot') fruits.update(vegetables) ``` ### Removing Items from a Set We can remove an item from a set using _remove()_ method. If the item is not found _remove()_ method will raise errors, so it is good to check if the item exist in the given set. However, _discard()_ method doesn't raise any errors. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.remove('item2') ``` The pop() methods remove a random item from a list and it returns the removed item. **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.pop() # removes a random item from the set ``` If we are interested in the removed item. ```py fruits = {'banana', 'orange', 'mango', 'lemon'} removed_item = fruits.pop() ``` ### Clearing Items in a Set If we want to clear or empty the set we use _clear_ method. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.clear() ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.clear() print(fruits) # set() ``` ### Deleting a Set If we want to delete the set itself we use _del_ operator. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} del st ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} del fruits ``` ### Converting List to Set We can convert list to set and set to list. Converting list to set removes duplicates and only unique items will be reserved. ```py # syntax lst = ['item1', 'item2', 'item3', 'item4', 'item1'] st = set(lst) # {'item2', 'item4', 'item1', 'item3'} - the order is random, because sets in general are unordered ``` **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon','orange', 'banana'] fruits = set(fruits) # {'mango', 'lemon', 'banana', 'orange'} ``` ### Joining Sets We can join two sets using the _union()_ or _update()_ method or _|_ symbol . - Union This method returns a new set ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st3 = st1.union(st2) #st3 = st1 | st2 ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} print(fruits.union(vegetables)) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} # or using this : print(fruits | vegetables) ``` - Update This method inserts a set into a given set ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st1.update(st2) # st2 contents are added to st1 ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} fruits.update(vegetables) print(fruits) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` ### Finding Intersection Items Intersection returns a set of items which are in both the sets or using _&_ symbol. See the example ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} # or using thia : st1 & st2 ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.intersection(even_numbers) # {0, 2, 4, 6, 8, 10} python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.intersection(dragon) # {'o', 'n'} # python & dragon ``` ### Checking Subset and Super Set A set can be a subset or super set of other sets: - Subset: _issubset()_ - Super set: _issuperset_ ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.issubset(st1) # True st1.issuperset(st2) # True ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.issubset(even_numbers) # False, because it is a super set whole_numbers.issuperset(even_numbers) # True python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.issubset(dragon) # False ``` ### Checking the Difference Between Two Sets It returns the difference between two sets or using _-_ symbol . ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.difference(st1) # set() : st2 - st1 st1.difference(st2) # {'item1', 'item4'} => st1\st2 : st2 - st1 ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.difference(even_numbers) # {1, 3, 5, 7, 9} python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.difference(dragon) # {'p', 'y', 't'} - the result is unordered (characteristic of sets) # python - dragon dragon.difference(python) # {'d', 'r', 'a', 'g'} # dragon - python ``` ### Finding Symmetric Difference Between Two Sets It returns the symmetric difference between two sets. It means that it returns a set that contains all items from both sets, except items that are present in both sets, mathematically: (A\B) ∪ (B\A) ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} # it means (A\B)∪(B\A) st2.symmetric_difference(st1) # {'item1', 'item4'} : st2 ^ st1 ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} some_numbers = {1, 2, 3, 4, 5} whole_numbers.symmetric_difference(some_numbers) # {0, 6, 7, 8, 9, 10} python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.symmetric_difference(dragon) # {'r', 't', 'p', 'y', 'g', 'a', 'd', 'h'} # python ^ dragon ``` ### Joining Sets If two sets do not have a common item or items we call them disjoint sets. We can check if two sets are joint or disjoint using _isdisjoint()_ method. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.isdisjoint(st1) # False ``` **Example:** ```py even_numbers = {0, 2, 4 ,6, 8} odd_numbers = {1, 3, 5, 7, 9} even_numbers.isdisjoint(odd_numbers) # True, because no common item python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.isdisjoint(dragon) # False, there are common items {'o', 'n'} ``` 🌕 You are a rising star . You have just completed day 7 challenges and you are 7 steps ahead in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 7 ```py # sets it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} A = {19, 22, 24, 20, 25, 26} B = {19, 22, 20, 25, 26, 24, 28, 27} age = [22, 19, 24, 25, 26, 24, 25, 24] ``` ### Exercises: Level 1 1. Find the length of the set it_companies 2. Add 'Twitter' to it_companies 3. Insert multiple IT companies at once to the set it_companies 4. Remove one of the companies from the set it_companies 5. What is the difference between remove and discard ### Exercises: Level 2 1. Join A and B 2. Find A intersection B 3. Is A subset of B 4. Are A and B disjoint sets 5. Join A with B and B with A 6. What is the symmetric difference between A and B 7. Delete the sets completely ### Exercises: Level 3 1. Convert the ages to a set and compare the length of the list and the set, which one is bigger? 2. Explain the difference between the following data types: string, list, tuple and set 3. _I am a teacher and I love to inspire and teach people._ How many unique words have been used in the sentence? Use the split methods and set to get the unique words. 🎉 CONGRATULATIONS ! 🎉 [<< Day 6](../06_Day_Tuples/06_tuples.md) | [Day 8 >>](../08_Day_Dictionaries/08_dictionaries.md) ================================================ FILE: 08_Day_Dictionaries/08_dictionaries.md ================================================

30 Days Of Python: Day 8 - Dictionaries

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 8](#-day-8) - [Dictionaries](#dictionaries) - [Creating a Dictionary](#creating-a-dictionary) - [Dictionary Length](#dictionary-length) - [Accessing Dictionary Items](#accessing-dictionary-items) - [Adding Items to a Dictionary](#adding-items-to-a-dictionary) - [Modifying Items in a Dictionary](#modifying-items-in-a-dictionary) - [Checking Keys in a Dictionary](#checking-keys-in-a-dictionary) - [Removing Key and Value Pairs from a Dictionary](#removing-key-and-value-pairs-from-a-dictionary) - [Changing Dictionary to a List of Items](#changing-dictionary-to-a-list-of-items) - [Clearing a Dictionary](#clearing-a-dictionary) - [Deleting a Dictionary](#deleting-a-dictionary) - [Copy a Dictionary](#copy-a-dictionary) - [Getting Dictionary Keys as a List](#getting-dictionary-keys-as-a-list) - [Getting Dictionary Values as a List](#getting-dictionary-values-as-a-list) - [💻 Exercises: Day 8](#-exercises-day-8) # 📘 Day 8 ## Dictionaries A dictionary is a collection of unordered, modifiable(mutable) paired (key: value) data type. ### Creating a Dictionary To create a dictionary we use curly brackets, {} or the *dict()* built-in function. ```py # syntax empty_dict = {} # Dictionary with data values dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` The dictionary above shows that a value could be any data types:string, boolean, list, tuple, set or a dictionary. ### Dictionary Length It checks the number of 'key: value' pairs in the dictionary. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(len(dct)) # 4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(len(person)) # 7 ``` ### Accessing Dictionary Items We can access Dictionary items by referring to its key name. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct['key1']) # value1 print(dct['key4']) # value4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person['first_name']) # Asabeneh print(person['country']) # Finland print(person['skills']) # ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person['skills'][0]) # JavaScript print(person['address']['street']) # Space street print(person['city']) # Error ``` Accessing an item by key name raises an error if the key does not exist. To avoid this error first we have to check if a key exist or we can use the _get_ method. The get method returns None, which is a NoneType object data type, if the key does not exist. ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person.get('first_name')) # Asabeneh print(person.get('country')) # Finland print(person.get('skills')) #['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person.get('city')) # None ``` ### Adding Items to a Dictionary We can add new key and value pairs to a dictionary ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key5'] = 'value5' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['job_title'] = 'Instructor' person['skills'].append('HTML') print(person) ``` ### Modifying Items in a Dictionary We can modify items in a dictionary ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key1'] = 'value-one' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['first_name'] = 'Eyob' person['age'] = 252 ``` ### Checking Keys in a Dictionary We use the _in_ operator to check if a key exist in a dictionary ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print('key2' in dct) # True print('key5' in dct) # False ``` ### Removing Key and Value Pairs from a Dictionary - _pop(key)_: removes the item with the specified key name: - _popitem()_: removes the last item - _del_: removes an item with specified key name ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.pop('key1') # removes key1 item dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.popitem() # removes the last item del dct['key2'] # removes key2 item ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person.pop('first_name') # Removes the firstname item person.popitem() # Removes the address item del person['is_married'] # Removes the is_married item ``` ### Changing Dictionary to a List of Items The _items()_ method changes dictionary to a list of tuples. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.items()) # dict_items([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3'), ('key4', 'value4')]) ``` ### Clearing a Dictionary If we don't want the items in a dictionary we can clear them using _clear()_ method ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.clear()) # None ``` ### Deleting a Dictionary If we do not use the dictionary we can delete it completely ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} del dct ``` ### Copy a Dictionary We can copy a dictionary using a _copy()_ method. Using copy we can avoid mutation of the original dictionary. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct_copy = dct.copy() # {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` ### Getting Dictionary Keys as a List The _keys()_ method gives us all the keys of a a dictionary as a list. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} keys = dct.keys() print(keys) # dict_keys(['key1', 'key2', 'key3', 'key4']) ``` ### Getting Dictionary Values as a List The _values_ method gives us all the values of a a dictionary as a list. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} values = dct.values() print(values) # dict_values(['value1', 'value2', 'value3', 'value4']) ``` 🌕 You are astonishing. Now, you are super charged with the power of dictionaries. You have just completed day 8 challenges and you are 8 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 8 1. Create an empty dictionary called dog 2. Add name, color, breed, legs, age to the dog dictionary 3. Create a student dictionary and add first_name, last_name, gender, age, marital status, skills, country, city and address as keys for the dictionary 4. Get the length of the student dictionary 5. Get the value of skills and check the data type, it should be a list 6. Modify the skills values by adding one or two skills 7. Get the dictionary keys as a list 8. Get the dictionary values as a list 9. Change the dictionary to a list of tuples using _items()_ method 10. Delete one of the items in the dictionary 11. Delete one of the dictionaries 🎉 CONGRATULATIONS ! 🎉 [<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md) ================================================ FILE: 09_Day_Conditionals/09_conditionals.md ================================================

30 Days Of Python: Day 9 - Conditionals

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 8](../08_Day_Dictionaries/08_dictionaries.md) | [Day 10 >>](../10_Day_Loops/10_loops.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 9](#-day-9) - [Conditionals](#conditionals) - [If Condition](#if-condition) - [If Else](#if-else) - [If Elif Else](#if-elif-else) - [Short Hand](#short-hand) - [Nested Conditions](#nested-conditions) - [If Condition and Logical Operators](#if-condition-and-logical-operators) - [If and Or Logical Operators](#if-and-or-logical-operators) - [💻 Exercises: Day 9](#-exercises-day-9) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 9 ## Conditionals By default, statements in Python script are executed sequentially from top to bottom. If the processing logic require so, the sequential flow of execution can be altered in two way: - Conditional execution: a block of one or more statements will be executed if a certain expression is true - Repetitive execution: a block of one or more statements will be repetitively executed as long as a certain expression is true. In this section, we will cover _if_, _else_, _elif_ statements. The comparison and logical operators we learned in previous sections will be useful here. ### If Condition In python and other programming languages the key word _if_ is used to check if a condition is true and to execute the block code. Remember the indentation after the colon. ```py # syntax if condition: this part of code runs for truthy conditions ``` **Example: 1** ```py a = 3 if a > 0: print('A is a positive number') # A is a positive number ``` As you can see in the example above, 3 is greater than 0. The condition was true and the block code was executed. However, if the condition is false, we do not see the result. In order to see the result of the falsy condition, we should have another block, which is going to be _else_. ### If Else If condition is true the first block will be executed, if not the else condition will run. ```py # syntax if condition: this part of code runs for truthy conditions else: this part of code runs for false conditions ``` **Example:** ```py a = 3 if a < 0: print('A is a negative number') else: print('A is a positive number') ``` The condition above proves false, therefore the else block was executed. How about if our condition is more than two? We could use _elif_. ### If Elif Else In our daily life, we make decisions on daily basis. We make decisions not by checking one or two conditions but multiple conditions. As similar to life, programming is also full of conditions. We use _elif_ when we have multiple conditions. ```py # syntax if condition: code elif condition: code else: code ``` **Example:** ```py a = 0 if a > 0: print('A is a positive number') elif a < 0: print('A is a negative number') else: print('A is zero') ``` ### Short Hand ```py # syntax code if condition else code ``` **Example:** ```py a = 3 print('A is positive') if a > 0 else print('A is negative') # first condition met, 'A is positive' will be printed ``` ### Nested Conditions Conditions can be nested ```py # syntax if condition: code if condition: code ``` **Example:** ```py a = 0 if a > 0: if a % 2 == 0: print('A is a positive and even integer') else: print('A is a positive number') elif a == 0: print('A is zero') else: print('A is a negative number') ``` We can avoid writing nested condition by using logical operator _and_. ### If Condition and Logical Operators ```py # syntax if condition and condition: code ``` **Example:** ```py a = 0 if a > 0 and a % 2 == 0: print('A is an even and positive integer') elif a > 0 and a % 2 != 0: print('A is a positive integer') elif a == 0: print('A is zero') else: print('A is negative') ``` ### If and Or Logical Operators ```py # syntax if condition or condition: code ``` **Example:** ```py user = 'James' access_level = 3 if user == 'admin' or access_level >= 4: print('Access granted!') else: print('Access denied!') ``` 🌕 You are doing great.Never give up because great things take time. You have just completed day 9 challenges and you are 9 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 9 ### Exercises: Level 1 1. Get user input using input(“Enter your age: ”). If user is 18 or older, give feedback: You are old enough to drive. If below 18 give feedback to wait for the missing amount of years. Output: ```sh Enter your age: 30 You are old enough to learn to drive. Output: Enter your age: 15 You need 3 more years to learn to drive. ``` 2. Compare the values of my_age and your_age using if … else. Who is older (me or you)? Use input(“Enter your age: ”) to get the age as input. You can use a nested condition to print 'year' for 1 year difference in age, 'years' for bigger differences, and a custom text if my_age = your_age. Output: ```sh Enter your age: 30 You are 5 years older than me. ``` 3. Get two numbers from the user using input prompt. If a is greater than b return a is greater than b, if a is less b return a is smaller than b, else a is equal to b. Output: ```sh Enter number one: 4 Enter number two: 3 4 is greater than 3 ``` ### Exercises: Level 2 1. Write a code which gives grade to students according to theirs scores: ```sh 90-100, A 80-89, B 70-79, C 60-69, D 0-59, F ``` 2. Get the month from user input then check if the season is Autumn, Winter, Spring or Summer. If the user input is: September, October or November, the season is Autumn. December, January or February, the season is Winter. March, April or May, the season is Spring June, July or August, the season is Summer 3. The following list contains some fruits: ```sh fruits = ['banana', 'orange', 'mango', 'lemon'] ``` If a fruit doesn't exist in the list add the fruit to the list and print the modified list. If the fruit exists print('That fruit already exist in the list') ### Exercises: Level 3 1. Here we have a person dictionary. Feel free to modify it! ```py person={ 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_married': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } ``` * Check if the person dictionary has skills key, if so print out the middle skill in the skills list. * Check if the person dictionary has skills key, if so check if the person has 'Python' skill and print out the result. * If a person skills has only JavaScript and React, print('He is a front end developer'), if the person skills has Node, Python, MongoDB, print('He is a backend developer'), if the person skills has React, Node and MongoDB, Print('He is a fullstack developer'), else print('unknown title') - for more accurate results more conditions can be nested! * If the person is married and if he lives in Finland, print the information in the following format: ```py Asabeneh Yetayeh lives in Finland. He is married. ``` 🎉 CONGRATULATIONS ! 🎉 [<< Day 8](../08_Day_Dictionaries/08_dictionaries.md) | [Day 10 >>](../10_Day_Loops/10_loops.md) ================================================ FILE: 10_Day_Loops/10_loops.md ================================================

30 Days Of Python: Day 10 - Loops

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 9](../09_Day_Conditionals/09_conditionals.md) | [Day 11 >>](../11_Day_Functions/11_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 10](#-day-10) - [Loops](#loops) - [While Loop](#while-loop) - [Break and Continue - Part 1](#break-and-continue---part-1) - [For Loop](#for-loop) - [Break and Continue - Part 2](#break-and-continue---part-2) - [The Range Function](#the-range-function) - [Nested For Loop](#nested-for-loop) - [For Else](#for-else) - [Pass](#pass) - [💻 Exercises: Day 10](#-exercises-day-10) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 10 ## Loops Life is full of routines. In programming we also do lots of repetitive tasks. In order to handle repetitive task programming languages use loops. Python programming language also provides the following types of two loops: 1. while loop 2. for loop ### While Loop We use the reserved word _while_ to make a while loop. It is used to execute a block of statements repeatedly until a given condition is satisfied. When the condition becomes false, the lines of code after the loop will be continued to be executed. ```py # syntax while condition: code goes here ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 #prints from 0 to 4 ``` In the above while loop, the condition becomes false when count is 5. That is when the loop stops. If we are interested to run block of code once the condition is no longer true, we can use _else_. ```py # syntax while condition: code goes here else: code goes here ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 else: print(count) ``` The above loop condition will be false when count is 5 and the loop stops, and execution starts the else statement. As a result 5 will be printed. ### Break and Continue - Part 1 - Break: We use break when we like to get out of or stop the loop. ```py # syntax while condition: code goes here if another_condition: break ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 if count == 3: break ``` The above while loop only prints 0, 1, 2, but when it reaches 3 it stops. - Continue: With the continue statement we can skip the current iteration, and continue with the next: ```py # syntax while condition: code goes here if another_condition: continue ``` **Example:** ```py count = 0 while count < 5: if count == 3: count += 1 continue print(count) count = count + 1 ``` The above while loop only prints 0, 1, 2 and 4 (skips 3). ### For Loop A _for_ keyword is used to make a for loop, similar with other programming languages, but with some syntax differences. Loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). -Using For loop on list ```py # syntax for iterator in lst: code goes here ``` **Example:** ```py numbers = [0, 1, 2, 3, 4, 5] for number in numbers: # number is temporary name to refer to the list's items, valid only inside this loop print(number) # the numbers will be printed line by line, from 0 to 5 ``` -Using For loop on string ```py # syntax for iterator in string: code goes here ``` **Example:** ```py language = 'Python' for letter in language: print(letter) for i in range(len(language)): print(language[i]) ``` -Using For loop on tuple ```py # syntax for iterator in tpl: code goes here ``` **Example:** ```py numbers = (0, 1, 2, 3, 4, 5) for number in numbers: print(number) ``` - For loop with dictionary Looping through a dictionary gives you the key of the dictionary. ```py # syntax for iterator in dct: code goes here ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } for key in person: print(key) for key, value in person.items(): print(key, value) # this way we get both keys and values printed out ``` -Using For Loop in set ```py # syntax for iterator in st: code goes here ``` **Example:** ```py it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} for company in it_companies: print(company) ``` ### Break and Continue - Part 2 Short reminder: _Break_: We use break when we want to stop our loop before it is completed. ```py # syntax for iterator in sequence: code goes here if condition: break ``` **Example:** ```py numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: break ``` In the above example, the loop stops when it reaches 3. Continue: We use continue when we want to skip some of the steps in the iteration of the loop. ```py # syntax for iterator in sequence: code goes here if condition: continue ``` **Example:** ```py numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: continue print('Next number should be ', number + 1) if number != 5 else print("loop's end") # for short hand conditions need both if and else statements print('outside the loop') ``` In the example above, if the number equals 3, the step _after_ the condition (but inside the loop) is skipped and the execution of the loop continues if there are any iterations left. ### The Range Function The _range()_ function is used to return a list of numbers. The _range(start, end, step)_ takes three parameters: starting, ending and increment. By default it starts from 0 and the increment is 1. The range sequence needs at least 1 argument (end). Creating sequences using range ```py lst = list(range(11)) print(lst) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] st = set(range(1, 11)) # 2 arguments indicate start and end of the sequence, step set to default 1 print(st) # {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} lst = list(range(0,11,2)) print(lst) # [0, 2, 4, 6, 8, 10] st = set(range(0,11,2)) print(st) # {0, 2, 4, 6, 8, 10} # for backward from start to end lst = list(range(11,0,-2)) print(lst) # [11,9,7,5,3,1] ``` ```py # syntax for iterator in range(start, end, step): ``` **Example:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 ``` ### Nested For Loop We can write loops inside a loop. ```py # syntax for x in y: for t in x: print(t) ``` **Example:** ```py person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_marred': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } for key in person: if key == 'skills': for skill in person['skills']: print(skill) ``` ### For Else If we want to execute some message when the loop ends, we use else. ```py # syntax for iterator in range(start, end, step): do something else: print('The loop ended') ``` **Example:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 else: print('The loop stops at', number) ``` ### Pass In python when statement is required (after semicolon), but we don't like to execute any code there, we can write the word _pass_ to avoid errors. Also we can use it as a placeholder, for future statements. **Example:** ```py for number in range(6): pass ``` 🌕 You established a big milestone, you are unstoppable. Keep going! You have just completed day 10 challenges and you are 10 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 10 ### Exercises: Level 1 1. Iterate 0 to 10 using for loop, do the same using while loop. 2. Iterate 10 to 0 using for loop, do the same using while loop. 3. Write a loop that makes seven calls to print(), so we get on the output the following triangle: ```py # ## ### #### ##### ###### ####### ``` 4. Use nested loops to create the following: ```sh # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ``` 5. Print the following pattern: ```sh 0 x 0 = 0 1 x 1 = 1 2 x 2 = 4 3 x 3 = 9 4 x 4 = 16 5 x 5 = 25 6 x 6 = 36 7 x 7 = 49 8 x 8 = 64 9 x 9 = 81 10 x 10 = 100 ``` 6. Iterate through the list, ['Python', 'Numpy','Pandas','Django', 'Flask'] using a for loop and print out the items. 7. Use for loop to iterate from 0 to 100 and print only even numbers 8. Use for loop to iterate from 0 to 100 and print only odd numbers ### Exercises: Level 2 1. Use for loop to iterate from 0 to 100 and print the sum of all numbers. ```sh The sum of all numbers is 5050. ``` 2. Use for loop to iterate from 0 to 100 and print the sum of all evens and the sum of all odds. ```sh The sum of all evens is 2550. And the sum of all odds is 2500. ``` ### Exercises: Level 3 1. Go to the data folder and use the [countries.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) file. Loop through the countries and extract all the countries containing the word _land_. 1. This is a fruit list, ['banana', 'orange', 'mango', 'lemon'] reverse the order using loop. 1. Go to the data folder and use the [countries_data.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) file. 1. What are the total number of languages in the data 2. Find the ten most spoken languages from the data 3. Find the 10 most populated countries in the world 🎉 CONGRATULATIONS ! 🎉 [<< Day 9](../09_Day_Conditionals/09_conditionals.md) | [Day 11 >>](../11_Day_Functions/11_functions.md) ================================================ FILE: 11_Day_Functions/11_functions.md ================================================

30 Days Of Python: Day 11 - Functions

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 10](../10_Day_Loops/10_loops.md) | [Day 12 >>](../12_Day_Modules/12_modules.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 11](#-day-11) - [Functions](#functions) - [Defining a Function](#defining-a-function) - [Declaring and Calling a Function](#declaring-and-calling-a-function) - [Function without Parameters](#function-without-parameters) - [Function Returning a Value - Part 1](#function-returning-a-value---part-1) - [Function with Parameters](#function-with-parameters) - [Passing Arguments with Key and Value](#passing-arguments-with-key-and-value) - [Function Returning a Value - Part 2](#function-returning-a-value---part-2) - [Function with Default Parameters](#function-with-default-parameters) - [Arbitrary Number of Arguments](#arbitrary-number-of-arguments) - [Default and Arbitrary Number of Parameters in Functions](#default-and-arbitrary-number-of-parameters-in-functions) - [Function as a Parameter of Another Function](#function-as-a-parameter-of-another-function) - [Testimony](#testimony) - [💻 Exercises: Day 11](#-exercises-day-11) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 11 ## Functions So far we have seen many built-in Python functions. In this section, we will focus on custom functions. What is a function? Before we start making functions, let us learn what a function is and why we need them? ### Defining a Function A function is a reusable block of code or programming statements designed to perform a certain task. To define or declare a function, Python provides the _def_ keyword. The following is the syntax for defining a function. The function block of code is executed only if the function is called or invoked. ### Declaring and Calling a Function When we make a function, we call it declaring a function. When we start using the it, we call it _calling_ or _invoking_ a function. Functions can be declared with or without parameters. ```py # syntax # Declaring a function def function_name(): codes codes # Calling a function function_name() ``` ### Function without Parameters Function can be declared without parameters. **Example:** ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) generate_full_name () # calling a function def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two print(total) add_two_numbers() ``` ### Function Returning a Value - Part 1 Functions return values using the _return_ statement. If a function has no return statement, it returns None. Let us rewrite the above functions using return. From now on, we get a value from a function when we call the function and print it. ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two return total print(add_two_numbers()) ``` ### Function with Parameters In a function we can pass different data types(number, string, boolean, list, tuple, dictionary or set) as parameters. - Single Parameter: If our function takes a parameter we should call our function with an argument ```py # syntax # Declaring a function def function_name(parameter): codes codes # Calling function print(function_name(argument)) ``` **Example:** ```py def greetings (name): message = name + ', welcome to Python for Everyone!' return message print(greetings('Asabeneh')) def add_ten(num): ten = 10 return num + ten print(add_ten(90)) def square_number(x): return x * x print(square_number(2)) def area_of_circle (r): PI = 3.14 area = PI * r ** 2 return area print(area_of_circle(10)) def sum_of_numbers(n): total = 0 for i in range(n+1): total+=i return total print(sum_of_numbers(10)) # 55 print(sum_of_numbers(100)) # 5050 ``` - Two Parameter: A function may or may not have a parameter or parameters. A function may also have two or more parameters. If our function takes parameters we should call it with arguments. Let us check a function with two parameters: ```py # syntax # Declaring a function def function_name(para1, para2): codes codes # Calling function print(function_name(arg1, arg2)) ``` **Example:** ```py def generate_full_name (first_name, last_name): space = ' ' full_name = first_name + space + last_name return full_name print('Full Name: ', generate_full_name('Asabeneh','Yetayeh')) def sum_two_numbers (num_one, num_two): sum = num_one + num_two return sum print('Sum of two numbers: ', sum_two_numbers(1, 9)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age print('Age: ', calculate_age(2021, 1819)) def weight_of_object (mass, gravity): weight = str(mass * gravity)+ ' N' # the value has to be changed to a string first return weight print('Weight of an object in Newtons: ', weight_of_object(100, 9.81)) ``` ### Passing Arguments with Key and Value If we pass the arguments with key and value, the order of the arguments does not matter. ```py # syntax # Declaring a function def function_name(para1, para2): codes codes # Calling function print(function_name(para1 = 'John', para2 = 'Doe')) # the order of arguments does not matter here ``` **Example:** ```py def print_fullname(firstname, lastname): space = ' ' full_name = firstname + space + lastname print(full_name) print_fullname(firstname = 'Asabeneh', lastname = 'Yetayeh') def add_two_numbers (num1, num2): total = num1 + num2 return total print(add_two_numbers(num2 = 3, num1 = 2)) # Order does not matter ``` ### Function Returning a Value - Part 2 If we do not return a value with a function, then our function is returning _None_ by default. To return a value with a function we use the keyword _return_ followed by the variable we are returning. We can return any kind of data types from a function. - Returning a string: **Example:** ```py def print_name(firstname): return firstname print_name('Asabeneh') # Asabeneh def print_full_name(firstname, lastname): space = ' ' full_name = firstname + space + lastname return full_name print_full_name(firstname='Asabeneh', lastname='Yetayeh') ``` - Returning a number: **Example:** ```py def add_two_numbers (num1, num2): total = num1 + num2 return total print(add_two_numbers(2, 3)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age print('Age: ', calculate_age(2019, 1819)) ``` - Returning a boolean: **Example:** ```py def is_even (n): if n % 2 == 0: return True # return stops further execution of the function, similar to break return False print(is_even(10)) # True print(is_even(7)) # False ``` - Returning a list: **Example:** ```py def find_even_numbers(n): evens = [] for i in range(n + 1): if i % 2 == 0: evens.append(i) return evens print(find_even_numbers(10)) ``` ### Function with Default Parameters Sometimes we pass default values to parameters, when we invoke the function. If we do not pass arguments when calling the function, their default values will be used. ```py # syntax # Declaring a function def function_name(param = value): codes codes # Calling function function_name() function_name(arg) ``` **Example:** ```py def greetings (name = 'Peter'): message = name + ', welcome to Python for Everyone!' return message print(greetings()) print(greetings('Asabeneh')) def generate_full_name (first_name = 'Asabeneh', last_name = 'Yetayeh'): space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) print(generate_full_name('David','Smith')) def calculate_age (birth_year,current_year = 2021): age = current_year - birth_year return age print('Age: ', calculate_age(1821)) def weight_of_object (mass, gravity = 9.81): weight = str(mass * gravity)+ ' N' # the value has to be changed to string first return weight print('Weight of an object in Newtons: ', weight_of_object(100)) # 9.81 - average gravity on Earth's surface print('Weight of an object in Newtons: ', weight_of_object(100, 1.62)) # gravity on the surface of the Moon ``` ### Arbitrary Number of Arguments If we do not know the number of arguments we pass to our function, we can create a function which can take arbitrary number of arguments by adding \* before the parameter name. ```py # syntax # Declaring a function def function_name(*args): codes codes # Calling function function_name(param1, param2, param3,..) ``` **Example:** ```py def sum_all_nums(*nums): total = 0 for num in nums: total += num # same as total = total + num return total print(sum_all_nums(2, 3, 5)) # 10 ``` ### Default and Arbitrary Number of Parameters in Functions ```py def generate_groups (team,*args): print(team) for i in args: print(i) generate_groups('Team-1','Asabeneh','Brook','David','Eyob') ``` ### Dictionary unpacking You can call a function which has named arguments using a dictionary with matching key names. You do so using ``**``. ```py # Define a function that takes two arguments: 'name' and 'location' def greet(name, location): # Print a greeting message using the provided arguments print("Hi there", name, "how is the weather in", location) # Call the function using keyword arguments greet(name="Alice", location="New York") # Output: Hi there Alice how is the weather in New York # Create a dictionary with keys matching the function's parameter names my_dict = {"name": "Alice", "location": "New York"} # Call the function using dictionary unpacking greet(**my_dict) # The ** operator unpacks the dictionary, passing its key-value pairs # as keyword arguments to the function. # Output: Hi there Alice how is the weather in New York ``` ### Arbitrary Number of Named Arguments You can also define a function to accept an arbitrary number of named arguments. ```py def arbitrary_named_args(**args): print("I received an arbitrary number of arguments, totaling", len(args)) print("They are provided as a dictionary in my function:", type(args)) print("Let's print them:") for k, v in args.items(): print(" * key:", k, "value:", v) ``` Generally avoid this unless required as it makes it harder to understand what the function accepts and does. ### Function as a Parameter of Another Function ```py #You can pass functions around as parameters def square_number (n): return n ** n def do_something(f, x): return f(x) print(do_something(square_number, 3)) # 27 ``` 🌕 You achieved quite a lot so far. Keep going! You have just completed day 11 challenges and you are 11 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## Testimony Now it is time to express your thoughts about the Author and 30DaysOfPython. You can leave your testimonial on this [link](https://testimonial-s3sw.onrender.com/) ## 💻 Exercises: Day 11 ### Exercises: Level 1 1. Declare a function _add_two_numbers_. It takes two parameters and it returns a sum. 2. Area of a circle is calculated as follows: area = π x r x r. Write a function that calculates _area_of_circle_. 3. Write a function called add_all_nums which takes arbitrary number of arguments and sums all the arguments. Check if all the list items are number types. If not do give a reasonable feedback. 4. Temperature in °C can be converted to °F using this formula: °F = (°C x 9/5) + 32. Write a function which converts °C to °F, _convert_celsius_to-fahrenheit_. 5. Write a function called check-season, it takes a month parameter and returns the season: Autumn, Winter, Spring or Summer. 6. Write a function called calculate_slope which return the slope of a linear equation 7. Quadratic equation is calculated as follows: ax² + bx + c = 0. Write a function which calculates solution set of a quadratic equation, _solve_quadratic_eqn_. 8. Declare a function named print_list. It takes a list as a parameter and it prints out each element of the list. 9. Declare a function named reverse_list. It takes an array as a parameter and it returns the reverse of the array (use loops). ```py print(reverse_list([1, 2, 3, 4, 5])) # [5, 4, 3, 2, 1] print(reverse_list(["A", "B", "C"])) # ["C", "B", "A"] ``` 10. Declare a function named capitalize_list_items. It takes a list as a parameter and it returns a capitalized list of items 11. Declare a function named add_item. It takes a list and an item parameters. It returns a list with the item added at the end. ```py food_stuff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(add_item(food_stuff, 'Meat')) # ['Potato', 'Tomato', 'Mango', 'Milk','Meat']; numbers = [2, 3, 7, 9]; print(add_item(numbers, 5)) # [2, 3, 7, 9, 5] ``` 12. Declare a function named remove_item. It takes a list and an item parameters. It returns a list with the item removed from it. ```py food_stuff = ['Potato', 'Tomato', 'Mango', 'Milk'] print(remove_item(food_stuff, 'Mango')) # ['Potato', 'Tomato', 'Milk']; numbers = [2, 3, 7, 9] print(remove_item(numbers, 3)) # [2, 7, 9] ``` 13. Declare a function named sum_of_numbers. It takes a number parameter and it adds all the numbers in that range. ```py print(sum_of_numbers(5)) # 15 print(sum_of_numbers(10)) # 55 print(sum_of_numbers(100)) # 5050 ``` 14. Declare a function named sum_of_odds. It takes a number parameter and it adds all the odd numbers in that range. 15. Declare a function named sum_of_even. It takes a number parameter and it adds all the even numbers in that - range. ### Exercises: Level 2 1. Declare a function named evens_and_odds . It takes a positive integer as parameter and it counts number of evens and odds in the number. ```py print(evens_and_odds(100)) # The number of odds are 50. # The number of evens are 51. ``` 1. Call your function factorial, it takes a whole number as a parameter and it return a factorial of the number 1. Call your function _is_empty_, it takes a parameter and it checks if it is empty or not 1. Write different functions which take lists. They should calculate_mean, calculate_median, calculate_mode, calculate_range, calculate_variance, calculate_std (standard deviation). 1. Write a function called _greet_ which takes a default argument, _name_. If no argument is supplied it should print "Hello, Guest!", otherwise it should greet the person by name. ```py greet() # "Hello, Guest! greet("Alice") # "Hello, Alice!" ``` 1. Create a function called _show_args_ to take an arbitrary number of named arguments and print their names and values. ```py show_args(name="Alice", age=30, city="New York") # Received: name: Alice, age: 30, city: New York show_args(name="Bob", pet="Fluffy, the bunny") # Received: name: Bob, pet: Fluffy, the bunny ``` ### Exercises: Level 3 1. Write a function called is_prime, which checks if a number is prime. 1. Write a functions which checks if all items are unique in the list. 1. Write a function which checks if all the items of the list are of the same data type. 1. Write a function which check if provided variable is a valid python variable 1. Go to the data folder and access the countries-data.py file. - Create a function called the most_spoken_languages in the world. It should return 10 or 20 most spoken languages in the world in descending order - Create a function called the most_populated_countries. It should return 10 or 20 most populated countries in descending order. 🎉 CONGRATULATIONS ! 🎉 [<< Day 10](../10_Day_Loops/10_loops.md) | [Day 12 >>](../12_Day_Modules/12_modules.md) ================================================ FILE: 12_Day_Modules/12_modules.md ================================================

30 Days Of Python: Day 12 - Modules

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 11](../11_Day_Functions/11_functions.md) | [Day 13>>](../13_Day_List_comprehension/13_list_comprehension.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 12](#-day-12) - [Modules](#modules) - [What is a Module](#what-is-a-module) - [Creating a Module](#creating-a-module) - [Importing a Module](#importing-a-module) - [Import Functions from a Module](#import-functions-from-a-module) - [Import Functions from a Module and Renaming](#import-functions-from-a-module-and-renaming) - [Import Built-in Modules](#import-built-in-modules) - [OS Module](#os-module) - [Sys Module](#sys-module) - [Statistics Module](#statistics-module) - [Math Module](#math-module) - [String Module](#string-module) - [Random Module](#random-module) - [💻 Exercises: Day 12](#-exercises-day-12) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 12 ## Modules ### What is a Module A module is a file containing a set of codes or a set of functions which can be included to an application. A module could be a file containing a single variable, a function or a big code base. ### Creating a Module To create a module we write our codes in a python script and we save it as a .py file. Create a file named mymodule.py inside your project folder. Let us write some code in this file. ```py # mymodule.py file def generate_full_name(firstname, lastname): return firstname + ' ' + lastname ``` Create main.py file in your project directory and import the mymodule.py file. ### Importing a Module To import the file we use the _import_ keyword and the name of the file only. ```py # main.py file import mymodule print(mymodule.generate_full_name('Asabeneh', 'Yetayeh')) # Asabeneh Yetayeh ``` ### Import Functions from a Module We can have many functions in a file and we can import all the functions differently. ```py # main.py file from mymodule import generate_full_name, sum_two_nums, person, gravity print(generate_full_name('Asabneh','Yetayeh')) print(sum_two_nums(1,9)) mass = 100 weight = mass * gravity print(weight) print(person['firstname']) ``` ### Import Functions from a Module and Renaming During importing we can rename the name of the module. ```py # main.py file from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g print(fullname('Asabneh','Yetayeh')) print(total(1, 9)) mass = 100 weight = mass * g print(weight) print(p) print(p['firstname']) ``` ## Import Built-in Modules Like other programming languages we can also import modules by importing the file/function using the key word _import_. Let's import the common module we will use most of the time. Some of the common built-in modules: _math_, _datetime_, _os_,_sys_, _random_, _statistics_, _collections_, _json_,_re_ ### OS Module Using python _os_ module it is possible to automatically perform many operating system tasks. The OS module in Python provides functions for creating, changing current working directory, and removing a directory (folder), fetching its contents, changing and identifying the current directory. ```py # import the module import os # Creating a directory os.mkdir('directory_name') # Changing the current directory os.chdir('path') # Getting current working directory os.getcwd() # Removing directory os.rmdir() ``` ### Sys Module The sys module provides functions and variables used to manipulate different parts of the Python runtime environment. Function sys.argv returns a list of command line arguments passed to a Python script. The item at index 0 in this list is always the name of the script, at index 1 is the argument passed from the command line. Example of a script.py file: ```py import sys #print(sys.argv[0], argv[1],sys.argv[2]) # this line would print out: filename argument1 argument2 print('Welcome {}. Enjoy {} challenge!'.format(sys.argv[1], sys.argv[2])) ``` Now to check how this script works I wrote in command line: ```sh python script.py Asabeneh 30DaysOfPython ``` The result: ```sh Welcome Asabeneh. Enjoy 30DayOfPython challenge! ``` Some useful sys commands: ```py # to exit sys sys.exit() # To know the largest integer variable it takes sys.maxsize # To know environment path sys.path # To know the version of python you are using sys.version ``` ### Statistics Module The statistics module provides functions for mathematical statistics of numeric data. The popular statistical functions which are defined in this module: _mean_, _median_, _mode_, _stdev_ etc. ```py from statistics import * # importing all the statistics modules ages = [20, 20, 4, 24, 25, 22, 26, 20, 23, 22, 26] print(mean(ages)) # ~22.9 print(median(ages)) # 23 print(mode(ages)) # 20 print(stdev(ages)) # ~2.3 ``` ### Math Module Module containing many mathematical operations and constants. ```py import math print(math.pi) # 3.141592653589793, pi constant print(math.sqrt(2)) # 1.4142135623730951, square root print(math.pow(2, 3)) # 8.0, exponential function print(math.floor(9.81)) # 9, rounding to the lowest print(math.ceil(9.81)) # 10, rounding to the highest print(math.log10(100)) # 2, logarithm with 10 as base ``` Now, we have imported the *math* module which contains lots of function which can help us to perform mathematical calculations. To check what functions the module has got, we can use _help(math)_, or _dir(math)_. This will display the available functions in the module. If we want to import only a specific function from the module we import it as follows: ```py from math import pi print(pi) ``` It is also possible to import multiple functions at once ```py from math import pi, sqrt, pow, floor, ceil, log10 print(pi) # 3.141592653589793 print(sqrt(2)) # 1.4142135623730951 print(pow(2, 3)) # 8.0 print(floor(9.81)) # 9 print(ceil(9.81)) # 10 print(math.log10(100)) # 2 ``` But if we want to import all the function in math module we can use \* . ```py from math import * print(pi) # 3.141592653589793, pi constant print(sqrt(2)) # 1.4142135623730951, square root print(pow(2, 3)) # 8.0, exponential print(floor(9.81)) # 9, rounding to the lowest print(ceil(9.81)) # 10, rounding to the highest print(math.log10(100)) # 2 ``` When we import we can also rename the name of the function. ```py from math import pi as PI print(PI) # 3.141592653589793 ``` ### String Module A string module is a useful module for many purposes. The example below shows some use of the string module. ```py import string print(string.ascii_letters) # abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ print(string.digits) # 0123456789 print(string.punctuation) # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ ``` ### Random Module By now you are familiar with importing modules. Let us do one more import to get very familiar with it. Let us import _random_ module which gives us a random number between 0 and 0.9999.... The _random_ module has lots of functions but in this section we will only use _random_ and _randint_. ```py from random import random, randint print(random()) # it doesn't take any arguments; it returns a value between 0 and 0.9999 print(randint(5, 20)) # it returns a random integer number between [5, 20] inclusive ``` 🌕 You are going far. Keep going! You have just completed day 12 challenges and you are 12 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 12 ### Exercises: Level 1 1. Write a function which generates a six digit/character random_user_id. ```py print(random_user_id()) '1ee33d' ``` 2. Modify the previous task. Declare a function named user_id_gen_by_user. It doesn’t take any parameters but it takes two inputs using input(). One of the inputs is the number of characters and the second input is the number of IDs which are supposed to be generated. ```py print(user_id_gen_by_user()) # user input: 5 5 #output: #kcsy2 #SMFYb #bWmeq #ZXOYh #2Rgxf print(user_id_gen_by_user()) # 16 5 #1GCSgPLMaBAVQZ26 #YD7eFwNQKNs7qXaT #ycArC5yrRupyG00S #UbGxOFI7UXSWAyKN #dIV0SSUTgAdKwStr ``` 3. Write a function named rgb_color_gen. It will generate rgb colors (3 values ranging from 0 to 255 each). ```py print(rgb_color_gen()) # rgb(125,244,255) - the output should be in this form ``` ### Exercises: Level 2 1. Write a function list_of_hexa_colors which returns any number of hexadecimal colors in an array (six hexadecimal numbers written after #. Hexadecimal numeral system is made out of 16 symbols, 0-9 and first 6 letters of the alphabet, a-f. Check the task 6 for output examples). 1. Write a function list_of_rgb_colors which returns any number of RGB colors in an array. 1. Write a function generate_colors which can generate any number of hexa or rgb colors. ```py generate_colors('hexa', 3) # ['#a3e12f','#03ed55','#eb3d2b'] generate_colors('hexa', 1) # ['#b334ef'] generate_colors('rgb', 3) # ['rgb(5, 55, 175','rgb(50, 105, 100','rgb(15, 26, 80'] generate_colors('rgb', 1) # ['rgb(33,79, 176)'] ``` ### Exercises: Level 3 1. Call your function shuffle_list, it takes a list as a parameter and it returns a shuffled list 1. Write a function which returns an array of seven random numbers in a range of 0-9. All the numbers must be unique. 🎉 CONGRATULATIONS ! 🎉 [<< Day 11](../11_Day_Functions/11_functions.md) | [Day 13>>](../13_Day_List_comprehension/13_list_comprehension.md) ================================================ FILE: 12_Day_Modules/main.py ================================================ from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g print(fullname('Asabneh','Yetayeh')) print(total(1, 9)) mass = 100 print(mass) weight = mass * g print(weight) print(p) print(p['firstname']) ================================================ FILE: 12_Day_Modules/mymodule.py ================================================ def generate_full_name(firstname, lastname): space = ' ' fullname = firstname + space + lastname return fullname def sum_two_nums (num1, num2): return num1 + num2 gravity = 9.81 person = { "firstname": "Asabeneh", "age": 250, "country": "Finland", "city":'Helsinki' } ================================================ FILE: 13_Day_List_comprehension/13_list_comprehension.md ================================================

30 Days Of Python: Day 13 - List Comprehension

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 12](../12_Day_Modules/12_modules.md) | [Day 14>>](../14_Day_Higher_order_functions/14_higher_order_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 13](#-day-13) - [List Comprehension](#list-comprehension) - [Lambda Function](#lambda-function) - [Creating a Lambda Function](#creating-a-lambda-function) - [Lambda Function Inside Another Function](#lambda-function-inside-another-function) - [💻 Exercises: Day 13](#-exercises-day-13) # 📘 Day 13 ## List Comprehension List comprehension in Python is a compact way of creating a list from a sequence. It is a short way to create a new list. List comprehension is considerably faster than processing a list using the _for_ loop. ```py # syntax [expression for i in iterable if condition] ``` **Example:1** For instance if you want to change a string to a list of characters. You can use a couple of methods. Let's see some of them: ```py # One way language = 'Python' lst = list(language) # changing the string to list print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] # Second way: list comprehension lst = [i for i in language] print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] ``` **Example:2** For instance if you want to generate a list of numbers ```py # Generating numbers numbers = [i for i in range(11)] # to generate numbers from 0 to 10 print(numbers) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # It is possible to do mathematical operations during iteration squares = [i * i for i in range(11)] print(squares) # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100] # It is also possible to make a list of tuples numbers = [(i, i * i) for i in range(11)] print(numbers) # [(0, 0), (1, 1), (2, 4), (3, 9), (4, 16), (5, 25)] ``` **Example:2** List comprehension can be combined with if expression ```py # Generating even numbers even_numbers = [i for i in range(21) if i % 2 == 0] # to generate even numbers list in range 0 to 21 print(even_numbers) # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # Generating odd numbers odd_numbers = [i for i in range(21) if i % 2 != 0] # to generate odd numbers in range 0 to 21 print(odd_numbers) # [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] # Filter numbers: let's filter out positive even numbers from the list below numbers = [-8, -7, -3, -1, 0, 1, 3, 4, 5, 7, 6, 8, 10] positive_even_numbers = [i for i in numbers if i % 2 == 0 and i > 0] print(positive_even_numbers) # [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # Flattening a two dimensional array list_of_lists = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] flattened_list = [ number for row in list_of_lists for number in row] print(flattened_list) # [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ## Lambda Function Lambda function is a small anonymous function without a name. It can take any number of arguments, but can only have one expression. Lambda function is similar to anonymous functions in JavaScript. We need it when we want to write an anonymous function inside another function. ### Creating a Lambda Function To create a lambda function we use _lambda_ keyword followed by a parameter(s), followed by an expression. See the syntax and the example below. Lambda function does not use return but it explicitly returns the expression. ```py # syntax x = lambda param1, param2, param3: param1 + param2 + param3 print(x(arg1, arg2, arg3)) ``` **Example:** ```py # Named function def add_two_nums(a, b): return a + b print(add_two_nums(2, 3)) # 5 # Lets change the above function to a lambda function add_two_nums = lambda a, b: a + b print(add_two_nums(2,3)) # 5 # Self invoking lambda function (lambda a, b: a + b)(2,3) # 5 - need to encapsulate it in print() to see the result in the console square = lambda x : x ** 2 print(square(3)) # 9 cube = lambda x : x ** 3 print(cube(3)) # 27 # Multiple variables multiple_variable = lambda a, b, c: a ** 2 - 3 * b + 4 * c print(multiple_variable(5, 5, 3)) # 22 ``` ### Lambda Function Inside Another Function Using a lambda function inside another function. ```py def power(x): return lambda n : x ** n cube = power(2)(3) # function power now need 2 arguments to run, in separate rounded brackets print(cube) # 8 two_power_of_five = power(2)(5) print(two_power_of_five) # 32 ``` 🌕 Keep up the good work. Keep the momentum going, the sky is the limit! You have just completed day 13 challenges and you are 13 steps a head in to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 13 1. Filter only negative and zero in the list using list comprehension ```py numbers = [-4, -3, -2, -1, 0, 2, 4, 6] ``` 2. Flatten the following list of lists of lists to a one dimensional list : ```py list_of_lists =[[1, 2, 3], [4, 5, 6], [7, 8, 9]] output [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` 3. Using list comprehension create the following list of tuples: ```py [(0, 1, 0, 0, 0, 0, 0), (1, 1, 1, 1, 1, 1, 1), (2, 1, 2, 4, 8, 16, 32), (3, 1, 3, 9, 27, 81, 243), (4, 1, 4, 16, 64, 256, 1024), (5, 1, 5, 25, 125, 625, 3125), (6, 1, 6, 36, 216, 1296, 7776), (7, 1, 7, 49, 343, 2401, 16807), (8, 1, 8, 64, 512, 4096, 32768), (9, 1, 9, 81, 729, 6561, 59049), (10, 1, 10, 100, 1000, 10000, 100000)] ``` 4. Flatten the following list to a new list: ```py countries = [[('Finland', 'Helsinki')], [('Sweden', 'Stockholm')], [('Norway', 'Oslo')]] output: [['FINLAND','FIN', 'HELSINKI'], ['SWEDEN', 'SWE', 'STOCKHOLM'], ['NORWAY', 'NOR', 'OSLO']] ``` 5. Change the following list to a list of dictionaries: ```py countries = [[('Finland', 'Helsinki')], [('Sweden', 'Stockholm')], [('Norway', 'Oslo')]] output: [{'country': 'FINLAND', 'city': 'HELSINKI'}, {'country': 'SWEDEN', 'city': 'STOCKHOLM'}, {'country': 'NORWAY', 'city': 'OSLO'}] ``` 6. Change the following list of lists to a list of concatenated strings: ```py names = [[('Asabeneh', 'Yetayeh')], [('David', 'Smith')], [('Donald', 'Trump')], [('Bill', 'Gates')]] output ['Asabeneh Yetaeyeh', 'David Smith', 'Donald Trump', 'Bill Gates'] ``` 7. Write a lambda function which can solve a slope or y-intercept of linear functions. 🎉 CONGRATULATIONS ! 🎉 [<< Day 12](../12_Day_Modules/12_modules.md) | [Day 14>>](../14_Day_Higher_order_functions/14_higher_order_functions.md) ================================================ FILE: 14_Day_Higher_order_functions/14_higher_order_functions.md ================================================

30 Days Of Python: Day 14 - Higher Order Functions

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 13](../13_Day_List_comprehension/13_list_comprehension.md) | [Day 15>>](../15_Day_Python_type_errors/15_python_type_errors.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 14](#-day-14) - [Higher Order Functions](#higher-order-functions) - [Function as a Parameter](#function-as-a-parameter) - [Function as a Return Value](#function-as-a-return-value) - [Python Closures](#python-closures) - [Python Decorators](#python-decorators) - [Creating Decorators](#creating-decorators) - [Applying Multiple Decorators to a Single Function](#applying-multiple-decorators-to-a-single-function) - [Accepting Parameters in Decorator Functions](#accepting-parameters-in-decorator-functions) - [Built-in Higher Order Functions](#built-in-higher-order-functions) - [Python - Map Function](#python---map-function) - [Python - Filter Function](#python---filter-function) - [Python - Reduce Function](#python---reduce-function) - [💻 Exercises: Day 14](#-exercises-day-14) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 14 ## Higher Order Functions In Python functions are treated as first class citizens, allowing you to perform the following operations on functions: - A function can take one or more functions as parameters - A function can be returned as a result of another function - A function can be modified - A function can be assigned to a variable In this section, we will cover: 1. Handling functions as parameters 2. Returning functions as return value from another functions 3. Using Python closures and decorators ### Function as a Parameter ```py def sum_numbers(nums): # normal function return sum(nums) # a sad function abusing the built-in sum function :< def higher_order_function(f, lst): # function as a parameter summation = f(lst) return summation result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5]) print(result) # 15 ``` ### Function as a Return Value ```py def square(x): # a square function return x ** 2 def cube(x): # a cube function return x ** 3 def absolute(x): # an absolute value function if x >= 0: return x else: return -(x) def higher_order_function(type): # a higher order function returning a function if type == 'square': return square elif type == 'cube': return cube elif type == 'absolute': return absolute result = higher_order_function('square') print(result(3)) # 9 result = higher_order_function('cube') print(result(3)) # 27 result = higher_order_function('absolute') print(result(-3)) # 3 ``` You can see from the above example that the higher order function is returning different functions depending on the passed parameter ## Python Closures Python allows a nested function to access the outer scope of the enclosing function. This is is known as a Closure. Let us have a look at how closures work in Python. In Python, closure is created by nesting a function inside another encapsulating function and then returning the inner function. See the example below. **Example:** ```py def add_ten(): ten = 10 def add(num): return num + ten return add closure_result = add_ten() print(closure_result(5)) # 15 print(closure_result(10)) # 20 ``` ## Python Decorators A decorator is a design pattern in Python that allows a user to add new functionality to an existing object without modifying its structure. Decorators are usually called before the definition of a function you want to decorate. ### Creating Decorators To create a decorator function, we need an outer function with an inner wrapper function. **Example:** ```py # Normal function def greeting(): return 'Welcome to Python' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper g = uppercase_decorator(greeting) print(g()) # WELCOME TO PYTHON ## Let us implement the example above with a decorator '''This decorator function is a higher order function that takes a function as a parameter''' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper @uppercase_decorator def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### Applying Multiple Decorators to a Single Function ```py '''These decorator functions are higher order functions that take functions as parameters''' # First Decorator def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper # Second decorator def split_string_decorator(function): def wrapper(): func = function() splitted_string = func.split() return splitted_string return wrapper #Decorators will be executed from bottom to top @split_string_decorator @uppercase_decorator # order with decorators is important in this case - .upper() function does not work with lists def greeting(): return 'Welcome to Python' print(greeting()) # ['WELCOME', 'TO', 'PYTHON'] ``` ### Accepting Parameters in Decorator Functions Most of the time we need our functions to take parameters, so we might need to define a decorator that accepts parameters. ```py def decorator_with_parameters(function): def wrapper_accepting_parameters(para1, para2, para3): function(para1, para2, para3) print("I live in {}".format(para3)) return wrapper_accepting_parameters @decorator_with_parameters def print_full_name(first_name, last_name, country): print("I am {} {}. I love to teach.".format( first_name, last_name)) print_full_name("Asabeneh", "Yetayeh",'Finland') ``` ## Built-in Higher Order Functions Some of the built-in higher order functions that we cover in this part are _map()_, _filter_, and _reduce_. Lambda function can be passed as a parameter and the best use case of lambda functions is in functions like map, filter and reduce. ### Python - Map Function The map() function is a built-in function that takes a function and iterable as parameters. ```py # syntax map(function, iterable) ``` **Example:1** ```py numbers = [1, 2, 3, 4, 5] # iterable def square(x): return x ** 2 numbers_squared = map(square, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] # Lets apply it with a lambda function numbers_squared = map(lambda x : x ** 2, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] ``` **Example:2** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable numbers_int = map(int, numbers_str) print(list(numbers_int)) # [1, 2, 3, 4, 5] ``` **Example:3** ```py names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def change_to_upper(name): return name.upper() names_upper_cased = map(change_to_upper, names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] # Let us apply it with a lambda function names_upper_cased = map(lambda name: name.upper(), names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] ``` What actually map does is iterating over a list. For instance, it changes the names to upper case and returns a new list. ### Python - Filter Function The filter() function calls the specified function which returns boolean for each item of the specified iterable (list). It filters the items that satisfy the filtering criteria. ```py # syntax filter(function, iterable) ``` **Example:1** ```py # Lets filter only even nubers numbers = [1, 2, 3, 4, 5] # iterable def is_even(num): if num % 2 == 0: return True return False even_numbers = filter(is_even, numbers) print(list(even_numbers)) # [2, 4] ``` **Example:2** ```py numbers = [1, 2, 3, 4, 5] # iterable def is_odd(num): if num % 2 != 0: return True return False odd_numbers = filter(is_odd, numbers) print(list(odd_numbers)) # [1, 3, 5] ``` ```py # Filter long name names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def is_name_long(name): if len(name) > 7: return True return False long_names = filter(is_name_long, names) print(list(long_names)) # ['Asabeneh'] ``` ### Python - Reduce Function The _reduce()_ function is defined in the functools module and we should import it from this module. Like map and filter it takes two parameters, a function and an iterable. However, it does not return another iterable, instead it returns a single value. **Example:1** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable def add_two_nums(x, y): return int(x) + int(y) total = reduce(add_two_nums, numbers_str) print(total) # 15 ``` ## 💻 Exercises: Day 14 ```py countries = ['Estonia', 'Finland', 'Sweden', 'Denmark', 'Norway', 'Iceland'] names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ``` ### Exercises: Level 1 1. Explain the difference between map, filter, and reduce. 2. Explain the difference between higher order function, closure and decorator 3. Define a call function before map, filter or reduce, see examples. 4. Use for loop to print each country in the countries list. 5. Use for to print each name in the names list. 6. Use for to print each number in the numbers list. ### Exercises: Level 2 1. Use map to create a new list by changing each country to uppercase in the countries list 1. Use map to create a new list by changing each number to its square in the numbers list 1. Use map to change each name to uppercase in the names list 1. Use filter to filter out countries containing 'land'. 1. Use filter to filter out countries having exactly six characters. 1. Use filter to filter out countries containing six letters and more in the country list. 1. Use filter to filter out countries starting with an 'E' 1. Chain two or more list iterators (eg. arr.map(callback).filter(callback).reduce(callback)) 1. Declare a function called get_string_lists which takes a list as a parameter and then returns a list containing only string items. 1. Use reduce to sum all the numbers in the numbers list. 1. Use reduce to concatenate all the countries and to produce this sentence: Estonia, Finland, Sweden, Denmark, Norway, and Iceland are north European countries 1. Declare a function called categorize_countries that returns a list of countries with some common pattern (you can find the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) in this repository as countries.js(eg 'land', 'ia', 'island', 'stan')). 1. Create a function returning a dictionary, where keys stand for starting letters of countries and values are the number of country names starting with that letter. 2. Declare a get_first_ten_countries function - it returns a list of first ten countries from the countries.js list in the data folder. 1. Declare a get_last_ten_countries function that returns the last ten countries in the countries list. ### Exercises: Level 3 1. Use the countries_data.py (https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) file and follow the tasks below: - Sort countries by name, by capital, by population - Sort out the ten most spoken languages by location. - Sort out the ten most populated countries. 🎉 CONGRATULATIONS ! 🎉 [<< Day 13](../13_Day_List_comprehension/13_list_comprehension.md) | [Day 15>>](../15_Day_Python_type_errors/15_python_type_errors.md) ================================================ FILE: 15_Day_Python_type_errors/15_python_type_errors.md ================================================

30 Days Of Python: Day 15 - Python Type Errors

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 14](../14_Day_Higher_order_functions/14_higher_order_functions.md) | [Day 16 >>](../16_Day_Python_date_time/16_python_datetime.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 15](#-day-15) - [Python Error Types](#python-error-types) - [SyntaxError](#syntaxerror) - [NameError](#nameerror) - [IndexError](#indexerror) - [ModuleNotFoundError](#modulenotfounderror) - [AttributeError](#attributeerror) - [KeyError](#keyerror) - [TypeError](#typeerror) - [ImportError](#importerror) - [ValueError](#valueerror) - [ZeroDivisionError](#zerodivisionerror) - [💻 Exercises: Day 15](#-exercises-day-15) # 📘 Day 15 ## Python Error Types When we write code it is common that we make a typo or some other common error. If our code fails to run, the Python interpreter will display a message, containing feedback with information on where the problem occurs and the type of an error. It will also sometimes gives us suggestions on a possible fix. Understanding different types of errors in programming languages will help us to debug our code quickly and also it makes us better at what we do. Let us see the most common error types one by one. First let us open our Python interactive shell. Go to your you computer terminal and write 'python'. The python interactive shell will be opened. ### SyntaxError **Example 1: SyntaxError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> ``` As you can see we made a syntax error because we forgot to enclose the string with parenthesis and Python already suggests the solution. Let us fix it. ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> print('hello world') hello world >>> ``` The error was a _SyntaxError_. After the fix our code was executed without a hitch. Let see more error types. ### NameError **Example 1: NameError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> ``` As you can see from the message above, name age is not defined. Yes, it is true that we did not define an age variable but we were trying to print it out as if we had had declared it. Now, lets fix this by declaring it and assigning with a value. ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> age = 25 >>> print(age) 25 >>> ``` The type of error was a _NameError_. We debugged the error by defining the variable name. ### IndexError **Example 1: IndexError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> numbers = [1, 2, 3, 4, 5] >>> numbers[5] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range >>> ``` In the example above, Python raised an _IndexError_, because the list has only indexes from 0 to 4 , so it was out of range. ### ModuleNotFoundError **Example 1: ModuleNotFoundError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> ``` In the example above, I added an extra s to math deliberately and _ModuleNotFoundError_ was raised. Lets fix it by removing the extra s from math. ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> ``` We fixed it, so let's use some of the functions from the math module. ### AttributeError **Example 1: AttributeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> ``` As you can see, I made a mistake again! Instead of pi, I tried to call a PI constant from maths module. It raised an attribute error, it means, that the attribute does not exist in the module. Lets fix it by changing from PI to pi. ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> math.pi 3.141592653589793 >>> ``` Now, when we call pi from the math module we got the result. ### KeyError **Example 1: KeyError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> users = {'name':'Asab', 'age':250, 'country':'Finland'} >>> users['name'] 'Asab' >>> users['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> ``` As you can see, there was a typo in the key used to get the dictionary value. so, this is a key error and the fix is quite straight forward. Let's do this! ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> user = {'name':'Asab', 'age':250, 'country':'Finland'} >>> user['name'] 'Asab' >>> user['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> user['country'] 'Finland' >>> ``` We debugged the error, our code ran and we got the value. ### TypeError **Example 1: TypeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> ``` In the example above, a TypeError is raised because we cannot add a number to a string. First solution would be to convert the string to int or float. Another solution would be converting the number to a string (the result then would be '43'). Let us follow the first fix. ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> 4 + int('3') 7 >>> 4 + float('3') 7.0 >>> ``` Error removed and we got the result we expected. ### ImportError **Example 1: TypeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> ``` There is no function called power in the math module, it goes with a different name: _pow_. Let's correct it: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> from math import pow >>> pow(2,3) 8.0 >>> ``` ### ValueError ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> int('12a') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '12a' >>> ``` In this case we cannot change the given string to a number, because of the 'a' letter in it. ### ZeroDivisionError ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1/0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero >>> ``` We cannot divide a number by zero. We have covered some of the python error types, if you want to check more about it check the python documentation about python error types. If you are good at reading the error types, then you will be able to fix your bugs fast and you will also become a better programmer. 🌕 You are excelling. You made it to half way to your way to greatness. Now do some exercises for your brain and for your muscle. ## 💻 Exercises: Day 15 1. Open you python interactive shell and try all the examples covered in this section. 🎉 CONGRATULATIONS ! 🎉 [<< Day 14](../14_Day_Higher_order_functions/14_higher_order_functions.md) | [Day 16 >>](../16_Day_Python_date_time/16_python_datetime.md) ================================================ FILE: 16_Day_Python_date_time/16_python_datetime.md ================================================

30 Days Of Python: Day 16 - Python Date time

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 15](../15_Day_Python_type_errors/15_python_type_errors.md) | [Day 17 >>](../17_Day_Exception_handling/17_exception_handling.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 16](#-day-16) - [Python *datetime*](#python-datetime) - [Getting *datetime* Information](#getting-datetime-information) - [Formatting Date Output Using *strftime*](#formatting-date-output-using-strftime) - [String to Time Using *strptime*](#string-to-time-using-strptime) - [Using *date* from *datetime*](#using-date-from-datetime) - [Time Objects to Represent Time](#time-objects-to-represent-time) - [Difference Between Two Points in Time Using](#difference-between-two-points-in-time-using) - [Difference Between Two Points in Time Using *timedelta*](#difference-between-two-points-in-time-using-timedelta) - [💻 Exercises: Day 16](#-exercises-day-16) # 📘 Day 16 ## Python *datetime* Python has got _datetime_ module to handle date and time. ```py import datetime print(dir(datetime)) ['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo'] ``` With dir or help built-in commands it is possible to know the available functions in a certain module. As you can see, in the datetime module there are many functions, but we will focus on _date_, _datetime_, _time_ and _timedelta_. Let se see them one by one. ### Getting *datetime* Information ```py from datetime import datetime now = datetime.now() print(now) # 2021-07-08 07:34:46.549883 day = now.day # 8 month = now.month # 7 year = now.year # 2021 hour = now.hour # 7 minute = now.minute # 38 second = now.second timestamp = now.timestamp() print(day, month, year, hour, minute) print('timestamp', timestamp) print(f'{day}/{month}/{year}, {hour}:{minute}') # 8/7/2021, 7:38 ``` Timestamp or Unix timestamp is the number of seconds elapsed from 1st of January 1970 UTC. ### Formatting Date Output Using *strftime* ```py from datetime import datetime new_year = datetime(2020, 1, 1) print(new_year) # 2020-01-01 00:00:00 day = new_year.day month = new_year.month year = new_year.year hour = new_year.hour minute = new_year.minute second = new_year.second print(day, month, year, hour, minute) #1 1 2020 0 0 print(f'{day}/{month}/{year}, {hour}:{minute}') # 1/1/2020, 0:0 ``` Formatting date time using *strftime* method and the documentation can be found [here](https://strftime.org/). ```py from datetime import datetime # current date and time now = datetime.now() t = now.strftime("%H:%M:%S") print("time:", t) # time: 18:21:40 time_one = now.strftime("%m/%d/%Y, %H:%M:%S") # mm/dd/YY H:M:S format print("time one:", time_one) # time one: 06/28/2022, 18:21:40 time_two = now.strftime("%d/%m/%Y, %H:%M:%S") # dd/mm/YY H:M:S format print("time two:", time_two) # time two: 28/06/2022, 18:21:40 ``` ```sh time: 01:05:01 time one: 12/05/2019, 01:05:01 time two: 05/12/2019, 01:05:01 ``` Here are all the _strftime_ symbols we use to format time. An example of all the formats for this module. ![strftime](../images/strftime.png) ### String to Time Using *strptime* Here is a [documentation](https://www.programiz.com/python-programming/datetime/strptime) hat helps to understand the format. ```py from datetime import datetime date_string = "5 December, 2019" print("date_string =", date_string) # date_string = 5 December, 2019 date_object = datetime.strptime(date_string, "%d %B, %Y") print("date_object =", date_object) # date_object = 2019-12-05 00:00:00 ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 ``` ### Using *date* from *datetime* ```py from datetime import date d = date(2020, 1, 1) print(d) # 2020-01-01 print('Current date:', d.today()) # 2019-12-05 # date object of today's date today = date.today() print("Current year:", today.year) # 2019 print("Current month:", today.month) # 12 print("Current day:", today.day) # 5 ``` ### Time Objects to Represent Time ```py from datetime import time # time(hour = 0, minute = 0, second = 0) a = time() print("a =", a) # a = 00:00:00 # time(hour, minute and second) b = time(10, 30, 50) print("b =", b) # b = 10:30:50 # time(hour, minute and second) c = time(hour=10, minute=30, second=50) print("c =", c) # c = 10:30:50 # time(hour, minute, second, microsecond) d = time(10, 30, 50, 200555) print("d =", d) # d = 10:30:50.200555 ``` output a = 00:00:00 b = 10:30:50 c = 10:30:50 d = 10:30:50.200555 ### Difference Between Two Points in Time Using ```py from datetime import date, datetime today = date(year=2019, month=12, day=5) new_year = date(year=2020, month=1, day=1) time_left_for_newyear = new_year - today # Time left for new year: 27 days, 0:00:00 print('Time left for new year: ', time_left_for_newyear) # Time left for new year: 27 days, 0:00:00 t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0) t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) diff = t2 - t1 print('Time left for new year:', diff) # Time left for new year: 26 days, 23: 01: 00 ``` ### Difference Between Two Points in Time Using *timedelta* ```py from datetime import timedelta t1 = timedelta(weeks=12, days=10, hours=4, seconds=20) t2 = timedelta(days=7, hours=5, minutes=3, seconds=30) t3 = t1 - t2 print("t3 =", t3) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 t3 = 86 days, 22:56:50 ``` 🌕 You are an extraordinary. You are 16 steps a head to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 16 1. Get the current day, month, year, hour, minute and timestamp from datetime module 2. Format the current date using this format: "%m/%d/%Y, %H:%M:%S") 3. Today is 5 December, 2019. Change this time string to time. 4. Calculate the time difference between now and new year. 5. Calculate the time difference between 1 January 1970 and now. 6. Think, what can you use the datetime module for? Examples: - Time series analysis - To get a timestamp of any activities in an application - Adding posts on a blog 🎉 CONGRATULATIONS ! 🎉 [<< Day 15](../15_Day_Python_type_errors/15_python_type_errors.md) | [Day 17 >>](../17_Day_Exception_handling/17_exception_handling.md) ================================================ FILE: 17_Day_Exception_handling/17_exception_handling.md ================================================

30 Days Of Python: Day 17 - Exception Handling

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 16](../16_Day_Python_date_time/16_python_datetime.md) | [Day 18 >>](../18_Day_Regular_expressions/18_regular_expressions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 17](#-day-17) - [Exception Handling](#exception-handling) - [Packing and Unpacking Arguments in Python](#packing-and-unpacking-arguments-in-python) - [Unpacking](#unpacking) - [Unpacking Lists](#unpacking-lists) - [Unpacking Dictionaries](#unpacking-dictionaries) - [Packing](#packing) - [Packing Lists](#packing-lists) - [Packing Dictionaries](#packing-dictionaries) - [Spreading in Python](#spreading-in-python) - [Enumerate](#enumerate) - [Zip](#zip) - [Exercises: Day 17](#exercises-day-17) # 📘 Day 17 ## Exception Handling Python uses _try_ and _except_ to handle errors gracefully. A graceful exit (or graceful handling) of errors is a simple programming idiom - a program detects a serious error condition and "exits gracefully", in a controlled manner as a result. Often the program prints a descriptive error message to a terminal or log as part of the graceful exit, this makes our application more robust. The cause of an exception is often external to the program itself. An example of exceptions could be an incorrect input, wrong file name, unable to find a file, a malfunctioning IO device. Graceful handling of errors prevents our applications from crashing. We have covered the different Python _error_ types in the previous section. If we use _try_ and _except_ in our program, then it will not raise errors in those blocks. ![Try and Except](../images/try_except.png) ```py try: code in this block if things go well except: code in this block run if things go wrong ``` **Example:** ```py try: print(10 + '5') except: print('Something went wrong') ``` In the example above the second operand is a string. We could change it to float or int to add it with the number to make it work. But without any changes, the second block, _except_, will be executed. **Example:** ```py try: name = input('Enter your name:') year_born = input('Year you were born:') age = 2019 - year_born print(f'You are {name}. And your age is {age}.') except: print('Something went wrong') ``` ```sh Something went wrong ``` In the above example, the exception block will run and we do not know exactly the problem. To analyze the problem, we can use the different error types with except. In the following example, it will handle the error and will also tell us the kind of error raised. ```py try: name = input('Enter your name:') year_born = input('Year you were born:') age = 2019 - year_born print(f'You are {name}. And your age is {age}.') except TypeError: print('Type error occured') except ValueError: print('Value error occured') except ZeroDivisionError: print('zero division error occured') ``` ```sh Enter your name:Asabeneh Year you born:1920 Type error occured ``` In the code above the output is going to be _TypeError_. Now, let's add an additional block: ```py try: name = input('Enter your name:') year_born = input('Year you born:') age = 2019 - int(year_born) print(f'You are {name}. And your age is {age}.') except TypeError: print('Type error occur') except ValueError: print('Value error occur') except ZeroDivisionError: print('zero division error occur') else: print('I usually run with the try block') finally: print('I alway run.') ``` ```sh Enter your name:Asabeneh Year you born:1920 You are Asabeneh. And your age is 99. I usually run with the try block I alway run. ``` It is also shorten the above code as follows: ```py try: name = input('Enter your name:') year_born = input('Year you born:') age = 2019 - int(year_born) print(f'You are {name}. And your age is {age}.') except Exception as e: print(e) ``` ## Packing and Unpacking Arguments in Python We use two operators: - \* for tuples - \*\* for dictionaries Let us take as an example below. It takes only arguments but we have list. We can unpack the list and changes to argument. ### Unpacking #### Unpacking Lists ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(lst)) # TypeError: sum_of_five_nums() missing 4 required positional arguments: 'b', 'c', 'd', and 'e' ``` When we run the this code, it raises an error, because this function takes numbers (not a list) as arguments. Let us unpack/destructure the list. ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(*lst)) # 15 ``` We can also use unpacking in the range built-in function that expects a start and an end. ```py numbers = range(2, 7) # normal call with separate arguments print(list(numbers)) # [2, 3, 4, 5, 6] args = [2, 7] numbers = range(*args) # call with arguments unpacked from a list print(numbers) # [2, 3, 4, 5,6] ``` A list or a tuple can also be unpacked like this: ```py countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] fin, sw, nor, *rest = countries print(fin, sw, nor, rest) # Finland Sweden Norway ['Denmark', 'Iceland'] numbers = [1, 2, 3, 4, 5, 6, 7] one, *middle, last = numbers print(one, middle, last) # 1 [2, 3, 4, 5, 6] 7 ``` #### Unpacking Dictionaries ```py def unpacking_person_info(name, country, city, age): return f'{name} lives in {country}, {city}. He is {age} year old.' dct = {'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'age':250} print(unpacking_person_info(**dct)) # Asabeneh lives in Finland, Helsinki. He is 250 years old. ``` ### Packing Sometimes we never know how many arguments need to be passed to a python function. We can use the packing method to allow our function to take unlimited number or arbitrary number of arguments. ### Packing Lists ```py def sum_all(*args): s = 0 for i in args: s += i return s print(sum_all(1, 2, 3)) # 6 print(sum_all(1, 2, 3, 4, 5, 6, 7)) # 28 ``` #### Packing Dictionaries ```py def packing_person_info(**kwargs): # check the type of kwargs and it is a dict type # print(type(kwargs)) # Printing dictionary items for key in kwargs: print(f"{key} = {kwargs[key]}") return kwargs print(packing_person_info(name="Asabeneh", country="Finland", city="Helsinki", age=250)) ``` ```sh name = Asabeneh country = Finland city = Helsinki age = 250 {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ## Spreading in Python Like in JavaScript, spreading is possible in Python. Let us check it in an example below: ```py lst_one = [1, 2, 3] lst_two = [4, 5, 6, 7] lst = [0, *lst_one, *lst_two] print(lst) # [0, 1, 2, 3, 4, 5, 6, 7] country_lst_one = ['Finland', 'Sweden', 'Norway'] country_lst_two = ['Denmark', 'Iceland'] nordic_countries = [*country_lst_one, *country_lst_two] print(nordic_countries) # ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] ``` ## Enumerate If we are interested in an index of a list, we use _enumerate_ built-in function to get the index of each item in the list. ```py for index, item in enumerate([20, 30, 40]): print(index, item) ``` ```py countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] for index, i in enumerate(countries): if i == 'Finland': print(f'The country {i} has been found at index {index}') ``` ```sh The country Finland has been found at index 0. ``` ## Zip Sometimes we would like to combine lists when looping through them. See the example below: ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'lime'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits_and_veges = [] for f, v in zip(fruits, vegetables): fruits_and_veges.append({'fruit':f, 'veg':v}) print(fruits_and_veges) ``` ```sh [{'fruit': 'banana', 'veg': 'Tomato'}, {'fruit': 'orange', 'veg': 'Potato'}, {'fruit': 'mango', 'veg': 'Cabbage'}, {'fruit': 'lemon', 'veg': 'Onion'}, {'fruit': 'lime', 'veg': 'Carrot'}] ``` 🌕 You are determined. You are 17 steps a head to your way to greatness. Now do some exercises for your brain and muscles. ## Exercises: Day 17 1. names = ['Finland', 'Sweden', 'Norway','Denmark','Iceland', 'Estonia','Russia']. Unpack the first five countries and store them in a variable nordic_countries, store Estonia and Russia in es, and ru respectively. 🎉 CONGRATULATIONS ! 🎉 [<< Day 16](../16_Day_Python_date_time/16_python_datetime.md) | [Day 18 >>](../18_Day_Regular_expressions/18_regular_expressions.md) ================================================ FILE: 18_Day_Regular_expressions/18_regular_expressions.md ================================================

30 Days Of Python: Day 18 - Regular Expressions

Twitter Follow Author: Asabeneh Yetayeh
First Edition: Nov 22 - Dec 22, 2019
[<< Day 17](../17_Day_Exception_handling/17_exception_handling.md) | [Day 19>>](../19_Day_File_handling/19_file_handling.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 18](#-day-18) - [Regular Expressions](#regular-expressions) - [The *re* Module](#the-re-module) - [Methods in *re* Module](#methods-in-re-module) - [Match](#match) - [Search](#search) - [Searching for All Matches Using *findall*](#searching-for-all-matches-using-findall) - [Replacing a Substring](#replacing-a-substring) - [Splitting Text Using RegEx Split](#splitting-text-using-regex-split) - [Writing RegEx Patterns](#writing-regex-patterns) - [Square Bracket](#square-bracket) - [Escape character(\\) in RegEx](#escape-character-in-regex) - [One or more times(+)](#one-or-more-times) - [Period(.)](#period) - [Zero or more times(\*)](#zero-or-more-times) - [Zero or one time(?)](#zero-or-one-time) - [Quantifier in RegEx](#quantifier-in-regex) - [Cart ^](#cart-) - [💻 Exercises: Day 18](#-exercises-day-18) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 18 ## Regular Expressions A regular expression or RegEx is a special text string that helps to find patterns in data. A RegEx can be used to check if some pattern exists in a different data type. To use RegEx in python first we should import the RegEx module which is called *re*. ### The *re* Module After importing the module we can use it to detect or find patterns. ```py import re ``` ### Methods in *re* Module To find a pattern we use different set of *re* character sets that allows to search for a match in a string. - *re.match()*: searches only in the beginning of the first line of the string and returns matched objects if found, else returns None. - *re.search*: Returns a match object if there is one anywhere in the string, including multiline strings. - *re.findall*: Returns a list containing all matches - *re.split*: Takes a string, splits it at the match points, returns a list - *re.sub*: Replaces one or many matches within a string #### Match ```py # syntax re.match(substring, string, re.I) # substring is a string or a pattern, string is the text we look for a pattern , re.I is case ignore ``` ```py import re txt = 'I love to teach python and javaScript' # It returns an object with span, and match match = re.match('I love to teach', txt, re.I) print(match) # # We can get the starting and ending position of the match as tuple using span span = match.span() print(span) # (0, 15) # Lets find the start and stop position from the span start, end = span print(start, end) # 0 15 substring = txt[start:end] print(substring) # I love to teach ``` As you can see from the example above, the pattern we are looking for (or the substring we are looking for) is *I love to teach*. The match function returns an object **only** if the text starts with the pattern. ```py import re txt = 'I love to teach python and javaScript' match = re.match('I like to teach', txt, re.I) print(match) # None ``` The string does not string with *I like to teach*, therefore there was no match and the match method returned None. #### Search ```py # syntax re.search(substring, string, re.I) # substring is a pattern, string is the text we look for a pattern , re.I is case ignore flag ``` ```py import re txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # It returns an object with span and match match = re.search('first', txt, re.I) print(match) # # We can get the starting and ending position of the match as tuple using span span = match.span() print(span) # (100, 105) # Lets find the start and stop position from the span start, end = span print(start, end) # 100 105 substring = txt[start:end] print(substring) # first ``` As you can see, search is much better than match because it can look for the pattern throughout the text. Search returns a match object with a first match that was found, otherwise it returns *None*. A much better *re* function is *findall*. This function checks for the pattern through the whole string and returns all the matches as a list. #### Searching for All Matches Using *findall* *findall()* returns all the matches as a list ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # It return a list matches = re.findall('language', txt, re.I) print(matches) # ['language', 'language'] ``` As you can see, the word *language* was found two times in the string. Let us practice some more. Now we will look for both Python and python words in the string: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # It returns list matches = re.findall('python', txt, re.I) print(matches) # ['Python', 'python'] ``` Since we are using *re.I* both lowercase and uppercase letters are included. If we do not have the re.I flag, then we will have to write our pattern differently. Let us check it out: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' matches = re.findall('Python|python', txt) print(matches) # ['Python', 'python'] # matches = re.findall('[Pp]ython', txt) print(matches) # ['Python', 'python'] ``` #### Replacing a Substring ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' match_replaced = re.sub('Python|python', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created.I recommend python for a first programming language # OR match_replaced = re.sub('[Pp]ython', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created.I recommend python for a first programming language ``` Let us add one more example. The following string is really hard to read unless we remove the % symbol. Replacing the % with an empty string will clean the text. ```py txt = '''%I a%m te%%a%%che%r% a%n%d %% I l%o%ve te%ach%ing. T%he%re i%s n%o%th%ing as r%ewarding a%s e%duc%at%i%ng a%n%d e%m%p%ow%er%ing p%e%o%ple. I fo%und te%a%ching m%ore i%n%t%er%%es%ting t%h%an any other %jobs. D%o%es thi%s m%ot%iv%a%te %y%o%u to b%e a t%e%a%cher?''' matches = re.sub('%', '', txt) print(matches) ``` ```sh I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher? ``` ## Splitting Text Using RegEx Split ```py txt = '''I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher?''' print(re.split('\n', txt)) # splitting using \n - end of line symbol ``` ```sh ['I am teacher and I love teaching.', 'There is nothing as rewarding as educating and empowering people.', 'I found teaching more interesting than any other jobs.', 'Does this motivate you to be a teacher?'] ``` ## Writing RegEx Patterns To declare a string variable we use a single or double quote. To declare RegEx variable *r''*. The following pattern only identifies apple with lowercase, to make it case insensitive either we should rewrite our pattern or we should add a flag. ```py import re regex_pattern = r'apple' txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['apple'] # To make case insensitive adding flag ' matches = re.findall(regex_pattern, txt, re.I) print(matches) # ['Apple', 'apple'] # or we can use a set of characters method regex_pattern = r'[Aa]pple' # this mean the first letter could be Apple or apple matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` * []: A set of characters - [a-c] means, a or b or c - [a-z] means, any letter from a to z - [A-Z] means, any character from A to Z - [0-3] means, 0 or 1 or 2 or 3 - [0-9] means any number from 0 to 9 - [A-Za-z0-9] any single character, that is a to z, A to Z or 0 to 9 - \\: uses to escape special characters - \d means: match where the string contains digits (numbers from 0-9) - \D means: match where the string does not contain digits - . : any character except new line character(\n) - ^: starts with - r'^substring' eg r'^love', a sentence that starts with a word love - r'[^abc] means not a, not b, not c. - $: ends with - r'substring$' eg r'love$', sentence that ends with a word love - *: zero or more times - r'[a]*' means a optional or it can occur many times. - +: one or more times - r'[a]+' means at least once (or more) - ?: zero or one time - r'[a]?' means zero times or once - {3}: Exactly 3 characters - {3,}: At least 3 characters - {3,8}: 3 to 8 characters - |: Either or - r'apple|banana' means either apple or a banana - (): Capture and group ![Regular Expression cheat sheet](../images/regex.png) Let us use examples to clarify the meta characters above ### Square Bracket Let us use square bracket to include lower and upper case ```py regex_pattern = r'[Aa]pple' # this square bracket mean either A or a txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` If we want to look for the banana, we write the pattern as follows: ```py regex_pattern = r'[Aa]pple|[Bb]anana' # this square bracket means either A or a txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'banana', 'apple', 'banana'] ``` Using the square bracket and or operator , we manage to extract Apple, apple, Banana and banana. ### Escape character(\\) in RegEx ```py regex_pattern = r'\d' # d is a special character which means digits txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2', '0', '1', '9', '8', '2', '0', '2', '1'], this is not what we want ``` ### One or more times(+) ```py regex_pattern = r'\d+' # d is a special character which means digits, + mean one or more times txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] - now, this is better! ``` ### Period(.) ```py regex_pattern = r'[a].' # this square bracket means a and . means any character except new line txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['an', 'an', 'an', 'a ', 'ar'] regex_pattern = r'[a].+' # . any character, + any character one or more times matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Zero or more times(\*) Zero or many times. The pattern could may not occur or it can occur many times. ```py regex_pattern = r'[a].*' # . any character, * any character zero or more times txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Zero or one time(?) Zero or one time. The pattern may not occur or it may occur once. ```py txt = '''I am not sure if there is a convention how to write the word e-mail. Some people write it as email others may write it as Email or E-mail.''' regex_pattern = r'[Ee]-?mail' # ? means here that '-' is optional matches = re.findall(regex_pattern, txt) print(matches) # ['e-mail', 'email', 'Email', 'E-mail'] ``` ### Quantifier in RegEx We can specify the length of the substring we are looking for in a text, using a curly bracket. Let us imagine, we are interested in a substring with a length of 4 characters: ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{4}' # exactly four times matches = re.findall(regex_pattern, txt) print(matches) # ['2019', '2021'] txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{1,4}' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### Cart ^ - Starts with ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'^This' # ^ means starts with matches = re.findall(regex_pattern, txt) print(matches) # ['This'] ``` - Negation ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'[^A-Za-z ]+' # ^ in set character means negation, not A to Z, not a to z, no space matches = re.findall(regex_pattern, txt) print(matches) # ['6,', '2019', '8', '2021'] ``` ## 💻 Exercises: Day 18 ### Exercises: Level 1 1. What is the most frequent word in the following paragraph? ```py paragraph = 'I love teaching. If you do not love teaching what else can you love. I love Python if you do not love something which can give you all the capabilities to develop an application what else can you love. ``` ```sh [ (6, 'love'), (5, 'you'), (3, 'can'), (2, 'what'), (2, 'teaching'), (2, 'not'), (2, 'else'), (2, 'do'), (2, 'I'), (1, 'which'), (1, 'to'), (1, 'the'), (1, 'something'), (1, 'if'), (1, 'give'), (1, 'develop'), (1, 'capabilities'), (1, 'application'), (1, 'an'), (1, 'all'), (1, 'Python'), (1, 'If') ] ``` 2. The position of some particles on the horizontal x-axis are -12, -4, -3 and -1 in the negative direction, 0 at origin, 4 and 8 in the positive direction. Extract these numbers from this whole text and find the distance between the two furthest particles. ```py points = ['-12', '-4', '-3', '-1', '0', '4', '8'] sorted_points = [-12, -4, -3, -1, -1, 0, 2, 4, 8] distance = 8 -(-12) # 20 ``` ### Exercises: Level 2 1. Write a pattern which identifies if a string is a valid python variable ```sh is_valid_variable('first_name') # True is_valid_variable('first-name') # False is_valid_variable('1first_name') # False is_valid_variable('firstname') # True ``` ### Exercises: Level 3 1. Clean the following text. After cleaning, count three most frequent words in the string. ```py sentence = '''%I $am@% a %tea@cher%, &and& I lo%#ve %tea@ching%;. There $is nothing; &as& mo@re rewarding as educa@ting &and& @emp%o@wering peo@ple. ;I found tea@ching m%o@re interesting tha@n any other %jo@bs. %Do@es thi%s mo@tivate yo@u to be a tea@cher!?''' print(clean_text(sentence)); I am a teacher and I love teaching There is nothing as more rewarding as educating and empowering people I found teaching more interesting than any other jobs Does this motivate you to be a teacher print(most_frequent_words(cleaned_text)) # [(3, 'I'), (2, 'teaching'), (2, 'teacher')] ``` 🎉 CONGRATULATIONS ! 🎉 [<< Day 17](../17_Day_Exception_handling/17_exception_handling.md) | [Day 19>>](../19_Day_File_handling/19_file_handling.md) ================================================ FILE: 19_Day_File_handling/19_file_handling.md ================================================

30 Days Of Python: Day 19 - File Handling

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 18](../18_Day_Regular_expressions/18_regular_expressions.md) | [Day 20 >>](../20_Day_Python_package_manager/20_python_package_manager.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 19](#-day-19) - [File Handling](#file-handling) - [Opening Files for Reading](#opening-files-for-reading) - [Opening Files for Writing and Updating](#opening-files-for-writing-and-updating) - [Deleting Files](#deleting-files) - [File Types](#file-types) - [File with txt Extension](#file-with-txt-extension) - [File with json Extension](#file-with-json-extension) - [Changing JSON to Dictionary](#changing-json-to-dictionary) - [Changing Dictionary to JSON](#changing-dictionary-to-json) - [Saving as JSON File](#saving-as-json-file) - [File with csv Extension](#file-with-csv-extension) - [File with xlsx Extension](#file-with-xlsx-extension) - [File with xml Extension](#file-with-xml-extension) - [💻 Exercises: Day 19](#-exercises-day-19) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 19 ## File Handling So far we have seen different Python data types. We usually store our data in different file formats. In addition to handling files, we will also see different file formats(.txt, .json, .xml, .csv, .tsv, .excel) in this section. First, let us get familiar with handling files with common file format(.txt). File handling is an import part of programming which allows us to create, read, update and delete files. In Python to handle data we use _open()_ built-in function. ```py # Syntax open('filename', mode) # mode(r, a, w, x, t,b) could be to read, write, update ``` - "r" - Read - Default value. Opens a file for reading, it returns an error if the file does not exist - "a" - Append - Opens a file for appending, creates the file if it does not exist - "w" - Write - Opens a file for writing, creates the file if it does not exist - "x" - Create - Creates the specified file, returns an error if the file exists - "t" - Text - Default value. Text mode - "b" - Binary - Binary mode (e.g. images) ### Opening Files for Reading The default mode of _open_ is reading, so we do not have to specify 'r' or 'rt'. I have created and saved a file named reading_file_example.txt in the files directory. Let us see how it is done: ```py f = open('./files/reading_file_example.txt') print(f) # <_io.TextIOWrapper name='./files/reading_file_example.txt' mode='r' encoding='UTF-8'> ``` As you can see in the example above, I printed the opened file and it gave some information about it. Opened file has different reading methods: _read()_, _readline_, _readlines_. An opened file has to be closed with _close()_ method. - _read()_: read the whole text as string. If we want to limit the number of characters we want to read, we can limit it by passing int value to the *read(number)* method. ```py f = open('./files/reading_file_example.txt') txt = f.read() print(type(txt)) print(txt) f.close() ``` ```sh # output This is an example to show how to open a file and read. This is the second line of the text. ``` Instead of printing all the text, let us print the first 10 characters of the text file. ```py f = open('./files/reading_file_example.txt') txt = f.read(10) print(type(txt)) print(txt) f.close() ``` ```sh # output This is an ``` - _readline()_: read only the first line ```py f = open('./files/reading_file_example.txt') line = f.readline() print(type(line)) print(line) f.close() ``` ```sh # output This is an example to show how to open a file and read. ``` - _readlines()_: read all the text line by line and returns a list of lines ```py f = open('./files/reading_file_example.txt') lines = f.readlines() print(type(lines)) print(lines) f.close() ``` ```sh # output ['This is an example to show how to open a file and read.\n', 'This is the second line of the text.'] ``` Another way to get all the lines as a list is using _splitlines()_: ```py f = open('./files/reading_file_example.txt') lines = f.read().splitlines() print(type(lines)) print(lines) f.close() ``` ```sh # output ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` After we open a file, we should close it. There is a high tendency of forgetting to close them. There is a new way of opening files using _with_ - closes the files by itself. Let us rewrite the the previous example with the _with_ method: ```py with open('./files/reading_file_example.txt') as f: lines = f.read().splitlines() print(type(lines)) print(lines) ``` ```sh # output ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` ### Opening Files for Writing and Updating To write to an existing file, we must add a mode as parameter to the _open()_ function: - "a" - append - will append to the end of the file, if the file does not exist it creates a new file. - "w" - write - will overwrite any existing content, if the file does not exist it creates. Let us append some text to the file we have been reading: ```py with open('./files/reading_file_example.txt','a') as f: f.write('This text has to be appended at the end') ``` The method below creates a new file, if the file does not exist: ```py with open('./files/writing_file_example.txt','w') as f: f.write('This text will be written in a newly created file') ``` ### Deleting Files We have seen in previous section, how to make and remove a directory using _os_ module. Again now, if we want to remove a file we use _os_ module. ```py import os os.remove('./files/example.txt') ``` If the file does not exist, the remove method will raise an error, so it is good to use a condition like this: ```py import os if os.path.exists('./files/example.txt'): os.remove('./files/example.txt') else: print('The file does not exist') ``` ## File Types ### File with txt Extension File with _txt_ extension is a very common form of data and we have covered it in the previous section. Let us move to the JSON file ### File with json Extension JSON stands for JavaScript Object Notation. Actually, it is a stringified JavaScript object or Python dictionary. _Example:_ ```py # dictionary person_dct= { "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScrip", "React","Python"] } # JSON: A string form a dictionary person_json = "{'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']}" # we use three quotes and make it multiple line to make it more readable person_json = '''{ "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScrip", "React","Python"] }''' ``` ### Changing JSON to Dictionary To change a JSON to a dictionary, first we import the json module and then we use _loads_ method. ```py import json # JSON person_json = '''{ "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] }''' # let's change JSON to dictionary person_dct = json.loads(person_json) print(type(person_dct)) print(person_dct) print(person_dct['name']) ``` ```sh # output {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']} Asabeneh ``` ### Changing Dictionary to JSON To change a dictionary to a JSON we use _dumps_ method from the json module. ```py import json # python dictionary person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] } # let's convert it to json person_json = json.dumps(person, indent=4) # indent could be 2, 4, 8. It beautifies the json print(type(person_json)) print(person_json) ``` ```sh # output # when you print it, it does not have the quote, but actually it is a string # JSON does not have type, it is a string type. { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": [ "JavaScrip", "React", "Python" ] } ``` ### Saving as JSON File We can also save our data as a json file. Let us save it as a json file using the following steps. For writing a json file, we use the json.dump() method, it can take dictionary, output file, ensure_ascii and indent. ```py import json # python dictionary person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` In the code above, we use encoding and indentation. Indentation makes the json file easy to read. ### File with csv Extension CSV stands for comma separated values. CSV is a simple file format used to store tabular data, such as a spreadsheet or database. CSV is a very common data format in data science. **Example:** ```csv "name","country","city","skills" "Asabeneh","Finland","Helsinki","JavaScript" ``` **Example:** ```py import csv with open('./files/csv_example.csv') as f: csv_reader = csv.reader(f, delimiter=',') # we use, reader method to read csv line_count = 0 for row in csv_reader: if line_count == 0: print(f'Column names are :{", ".join(row)}') line_count += 1 else: print( f'\t{row[0]} is a teachers. He lives in {row[1]}, {row[2]}.') line_count += 1 print(f'Number of lines: {line_count}') ``` ```sh # output: Column names are :name, country, city, skills Number of lines: 1 Asabeneh is a teacher. He lives in Finland, Helsinki. Number of lines: 2 ``` ### File with xlsx Extension To read excel files we need to install _xlrd_ package. We will cover this after we cover package installing using pip. ```py import xlrd excel_book = xlrd.open_workbook('sample.xls') print(excel_book.nsheets) print(excel_book.sheet_names) ``` ### File with xml Extension XML is another structured data format which looks like HTML. In XML the tags are not predefined. The first line is an XML declaration. The person tag is the root of the XML. The person has a gender attribute. **Example:XML** ```xml Asabeneh Finland Helsinki JavaScrip React Python ``` For more information on how to read an XML file check the [documentation](https://docs.python.org/2/library/xml.etree.elementtree.html) ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Root tag:', root.tag) print('Attribute:', root.attrib) for child in root: print('field: ', child.tag) ``` ```sh # output Root tag: person Attribute: {'gender': 'male'} field: name field: country field: city field: skills ``` 🌕 You are making a big progress. Maintain your momentum, keep the good work. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 19 ### Exercises: Level 1 1. Write a function which count number of lines and number of words in a text. All the files are in the data the folder: 1) Read obama_speech.txt file and count number of lines and words 2) Read michelle_obama_speech.txt file and count number of lines and words 3) Read donald_speech.txt file and count number of lines and words 4) Read melina_trump_speech.txt file and count number of lines and words 2. Read the countries_data.json data file in data directory, create a function that finds the ten most spoken languages ```py # Your output should look like this print(most_spoken_languages(filename='./data/countries_data.json', 10)) [(91, 'English'), (45, 'French'), (25, 'Arabic'), (24, 'Spanish'), (9, 'Russian'), (9, 'Portuguese'), (8, 'Dutch'), (7, 'German'), (5, 'Chinese'), (4, 'Swahili'), (4, 'Serbian')] # Your output should look like this print(most_spoken_languages(filename='./data/countries_data.json', 3)) [(91, 'English'), (45, 'French'), (25, 'Arabic')] ``` 3. Read the countries_data.json data file in data directory, create a function that creates a list of the ten most populated countries ```py # Your output should look like this print(most_populated_countries(filename='./data/countries_data.json', 10)) [ {'country': 'China', 'population': 1377422166}, {'country': 'India', 'population': 1295210000}, {'country': 'United States of America', 'population': 323947000}, {'country': 'Indonesia', 'population': 258705000}, {'country': 'Brazil', 'population': 206135893}, {'country': 'Pakistan', 'population': 194125062}, {'country': 'Nigeria', 'population': 186988000}, {'country': 'Bangladesh', 'population': 161006790}, {'country': 'Russian Federation', 'population': 146599183}, {'country': 'Japan', 'population': 126960000} ] # Your output should look like this print(most_populated_countries(filename='./data/countries_data.json', 3)) [ {'country': 'China', 'population': 1377422166}, {'country': 'India', 'population': 1295210000}, {'country': 'United States of America', 'population': 323947000} ] ``` ### Exercises: Level 2 1. Extract all incoming email addresses as a list from the email_exchange_big.txt file. 2. Find the most common words in the English language. Call the name of your function find_most_common_words, it will take two parameters - a string or a file and a positive integer, indicating the number of words. Your function will return an array of tuples in descending order. Check the output ```py # Your output should look like this print(find_most_common_words('sample.txt', 10)) [(10, 'the'), (8, 'be'), (6, 'to'), (6, 'of'), (5, 'and'), (4, 'a'), (4, 'in'), (3, 'that'), (2, 'have'), (2, 'I')] # Your output should look like this print(find_most_common_words('sample.txt', 5)) [(10, 'the'), (8, 'be'), (6, 'to'), (6, 'of'), (5, 'and')] ``` 3. Use the function, find_most_frequent_words to find: 1) The ten most frequent words used in [Obama's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/obama_speech.txt) 2) The ten most frequent words used in [Michelle's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/michelle_obama_speech.txt) 3) The ten most frequent words used in [Trump's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/donald_speech.txt) 4) The ten most frequent words used in [Melina's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/melina_trump_speech.txt) 4. Write a python application that checks similarity between two texts. It takes a file or a string as a parameter and it will evaluate the similarity of the two texts. For instance check the similarity between the transcripts of [Michelle's](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/michelle_obama_speech.txt) and [Melina's](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/melina_trump_speech.txt) speech. You may need a couple of functions, function to clean the text(clean_text), function to remove support words(remove_support_words) and finally to check the similarity(check_text_similarity). List of [stop words](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/stop_words.py) are in the data directory 5. Find the 10 most repeated words in the romeo_and_juliet.txt 6. Read the [hacker news csv](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/hacker_news.csv) file and find out: 1) Count the number of lines containing python or Python 2) Count the number lines containing JavaScript, javascript or Javascript 3) Count the number lines containing Java and not JavaScript 🎉 CONGRATULATIONS ! 🎉 [<< Day 18](../18_Day_Regular_expressions/18_regular_expressions.md) | [Day 20 >>](../20_Day_Python_package_manager/20_python_package_manager.md) ================================================ FILE: 20_Day_Python_package_manager/20_python_package_manager.md ================================================

30 Days Of Python: Day 20 - PIP

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 19](../19_Day_File_handling/19_file_handling.md) | [Day 21 >>](../21_Day_Classes_and_objects/21_classes_and_objects.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 20](#-day-20) - [Python PIP - Python Package Manager](#python-pip---python-package-manager) - [What is PIP ?](#what-is-pip-) - [Installing PIP](#installing-pip) - [Installing packages using pip](#installing-packages-using-pip) - [Uninstalling Packages](#uninstalling-packages) - [List of Packages](#list-of-packages) - [Show Package](#show-package) - [PIP Freeze](#pip-freeze) - [Reading from URL](#reading-from-url) - [Creating a Package](#creating-a-package) - [Further Information About Packages](#further-information-about-packages) - [Exercises: Day 20](#exercises-day-20) # 📘 Day 20 ## Python PIP - Python Package Manager ### What is PIP ? PIP stands for Preferred installer program. We use _pip_ to install different Python packages. Package is a Python module that can contain one or more modules or other packages. A module or modules that we can install to our application is a package. In programming, we do not have to write every utility program, instead we install packages and import them to our applications. ### Installing PIP If you did not install pip, let us install it now. Go to your terminal or command prompt and copy and paste this: ```sh asabeneh@Asabeneh:~$ pip install pip ``` Check if pip is installed by writing ```sh pip --version ``` ```py asabeneh@Asabeneh:~$ pip --version pip 21.1.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.9.6) ``` As you can see, I am using pip version 21.1.3, if you see some number a bit below or above that, means you have pip installed. Let us check some of the packages used in the Python community for different purposes. Just to let you know that there are lots of packages available for use with different applications. ### Installing packages using pip Let us try to install _numpy_, called numeric python. It is one of the most popular packages in machine learning and data science community. - NumPy is the fundamental package for scientific computing with Python. It contains among other things: - a powerful N-dimensional array object - sophisticated (broadcasting) functions - tools for integrating C/C++ and Fortran code - useful linear algebra, Fourier transform, and random number capabilities ```sh asabeneh@Asabeneh:~$ pip install numpy ``` Let us start using numpy. Open your python interactive shell, write python and then import numpy as follows: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.version.version '1.20.1' >>> lst = [1, 2, 3,4, 5] >>> np_arr = numpy.array(lst) >>> np_arr array([1, 2, 3, 4, 5]) >>> len(np_arr) 5 >>> np_arr * 2 array([ 2, 4, 6, 8, 10]) >>> np_arr + 2 array([3, 4, 5, 6, 7]) >>> ``` Pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. Let us install the big brother of numpy, _pandas_: ```sh asabeneh@Asabeneh:~$ pip install pandas ``` ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pandas ``` This section is not about numpy nor pandas, here we are trying to learn how to install packages and how to import them. If it is needed, we will talk about different packages in other sections. Let us import a web browser module, which can help us to open any website. We do not need to install this module, it is already installed by default with Python 3. For instance if you like to open any number of websites at any time or if you like to schedule something, this _webbrowser_ module can be used. ```py import webbrowser # web browser module to open websites # list of urls: python url_lists = [ 'http://www.python.org', 'https://www.linkedin.com/in/asabeneh/', 'https://github.com/Asabeneh', 'https://twitter.com/Asabeneh', ] # opens the above list of websites in a different tab for url in url_lists: webbrowser.open_new_tab(url) ``` ### Uninstalling Packages If you do not like to keep the installed packages, you can remove them using the following command. ```sh pip uninstall packagename ``` ### List of Packages To see the installed packages on our machine. We can use pip followed by list. ```sh pip list ``` ### Show Package To show information about a package ```sh pip show packagename ``` ```sh asabeneh@Asabeneh:~$ pip show pandas Name: pandas Version: 1.2.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: python-dateutil, pytz, numpy Required-by: ``` If we want even more details, just add --verbose ```sh asabeneh@Asabeneh:~$ pip show --verbose pandas Name: pandas Version: 1.2.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: numpy, pytz, python-dateutil Required-by: Metadata-Version: 2.1 Installer: pip Classifiers: Development Status :: 5 - Production/Stable Environment :: Console Operating System :: OS Independent Intended Audience :: Science/Research Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Cython Topic :: Scientific/Engineering Entry-points: [pandas_plotting_backends] matplotlib = pandas:plotting._matplotlib ``` ### PIP Freeze Generate installed Python packages with their version and the output is suitable to use it in a requirements file. A requirements.txt file is a file that should contain all the installed Python packages in a Python project. ```sh asabeneh@Asabeneh:~$ pip freeze docutils==0.11 Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 ``` The pip freeze gave us the packages used, installed and their version. We use it with requirements.txt file for deployment. ### Reading from URL By now you are familiar with how to read or write on a file located on you local machine. Sometimes, we would like to read from a website using url or from an API. API stands for Application Program Interface. It is a means to exchange structured data between servers primarily as json data. To open a network connection, we need a package called _requests_ - it allows to open a network connection and to implement CRUD(create, read, update and delete) operations. In this section, we will cover only reading ore getting part of a CRUD. Let us install _requests_: ```py asabeneh@Asabeneh:~$ pip install requests ``` We will see _get_, _status_code_, _headers_, _text_ and _json_ methods in _requests_ module: - _get()_: to open a network and fetch data from url - it returns a response object - _status_code_: After we fetched data, we can check the status of the operation (success, error, etc) - _headers_: To check the header types - _text_: to extract the text from the fetched response object - _json_: to extract json data Let's read a txt file from this website, https://www.w3.org/TR/PNG/iso_8859-1.txt. ```py import requests # importing the request module url = 'https://www.w3.org/TR/PNG/iso_8859-1.txt' # text from a website response = requests.get(url) # opening a network and fetching a data print(response) print(response.status_code) # status code, success:200 print(response.headers) # headers information print(response.text) # gives all the text from the page ``` ```sh 200 {'date': 'Sun, 08 Dec 2019 18:00:31 GMT', 'last-modified': 'Fri, 07 Nov 2003 05:51:11 GMT', 'etag': '"17e9-3cb82080711c0;50c0b26855880-gzip"', 'accept-ranges': 'bytes', 'cache-control': 'max-age=31536000', 'expires': 'Mon, 07 Dec 2020 18:00:31 GMT', 'vary': 'Accept-Encoding', 'content-encoding': 'gzip', 'access-control-allow-origin': '*', 'content-length': '1616', 'content-type': 'text/plain', 'strict-transport-security': 'max-age=15552000; includeSubdomains; preload', 'content-security-policy': 'upgrade-insecure-requests'} ``` - Let us read from an API. API stands for Application Program Interface. It is a means to exchange structure data between servers primarily a json data. An example of an API:https://restcountries.eu/rest/v2/all. Let us read this API using _requests_ module. ```py import requests url = 'https://restcountries.eu/rest/v2/all' # countries api response = requests.get(url) # opening a network and fetching a data print(response) # response object print(response.status_code) # status code, success:200 countries = response.json() print(countries[:1]) # we sliced only the first country, remove the slicing to see all countries ``` ```sh 200 [{'alpha2Code': 'AF', 'alpha3Code': 'AFG', 'altSpellings': ['AF', 'Afġānistān'], 'area': 652230.0, 'borders': ['IRN', 'PAK', 'TKM', 'UZB', 'TJK', 'CHN'], 'callingCodes': ['93'], 'capital': 'Kabul', 'cioc': 'AFG', 'currencies': [{'code': 'AFN', 'name': 'Afghan afghani', 'symbol': '؋'}], 'demonym': 'Afghan', 'flag': 'https://restcountries.eu/data/afg.svg', 'gini': 27.8, 'languages': [{'iso639_1': 'ps', 'iso639_2': 'pus', 'name': 'Pashto', 'nativeName': 'پښتو'}, {'iso639_1': 'uz', 'iso639_2': 'uzb', 'name': 'Uzbek', 'nativeName': 'Oʻzbek'}, {'iso639_1': 'tk', 'iso639_2': 'tuk', 'name': 'Turkmen', 'nativeName': 'Türkmen'}], 'latlng': [33.0, 65.0], 'name': 'Afghanistan', 'nativeName': 'افغانستان', 'numericCode': '004', 'population': 27657145, 'region': 'Asia', 'regionalBlocs': [{'acronym': 'SAARC', 'name': 'South Asian Association for Regional Cooperation', 'otherAcronyms': [], 'otherNames': []}], 'subregion': 'Southern Asia', 'timezones': ['UTC+04:30'], 'topLevelDomain': ['.af'], 'translations': {'br': 'Afeganistão', 'de': 'Afghanistan', 'es': 'Afganistán', 'fa': 'افغانستان', 'fr': 'Afghanistan', 'hr': 'Afganistan', 'it': 'Afghanistan', 'ja': 'アフガニスタン', 'nl': 'Afghanistan', 'pt': 'Afeganistão'}}] ``` We use _json()_ method from response object, if the we are fetching JSON data. For txt, html, xml and other file formats we can use _text_. ### Creating a Package We organize a large number of files in different folders and sub-folders based on some criteria, so that we can find and manage them easily. As you know, a module can contain multiple objects, such as classes, functions, etc. A package can contain one or more relevant modules. A package is actually a folder containing one or more module files. Let us create a package named mypackage, using the following steps: Create a new folder named mypackage inside 30DaysOfPython folder Create an empty **__init__**.py file in the mypackage folder. Create modules arithmetic.py and greet.py with following code: ```py # mypackage/arithmetics.py # arithmetics.py def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ``` ```py # mypackage/greet.py # greet.py def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ``` The folder structure of your package should look like this: ```sh ─ mypackage ├── __init__.py ├── arithmetic.py └── greet.py ``` Now let's open the python interactive shell and try the package we have created: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from mypackage import arithmetics >>> arithmetics.add_numbers(1, 2, 3, 5) 11 >>> arithmetics.subtract(5, 3) 2 >>> arithmetics.multiple(5, 3) 15 >>> arithmetics.division(5, 3) 1.6666666666666667 >>> arithmetics.remainder(5, 3) 2 >>> arithmetics.power(5, 3) 125 >>> from mypackage import greet >>> greet.greet_person('Asabeneh', 'Yetayeh') 'Asabeneh Yetayeh, welcome to 30DaysOfPython Challenge!' >>> ``` As you can see our package works perfectly. The package folder contains a special file called **__init__**.py - it stores the package's content. If we put **__init__**.py in the package folder, python start recognizes it as a package. The **__init__**.py exposes specified resources from its modules to be imported to other python files. An empty **__init__**.py file makes all functions available when a package is imported. The **__init__**.py is essential for the folder to be recognized by Python as a package. ### Further Information About Packages - Database - SQLAlchemy or SQLObject - Object oriented access to several different database systems - _pip install SQLAlchemy_ - Web Development - Django - High-level web framework. - _pip install django_ - Flask - micro framework for Python based on Werkzeug, Jinja 2. (It's BSD licensed) - _pip install flask_ - HTML Parser - [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) - HTML/XML parser designed for quick turnaround projects like screen-scraping, will accept bad markup. - _pip install beautifulsoup4_ - PyQuery - implements jQuery in Python; faster than BeautifulSoup, apparently. - XML Processing - ElementTree - The Element type is a simple but flexible container object, designed to store hierarchical data structures, such as simplified XML infosets, in memory. --Note: Python 2.5 and up has ElementTree in the Standard Library - GUI - PyQt - Bindings for the cross-platform Qt framework. - TkInter - The traditional Python user interface toolkit. - Data Analysis, Data Science and Machine learning - Numpy: Numpy(numeric python) is known as one of the most popular machine learning library in Python. - Pandas: is a data analysis, data science and a machine learning library in Python that provides data structures of high-level and a wide variety of tools for analysis. - SciPy: SciPy is a machine learning library for application developers and engineers. SciPy library contains modules for optimization, linear algebra, integration, image processing, and statistics. - Scikit-Learn: It is NumPy and SciPy. It is considered as one of the best libraries for working with complex data. - TensorFlow: is a machine learning library built by Google. - Keras: is considered as one of the coolest machine learning libraries in Python. It provides an easier mechanism to express neural networks. Keras also provides some of the best utilities for compiling models, processing data-sets, visualization of graphs, and much more. - Network: - requests: is a package which we can use to send requests to a server(GET, POST, DELETE, PUT) - _pip install requests_ 🌕 You are always progressing and you are a head of 20 steps to your way to greatness. Now do some exercises for your brain and muscles. ## Exercises: Day 20 1. Read this url and find the 10 most frequent words. romeo_and_juliet = 'http://www.gutenberg.org/files/1112/1112.txt' 2. Read the cats API and cats_api = 'https://api.thecatapi.com/v1/breeds' and find : 1. the min, max, mean, median, standard deviation of cats' weight in metric units. 2. the min, max, mean, median, standard deviation of cats' lifespan in years. 3. Create a frequency table of country and breed of cats 3. Read the [countries API](https://restcountries.eu/rest/v2/all) and find 1. the 10 largest countries 2. the 10 most spoken languages 3. the total number of languages in the countries API 4. UCI is one of the most common places to get data sets for data science and machine learning. Read the content of UCL (https://archive.ics.uci.edu/ml/datasets.php). Without additional libraries it will be difficult, so you may try it with BeautifulSoup4 🎉 CONGRATULATIONS ! 🎉 [<< Day 19](../19_Day_File_handling/19_file_handling.md) | [Day 21 >>](../21_Day_Classes_and_objects/21_classes_and_objects.md) ================================================ FILE: 20_Day_Python_package_manager/__init__.py ================================================ ================================================ FILE: 20_Day_Python_package_manager/arithmetic.py ================================================ def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ================================================ FILE: 20_Day_Python_package_manager/greet.py ================================================ def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ================================================ FILE: 21_Day_Classes_and_objects/21_classes_and_objects.md ================================================

30 Days Of Python: Day 21 - Classes and Objects

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 20](../20_Day_Python_package_manager/20_python_package_manager.md) | [Day 22 >>](../22_Day_Web_scraping/22_web_scraping.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 21](#-day-21) - [Classes and Objects](#classes-and-objects) - [Creating a Class](#creating-a-class) - [Creating an Object](#creating-an-object) - [Class Constructor](#class-constructor) - [Object Methods](#object-methods) - [Object Default Methods](#object-default-methods) - [Method to Modify Class Default Values](#method-to-modify-class-default-values) - [Inheritance](#inheritance) - [Overriding parent method](#overriding-parent-method) - [💻 Exercises: Day 21](#-exercises-day-21) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 21 ## Classes and Objects Python is an object oriented programming language. Everything in Python is an object, with its properties and methods. A number, string, list, dictionary, tuple, set etc. used in a program is an object of a corresponding built-in class. We create class to create an object. A class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class. We have been working with classes and objects right from the beginning of this challenge unknowingly. Every element in a Python program is an object of a class. Let us check if everything in python is a class: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> num = 10 >>> type(num) >>> string = 'string' >>> type(string) >>> boolean = True >>> type(boolean) >>> lst = [] >>> type(lst) >>> tpl = () >>> type(tpl) >>> set1 = set() >>> type(set1) >>> dct = {} >>> type(dct) ``` ### Creating a Class To create a class we need the key word **class** followed by the name and colon. Class name should be **CamelCase**. ```sh # syntax class ClassName: code goes here ``` **Example:** ```py class Person: pass print(Person) ``` ```sh <__main__.Person object at 0x10804e510> ``` ### Creating an Object We can create an object by calling the class. ```py p = Person() print(p) ``` ### Class Constructor In the examples above, we have created an object from the Person class. However, a class without a constructor is not really useful in real applications. Let us use constructor function to make our class more useful. Like the constructor function in Java or JavaScript, Python has also a built-in **__init__**() constructor function. The **__init__** constructor function has self parameter which is a reference to the current instance of the class **Examples:** ```py class Person: def __init__ (self, name): # self allows to attach parameter to the class self.name =name p = Person('Asabeneh') print(p.name) print(p) ``` ```sh # output Asabeneh <__main__.Person object at 0x2abf46907e80> ``` Let us add more parameters to the constructor function. ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.firstname) print(p.lastname) print(p.age) print(p.country) print(p.city) ``` ```sh # output Asabeneh Yetayeh 250 Finland Helsinki ``` ### Object Methods Objects can have methods. The methods are functions which belong to the object. **Example:** ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} years old. He lives in {self.city}, {self.country}' p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.person_info()) ``` ```sh # output Asabeneh Yetayeh is 250 years old. He lives in Helsinki, Finland ``` ### Object Default Methods Sometimes, you may want to have default values for your object methods. If we give default values for the parameters in the constructor, we can avoid errors when we call or instantiate our class without parameters. Let's see how it looks: **Example:** ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} years old. He lives in {self.city}, {self.country}.' p1 = Person() print(p1.person_info()) p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) ``` ```sh # output Asabeneh Yetayeh is 250 years old. He lives in Helsinki, Finland. John Doe is 30 years old. He lives in Noman city, Nomanland. ``` ### Method to Modify Class Default Values In the example below, the person class, all the constructor parameters have default values. In addition to that, we have skills parameter, which we can access using a method. Let us create add_skill method to add skills to the skills list. ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city self.skills = [] def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} years old. He lives in {self.city}, {self.country}.' def add_skill(self, skill): self.skills.append(skill) p1 = Person() print(p1.person_info()) p1.add_skill('HTML') p1.add_skill('CSS') p1.add_skill('JavaScript') p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) print(p1.skills) print(p2.skills) ``` ```sh # output Asabeneh Yetayeh is 250 years old. He lives in Helsinki, Finland. John Doe is 30 years old. He lives in Noman city, Nomanland. ['HTML', 'CSS', 'JavaScript'] [] ``` ### Inheritance Using inheritance we can reuse parent class code. Inheritance allows us to define a class that inherits all the methods and properties from parent class. The parent class or super or base class is the class which gives all the methods and properties. Child class is the class that inherits from another or parent class. Let us create a student class by inheriting from person class. ```py class Student(Person): pass s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh output Eyob Yetayeh is 30 years old. He lives in Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam is 28 years old. He lives in Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` We did not call the **__init__**() constructor in the child class. If we didn't call it then we can still access all the properties from the parent. But if we do call the constructor we can access the parent properties by calling _super_. We can add a new method to the child or we can override the parent class methods by creating the same method name in the child class. When we add the **__init__**() function, the child class will no longer inherit the parent's **__init__**() function. ### Overriding parent method ```py class Student(Person): def __init__ (self, firstname='Asabeneh', lastname='Yetayeh',age=250, country='Finland', city='Helsinki', gender='male'): self.gender = gender super().__init__(firstname, lastname,age, country, city) def person_info(self): gender = 'He' if self.gender =='male' else 'She' return f'{self.firstname} {self.lastname} is {self.age} years old. {gender} lives in {self.city}, {self.country}.' s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki','male') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo', 'female') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh Eyob Yetayeh is 30 years old. He lives in Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam is 28 years old. She lives in Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` We can use super() built-in function or the parent name Person to automatically inherit the methods and properties from its parent. In the example above we override the parent method. The child method has a different feature, it can identify, if the gender is male or female and assign the proper pronoun(He/She). 🌕 Now, you are fully charged with a super power of programming. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 21 ### Exercises: Level 1 1. Python has the module called _statistics_ and we can use this module to do all the statistical calculations. However, to learn how to make function and reuse function let us try to develop a program, which calculates the measure of central tendency of a sample (mean, median, mode) and measure of variability (range, variance, standard deviation). In addition to those measures, find the min, max, count, percentile, and frequency distribution of the sample. You can create a class called Statistics and create all the functions that do statistical calculations as methods for the Statistics class. Check the output below. ```py ages = [31, 26, 34, 37, 27, 26, 32, 32, 26, 27, 27, 24, 32, 33, 27, 25, 26, 38, 37, 31, 34, 24, 33, 29, 26] print('Count:', data.count()) # 25 print('Sum: ', data.sum()) # 744 print('Min: ', data.min()) # 24 print('Max: ', data.max()) # 38 print('Range: ', data.range()) # 14 print('Mean: ', data.mean()) # 30 print('Median: ', data.median()) # 29 print('Mode: ', data.mode()) # {'mode': 26, 'count': 5} print('Standard Deviation: ', data.std()) # 4.2 print('Variance: ', data.var()) # 17.5 print('Frequency Distribution: ', data.freq_dist()) # [(20.0, 26), (16.0, 27), (12.0, 32), (8.0, 37), (8.0, 34), (8.0, 33), (8.0, 31), (8.0, 24), (4.0, 38), (4.0, 29), (4.0, 25)] ``` ```sh # you output should look like this print(data.describe()) Count: 25 Sum: 744 Min: 24 Max: 38 Range: 14 Mean: 30 Median: 29 Mode: (26, 5) Variance: 17.5 Standard Deviation: 4.2 Frequency Distribution: [(20.0, 26), (16.0, 27), (12.0, 32), (8.0, 37), (8.0, 34), (8.0, 33), (8.0, 31), (8.0, 24), (4.0, 38), (4.0, 29), (4.0, 25)] ``` ### Exercises: Level 2 1. Create a class called PersonAccount. It has firstname, lastname, incomes, expenses properties and it has total_income, total_expense, account_info, add_income, add_expense and account_balance methods. Incomes is a set of incomes and its description. The same goes for expenses. 🎉 CONGRATULATIONS ! 🎉 [<< Day 20](../20_Day_Python_package_manager/20_python_package_manager.md) | [Day 22 >>](../22_Day_Web_scraping/22_web_scraping.md) ================================================ FILE: 22_Day_Web_scraping/22_web_scraping.md ================================================

30 Days Of Python: Day 22 - Web Scraping

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 21](../21_Day_Classes_and_objects/21_classes_and_objects.md) | [Day 23 >>](../23_Day_Virtual_environment/23_virtual_environment.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 22](#-day-22) - [Python Web Scraping](#python-web-scraping) - [What is Web Scrapping](#what-is-web-scrapping) - [💻 Exercises: Day 22](#-exercises-day-22) # 📘 Day 22 ## Python Web Scraping ### What is Web Scrapping The internet is full of huge amount of data which can be used for different purposes. To collect this data we need to know how to scrape data from a website. Web scraping is the process of extracting and collecting data from websites and storing it on a local machine or in a database. In this section, we will use beautifulsoup and requests package to scrape data. The package version we are using is beautifulsoup 4. To start scraping websites you need _requests_, _beautifoulSoup4_ and a _website_. ```sh pip install requests pip install beautifulsoup4 ``` To scrape data from websites, basic understanding of HTML tags and CSS selectors is needed. We target content from a website using HTML tags, classes or/and ids. Let us import the requests and BeautifulSoup module ```py import requests from bs4 import BeautifulSoup ``` Let us declare url variable for the website which we are going to scrape. ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' # Lets use the requests get method to fetch the data from url response = requests.get(url) # lets check the status status = response.status_code print(status) # 200 means the fetching was successful ``` ```sh 200 ``` Using beautifulSoup to parse content from the page ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' response = requests.get(url) content = response.content # we get all the content from the website soup = BeautifulSoup(content, 'html.parser') # beautiful soup will give a chance to parse print(soup.title) # UCI Machine Learning Repository: Data Sets print(soup.title.get_text()) # UCI Machine Learning Repository: Data Sets print(soup.body) # gives the whole page on the website print(response.status_code) tables = soup.find_all('table', {'cellpadding':'3'}) # We are targeting the table with cellpadding attribute with the value of 3 # We can select using id, class or HTML tag , for more information check the beautifulsoup doc table = tables[0] # the result is a list, we are taking out data from it for td in table.find('tr').find_all('td'): print(td.text) ``` If you run this code, you can see that the extraction is half done. You can continue doing it because it is part of exercise 1. For reference check the [beautifulsoup documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#quick-start) 🌕 You are so special, you are progressing everyday. You are left with only eight days to your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises: Day 22 1. Scrape the following website and store the data as json file(url = 'http://www.bu.edu/president/boston-university-facts-stats/'). 1. Extract the table in this url (https://archive.ics.uci.edu/ml/datasets.php) and change it to a json file 2. Scrape the presidents table and store the data as json(https://en.wikipedia.org/wiki/List_of_presidents_of_the_United_States). The table is not very structured and the scrapping may take very long time. 🎉 CONGRATULATIONS ! 🎉 [<< Day 21](../21_Day_Web_scraping/21_class_and_object.md) | [Day 23 >>](../23_Day_Virtual_environment/23_virtual_environment.md) ================================================ FILE: 22_Day_Web_scraping/scrapped_data.json ================================================ [ { "category": "Community", "Student Body": "34,589", "Living Alumni": "398,195", "Total Employees": "10,517", "Faculty": "4,171", "Nondegree Students": "2,008", "Graduate & Professional Students": "15,645", "Undergraduate Students": "16,936" }, { "category": "Campus", "Classrooms": "834", "Buildings": "370", "Laboratories": "1,681", "Libraries": "21", "Campus Area (acres)": "169" }, { "category": "Academics", "Study Abroad Programs": "70+", "Average Class Size": "27", "Faculty": "4,171", "Student/Faculty Ratio": "10:1", "Schools and Colleges": "17", "Programs of Study": "300+" }, { "category": "Grant & Contract Awards", "Research Awards": "$574.1M", "BMC Clinical Research Grants": "$88.0M" }, { "category": "Undergraduate Financial Aid & Scholarships", "Average Total Need-Based Financial Aid": "$46,252", "Average Need-Based Grant/Scholarship": "$40,969", "Grants & Scholarships (need-based)": "$275.6M", "Grants & Scholarships (non-need-based)": "$28.7M" }, { "category": "Student Life", "Community Service Hours": "1.6M+", "Alternative Service Breaks Participants": "300+", "BU on Social": "new accounts daily", "Cultural & Religious Organizations": "60+", "Community Service & Justice Organizations": "80+", "Academic & Professional Organizations": "120+", "Art & Performance Organizations": "60+", "Student Organizations": "450+", "First-Year Student Outreach Project Volunteers": "800+" }, { "category": "Research", "Faculty Publications": "6,000+", "Student UROP Participants": "450+", "Centers & Institutes": "130+" }, { "category": "International Community", "Global Initiatives": "300+", "Cultural Student Groups": "40+", "Alumni Countries": "180+", "International Students": "11,000+" }, { "category": "Athletics", "Intramural Sports & Tournaments": "15+", "Club and Intramural Sports Participants": "7,000+", "Club Sports Teams": "50", "Varsity Sports": "24" } ] ================================================ FILE: 23_Day_Virtual_environment/23_virtual_environment.md ================================================

30 Days Of Python: Day 23 - Virtual Environment

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 22](../22_Day_Web_scraping/22_web_scraping.md) | [Day 24 >>](../24_Day_Statistics/24_statistics.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 23](#-day-23) - [Setting up Virtual Environments](#setting-up-virtual-environments) - [💻 Exercises: Day 23](#-exercises-day-23) # 📘 Day 23 ## Setting up Virtual Environments To start with project, it would be better to have a virtual environment. Virtual environment can help us to create an isolated or separate environment. This will help us to avoid conflicts in dependencies across projects. If you write pip freeze on your terminal you will see all the installed packages on your computer. If we use virtualenv, we will access only packages which are specific for that project. Open your terminal and install virtualenv ```sh asabeneh@Asabeneh:~$ pip install virtualenv ``` Inside the 30DaysOfPython folder create a flask_project folder. After installing the virtualenv package go to your project folder and create a virtual env by writing: For Mac/Linux: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project\$ virtualenv venv ``` For Windows: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project>python -m venv venv ``` I prefer to call the new project venv, but feel free to name it differently. Let us check if the the venv was created by using ls (or dir for windows command prompt) command. ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ls venv/ ``` Let us activate the virtual environment by writing the following command at our project folder. For Mac/Linux: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ source venv/bin/activate ``` Activation of the virtual environment in Windows may very on Windows Power shell and git bash. For Windows Power Shell: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project> venv\Scripts\activate ``` For Windows Git bash: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project> venv\Scripts\. activate ``` After you write the activation command, your project directory will start with venv. See the example below. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ``` Now, lets check the available packages in this project by writing pip freeze. You will not see any packages. We are going to do a small flask project so let us install flask package to this project. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip install Flask ``` Now, let us write pip freeze to see a list of installed packages in the project: ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 ``` When you finish you should dactivate active project using _deactivate_. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ deactivate ``` The necessary modules to work with flask are installed. Now, your project directory is ready for a flask project. You should include the venv to your .gitignore file not to push it to github. ## 💻 Exercises: Day 23 1. Create a project directory with a virtual environment based on the example given above. 🎉 CONGRATULATIONS ! 🎉 [<< Day 22](../22_Day_Web_scraping/22_web_scraping.md) | [Day 24 >>](../24_Day_Statistics/24_statistics.md) ================================================ FILE: 24_Day_Statistics/24_statistics.md ================================================

30 Days Of Python: Day 24 - Statistics

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 23](../23_Day_Virtual_environment/23_virtual_environment.md) | [Day 25 >>](../25_Day_Pandas/25_pandas.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 24](#-day-24) - [Python for Statistical Analysis](#python-for-statistical-analysis) - [Statistics](#statistics) - [Data](#data) - [Statistics Module](#statistics-module) - [NumPy](#numpy) # 📘 Day 24 ## Python for Statistical Analysis ## Statistics Statistics is the discipline that studies the _collection_, _organization_, _displaying_, _analysing_, _interpretation_ and _presentation_ of data. Statistics is a branch of Mathematics that is recommended to be a prerequisite for data science and machine learning. Statistics is a very broad field but we will focus in this section only on the most relevant part. After completing this challenge, you may go onto the web development, data analysis, machine learning and data science path. Whatever path you may follow, at some point in your career you will get data which you may work on. Having some statistical knowledge will help you to make decisions based on data, _data tells as they say_. ## Data What is data? Data is any set of characters that is gathered and translated for some purpose, usually analysis. It can be any character, including text and numbers, pictures, sound, or video. If data is not put in a context, it doesn't make any sense to a human or computer. To make sense from data we need to work on the data using different tools. The work flow of data analysis, data science or machine learning starts from data. Data can be provided from some data source or it can be created. There are structured and unstructured data. Data can be found in small or big format. Most of the data types we will get have been covered in the file handling section. ## Statistics Module The Python _statistics_ module provides functions for calculating mathematical statistics of numerical data. The module is not intended to be a competitor to third-party libraries such as NumPy, SciPy, or proprietary full-featured statistics packages aimed at professional statisticians such as Minitab, SAS and Matlab. It is aimed at the level of graphing and scientific calculators. # NumPy In the first section we defined Python as a great general-purpose programming language on its own, but with the help of other popular libraries as(numpy, scipy, matplotlib, pandas etc) it becomes a powerful environment for scientific computing. NumPy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with arrays. So far, we have been using vscode but from now on I would recommend using Jupyter Notebook. To access jupyter notebook let's install [anaconda](https://www.anaconda.com/). If you are using anaconda most of the common packages are included and you don't have install packages if you installed anaconda. ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ pip install numpy ``` ## Importing NumPy Jupyter notebook is available if your are in favor of [jupyter notebook](https://github.com/Asabeneh/data-science-for-everyone/blob/master/numpy/numpy.ipynb) ```py # How to import numpy import numpy as np # How to check the version of the numpy package print('numpy:', np.__version__) # Checking the available methods print(dir(np)) ``` ## Creating numpy array using ### Creating int numpy arrays ```py # Creating python List python_list = [1,2,3,4,5] # Checking data types print('Type:', type (python_list)) # # print(python_list) # [1, 2, 3, 4, 5] two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] print(two_dimensional_list) # [[0, 1, 2], [3, 4, 5], [6, 7, 8]] # Creating Numpy(Numerical Python) array from python list numpy_array_from_list = np.array(python_list) print(type (numpy_array_from_list)) # print(numpy_array_from_list) # array([1, 2, 3, 4, 5]) ``` ### Creating float numpy arrays Creating a float numpy array from list with a float data type parameter ```py # Python list python_list = [1,2,3,4,5] numy_array_from_list2 = np.array(python_list, dtype=float) print(numy_array_from_list2) # array([1., 2., 3., 4., 5.]) ``` ### Creating boolean numpy arrays Creating a boolean a numpy array from list ```py numpy_bool_array = np.array([0, 1, -1, 0, 0], dtype=bool) print(numpy_bool_array) # array([False, True, True, False, False]) ``` ### Creating multidimensional array using numpy A numpy array may have one or multiple rows and columns ```py two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] numpy_two_dimensional_list = np.array(two_dimensional_list) print(type (numpy_two_dimensional_list)) print(numpy_two_dimensional_list) ``` ```sh [[0 1 2] [3 4 5] [6 7 8]] ``` ### Converting numpy array to list ```python # We can always convert an array back to a python list using tolist(). np_to_list = numpy_array_from_list.tolist() print(type (np_to_list)) print('one dimensional array:', np_to_list) print('two dimensional array: ', numpy_two_dimensional_list.tolist()) ``` ```sh one dimensional array: [1, 2, 3, 4, 5] two dimensional array: [[0, 1, 2], [3, 4, 5], [6, 7, 8]] ``` ### Creating numpy array from tuple ```py # Numpy array from tuple # Creating tuple in Python python_tuple = (1,2,3,4,5) print(type (python_tuple)) # print('python_tuple: ', python_tuple) # python_tuple: (1, 2, 3, 4, 5) numpy_array_from_tuple = np.array(python_tuple) print(type (numpy_array_from_tuple)) # print('numpy_array_from_tuple: ', numpy_array_from_tuple) # numpy_array_from_tuple: [1 2 3 4 5] ``` ### Shape of numpy array The shape method provide the shape of the array as a tuple. The first is the row and the second is the column. If the array is just one dimensional it returns the size of the array. ```py nums = np.array([1, 2, 3, 4, 5]) print(nums) print('shape of nums: ', nums.shape) numpy_two_dimensional_list = np.array([[0,1,2],[3,4,5],[6,7,8]]) print(numpy_two_dimensional_list) print('shape of numpy_two_dimensional_list: ', numpy_two_dimensional_list.shape) three_by_four_array = np.array([[0, 1, 2, 3], [4,5,6,7], [8,9,10,11]] print(three_by_four_array) print('shape of three_by_four_array: ', three_by_four_array.shape) ``` ```sh [1 2 3 4 5] shape of nums: (5,) [[0 1 2] [3 4 5] [6 7 8]] shape of numpy_two_dimensional_list: (3, 3) (3, 4) ``` ### Data type of numpy array Type of data types: str, int, float, complex, bool, list, None ```py int_lists = [-3, -2, -1, 0, 1, 2,3] int_array = np.array(int_lists) float_array = np.array(int_lists, dtype=float) print(int_array) print(int_array.dtype) print(float_array) print(float_array.dtype) ``` ```sh [-3 -2 -1 0 1 2 3] int64 [-3. -2. -1. 0. 1. 2. 3.] float64 ``` ### Size of a numpy array In numpy to know the number of items in a numpy array list we use size ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) two_dimensional_list = np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) print('The size:', numpy_array_from_list.size) # 5 print('The size:', two_dimensional_list.size) # 3 ``` ```sh The size: 5 The size: 9 ``` ## Mathematical Operation using numpy NumPy array is not like exactly like python list. To do mathematical operation in Python list we have to loop through the items but numpy can allow to do any mathematical operation without looping. Mathematical Operation: - Addition (+) - Subtraction (-) - Multiplication (\*) - Division (/) - Modules (%) - Floor Division(//) - Exponential(\*\*) ### Addition ```py # Mathematical Operation # Addition numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_plus_original = numpy_array_from_list + 10 print(ten_plus_original) ``` ```sh original array: [1 2 3 4 5] [11 12 13 14 15] ``` ### Subtraction ```python # Subtraction numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_minus_original = numpy_array_from_list - 10 print(ten_minus_original) ``` ```sh original array: [1 2 3 4 5] [-9 -8 -7 -6 -5] ``` ### Multiplication ```python # Multiplication numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list * 10 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [10 20 30 40 50] ``` ### Division ```python # Division numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list / 10 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [0.1 0.2 0.3 0.4 0.5] ``` ### Modulus ```python # Modulus; Finding the remainder numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list % 3 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [1 2 0 1 2] ``` ### Floor Division ```py # Floor division: the division result without the remainder numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list // 10 print(ten_times_original) ``` ### Exponential ```py # Exponential is finding some number the power of another: numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list ** 2 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [ 1 4 9 16 25] ``` ## Checking data types ```py #Int, Float numbers numpy_int_arr = np.array([1,2,3,4]) numpy_float_arr = np.array([1.1, 2.0,3.2]) numpy_bool_arr = np.array([-3, -2, 0, 1,2,3], dtype='bool') print(numpy_int_arr.dtype) print(numpy_float_arr.dtype) print(numpy_bool_arr.dtype) ``` ```sh int64 float64 bool ``` ### Converting types We can convert the data types of numpy array 1. Int to Float ```py numpy_int_arr = np.array([1,2,3,4], dtype = 'float') numpy_int_arr ``` array([1., 2., 3., 4.]) 2. Float to Int ```py numpy_int_arr = np.array([1., 2., 3., 4.], dtype = 'int') numpy_int_arr ``` ```sh array([1, 2, 3, 4]) ``` 3. Int ot boolean ```py np.array([-3, -2, 0, 1,2,3], dtype='bool') ``` ```sh array([ True, True, False, True, True, True]) ``` 4. Int to str ```py numpy_float_list.astype('int').astype('str') ``` ```sh array(['1', '2', '3'], dtype=' [[1 2 3] [4 5 6] [7 8 9]] Shape: (3, 3) Size: 9 Data type: int64 ``` ### Getting items from a numpy array ```py # 2 Dimension Array two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_row = two_dimension_array[0] second_row = two_dimension_array[1] third_row = two_dimension_array[2] print('First row:', first_row) print('Second row:', second_row) print('Third row: ', third_row) ``` ```sh First row: [1 2 3] Second row: [4 5 6] Third row: [7 8 9] ``` ```py first_column= two_dimension_array[:,0] second_column = two_dimension_array[:,1] third_column = two_dimension_array[:,2] print('First column:', first_column) print('Second column:', second_column) print('Third column: ', third_column) print(two_dimension_array) ``` ```sh First column: [1 4 7] Second column: [2 5 8] Third column: [3 6 9] [[1 2 3] [4 5 6] [7 8 9]] ``` ## Slicing Numpy array Slicing in numpy is similar to slicing in python list ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_two_rows_and_columns = two_dimension_array[0:2, 0:2] print(first_two_rows_and_columns) ``` ```sh [[1 2] [4 5]] ``` ### How to reverse the rows and the whole array? ```py two_dimension_array[::] ``` ```sh array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) ``` ### Reverse the row and column positions ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) two_dimension_array[::-1,::-1] ``` ```sh array([[9, 8, 7], [6, 5, 4], [3, 2, 1]]) ``` ## How to represent missing values ? ```python print(two_dimension_array) two_dimension_array[1,1] = 55 two_dimension_array[1,2] =44 print(two_dimension_array) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] [[ 1 2 3] [ 4 55 44] [ 7 8 9]] ``` ```py # Numpy Zeroes # numpy.zeros(shape, dtype=float, order='C') numpy_zeroes = np.zeros((3,3),dtype=int,order='C') numpy_zeroes ``` ```sh array([[0, 0, 0], [0, 0, 0], [0, 0, 0]]) ``` ```py # Numpy Zeroes numpy_ones = np.ones((3,3),dtype=int,order='C') print(numpy_ones) ``` ```sh [[1 1 1] [1 1 1] [1 1 1]] ``` ```py twoes = numpy_ones * 2 ``` ```py # Reshape # numpy.reshape(), numpy.flatten() first_shape = np.array([(1,2,3), (4,5,6)]) print(first_shape) reshaped = first_shape.reshape(3,2) print(reshaped) ``` ```sh [[1 2 3] [4 5 6]] [[1 2] [3 4] [5 6]] ``` ```py flattened = reshaped.flatten() flattened ``` ```sh array([1, 2, 3, 4, 5, 6]) ``` ```py ## Horitzontal Stack np_list_one = np.array([1,2,3]) np_list_two = np.array([4,5,6]) print(np_list_one + np_list_two) print('Horizontal Append:', np.hstack((np_list_one, np_list_two))) ``` ```sh [5 7 9] Horizontal Append: [1 2 3 4 5 6] ``` ```py ## Vertical Stack print('Vertical Append:', np.vstack((np_list_one, np_list_two))) ``` ```sh Vertical Append: [[1 2 3] [4 5 6]] ``` #### Generating Random Numbers ```py # Generate a random float number random_float = np.random.random() random_float ``` ```sh 0.018929887384753874 ``` ```py # Generate a random float number random_floats = np.random.random(5) random_floats ``` ```sh array([0.26392192, 0.35842215, 0.87908478, 0.41902195, 0.78926418]) ``` ```py # Generating a random integers between 0 and 10 random_int = np.random.randint(0, 11) random_int ``` ```sh 4 ``` ```py # Generating a random integers between 2 and 11, and creating a one row array random_int = np.random.randint(2,10, size=4) random_int ``` ```sh array([8, 8, 8, 2]) ``` ```py # Generating a random integers between 0 and 10 random_int = np.random.randint(2,10, size=(3,3)) random_int ``` ```sh array([[3, 5, 3], [7, 3, 6], [2, 3, 3]]) ``` ### Generationg random numbers ```py # np.random.normal(mu, sigma, size) normal_array = np.random.normal(79, 15, 80) normal_array ``` ```sh array([ 89.49990595, 82.06056961, 107.21445842, 38.69307086, 47.85259157, 93.07381061, 76.40724259, 78.55675184, 72.17358173, 47.9888899 , 65.10370622, 76.29696568, 95.58234254, 68.14897213, 38.75862686, 122.5587927 , 67.0762565 , 95.73990864, 81.97454563, 92.54264805, 59.37035153, 77.76828101, 52.30752166, 64.43109931, 62.63695351, 90.04616138, 75.70009094, 49.87586877, 80.22002414, 68.56708848, 76.27791052, 67.24343975, 81.86363935, 78.22703433, 102.85737041, 65.15700341, 84.87033426, 76.7569997 , 64.61321853, 67.37244562, 74.4068773 , 58.65119655, 71.66488727, 53.42458179, 70.26872028, 60.96588544, 83.56129414, 72.14255326, 81.00787609, 71.81264853, 72.64168853, 86.56608717, 94.94667321, 82.32676973, 70.5165446 , 85.43061003, 72.45526212, 87.34681775, 87.69911217, 103.02831489, 75.28598596, 67.17806893, 92.41274447, 101.06662611, 87.70013935, 70.73980645, 46.40368207, 50.17947092, 61.75618542, 90.26191397, 78.63968639, 70.84550744, 88.91826581, 103.91474733, 66.3064638 , 79.49726264, 70.81087439, 83.90130623, 87.58555972, 59.95462521]) ``` ## Numpy and Statistics ```py import matplotlib.pyplot as plt import seaborn as sns sns.set() plt.hist(normal_array, color="grey", bins=50) ``` ```sh (array([2., 0., 0., 0., 1., 2., 2., 0., 2., 0., 0., 1., 2., 2., 1., 4., 3., 4., 2., 7., 2., 2., 5., 4., 2., 4., 3., 2., 1., 5., 3., 0., 3., 2., 1., 0., 0., 1., 3., 0., 1., 0., 0., 0., 0., 0., 0., 0., 0., 1.]), array([ 38.69307086, 40.37038529, 42.04769973, 43.72501417, 45.4023286 , 47.07964304, 48.75695748, 50.43427191, 52.11158635, 53.78890079, 55.46621523, 57.14352966, 58.8208441 , 60.49815854, 62.17547297, 63.85278741, 65.53010185, 67.20741628, 68.88473072, 70.56204516, 72.23935959, 73.91667403, 75.59398847, 77.27130291, 78.94861734, 80.62593178, 82.30324622, 83.98056065, 85.65787509, 87.33518953, 89.01250396, 90.6898184 , 92.36713284, 94.04444727, 95.72176171, 97.39907615, 99.07639058, 100.75370502, 102.43101946, 104.1083339 , 105.78564833, 107.46296277, 109.14027721, 110.81759164, 112.49490608, 114.17222052, 115.84953495, 117.52684939, 119.20416383, 120.88147826, 122.5587927 ]), ) ``` ### Matrix in numpy ```py four_by_four_matrix = np.matrix(np.ones((4,4), dtype=float)) ``` ```py four_by_four_matrix ``` ```sh matrix([[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]) ``` ```py np.asarray(four_by_four_matrix)[2] = 2 four_by_four_matrix ``` ```sh matrix([[1., 1., 1., 1.], [1., 1., 1., 1.], [2., 2., 2., 2.], [1., 1., 1., 1.]]) ``` ### Numpy numpy.arange() #### What is Arrange? Sometimes, you want to create values that are evenly spaced within a defined interval. For instance, you want to create values from 1 to 10; you can use numpy.arange() function ```py # creating list using range(starting, stop, step) lst = range(0, 11, 2) lst ``` ```python range(0, 11, 2) ``` ```python for l in lst: print(l) ``` ```sh 0 2 4 6 8 10 ``` ```py # Similar to range arange numpy.arange(start, stop, step) whole_numbers = np.arange(0, 20, 1) whole_numbers ``` ```sh array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]) ``` ```py natural_numbers = np.arange(1, 20, 1) natural_numbers ``` ```py odd_numbers = np.arange(1, 20, 2) odd_numbers ``` ```sh array([ 1, 3, 5, 7, 9, 11, 13, 15, 17, 19]) ``` ```py even_numbers = np.arange(2, 20, 2) even_numbers ``` ```sh array([ 2, 4, 6, 8, 10, 12, 14, 16, 18]) ``` ### Creating sequence of numbers using linspace ```py # numpy.linspace() # numpy.logspace() in Python with Example # For instance, it can be used to create 10 values from 1 to 5 evenly spaced. np.linspace(1.0, 5.0, num=10) ``` ```sh array([1. , 1.44444444, 1.88888889, 2.33333333, 2.77777778, 3.22222222, 3.66666667, 4.11111111, 4.55555556, 5. ]) ``` ```py # not to include the last value in the interval np.linspace(1.0, 5.0, num=5, endpoint=False) ``` ``` array([1. , 1.8, 2.6, 3.4, 4.2]) ``` ```py # LogSpace # LogSpace returns even spaced numbers on a log scale. Logspace has the same parameters as np.linspace. # Syntax: # numpy.logspace(start, stop, num, endpoint) np.logspace(2, 4.0, num=4) ``` ```sh array([ 100. , 464.15888336, 2154.43469003, 10000. ]) ``` ```py # to check the size of an array x = np.array([1,2,3], dtype=np.complex128) ``` ```py x ``` ```sh array([1.+0.j, 2.+0.j, 3.+0.j]) ``` ```py x.itemsize ``` ```sh 16 ``` ```py # indexing and Slicing NumPy Arrays in Python np_list = np.array([(1,2,3), (4,5,6)]) np_list ``` ```sh array([[1, 2, 3], [4, 5, 6]]) ``` ```py print('First row: ', np_list[0]) print('Second row: ', np_list[1]) ``` ```sh First row: [1 2 3] Second row: [4 5 6] ``` ```p print('First column: ', np_list[:,0]) print('Second column: ', np_list[:,1]) print('Third column: ', np_list[:,2]) ``` ```sh First column: [1 4] Second column: [2 5] Third column: [3 6] ``` ### NumPy Statistical Functions with Example NumPy has quite useful statistical functions for finding minimum, maximum, mean, median, percentile,standard deviation and variance, etc from the given elements in the array. The functions are explained as follows − Statistical function Numpy is equipped with the robust statistical function as listed below - Numpy Functions - Min np.min() - Max np.max() - Mean np.mean() - Median np.median() - Variance - Percentile - Standard deviation np.std() ```python np_normal_dis = np.random.normal(5, 0.5, 100) np_normal_dis ## min, max, mean, median, sd print('min: ', two_dimension_array.min()) print('max: ', two_dimension_array.max()) print('mean: ',two_dimension_array.mean()) # print('median: ', two_dimension_array.median()) print('sd: ', two_dimension_array.std()) ``` min: 1 max: 55 mean: 14.777777777777779 sd: 18.913709183069525 ```python min: 1 max: 55 mean: 14.777777777777779 sd: 18.913709183069525 ``` ```python print(two_dimension_array) print('Column with minimum: ', np.amin(two_dimension_array,axis=0)) print('Column with maximum: ', np.amax(two_dimension_array,axis=0)) print('=== Row ==') print('Row with minimum: ', np.amin(two_dimension_array,axis=1)) print('Row with maximum: ', np.amax(two_dimension_array,axis=1)) ``` [[ 1 2 3] [ 4 55 44] [ 7 8 9]] Column with minimum: [1 2 3] Column with maximum: [ 7 55 44] === Row == Row with minimum: [1 4 7] Row with maximum: [ 3 55 9] ### How to create repeating sequences? ```python a = [1,2,3] # Repeat whole of 'a' two times print('Tile: ', np.tile(a, 2)) # Repeat each element of 'a' two times print('Repeat: ', np.repeat(a, 2)) ``` Tile: [1 2 3 1 2 3] Repeat: [1 1 2 2 3 3] ### How to generate random numbers? ```python # One random number between [0,1) one_random_num = np.random.random() one_random_in = np.random print(one_random_num) ``` 0.6149403282678213 ```python 0.4763968133790438 ``` 0.4763968133790438 ```python # Random numbers between [0,1) of shape 2,3 r = np.random.random(size=[2,3]) print(r) ``` [[0.13031737 0.4429537 0.1129527 ] [0.76811539 0.88256594 0.6754075 ]] ```python print(np.random.choice(['a', 'e', 'i', 'o', 'u'], size=10)) ``` ['u' 'o' 'o' 'i' 'e' 'e' 'u' 'o' 'u' 'a'] ```python ['i' 'u' 'e' 'o' 'a' 'i' 'e' 'u' 'o' 'i'] ``` ['iueoaieuoi'] ```python ## Random numbers between [0, 1] of shape 2, 2 rand = np.random.rand(2,2) rand ``` array([[0.97992598, 0.79642484], [0.65263629, 0.55763145]]) ```python rand2 = np.random.randn(2,2) rand2 ``` array([[ 1.65593322, -0.52326621], [ 0.39071179, -2.03649407]]) ```python # Random integers between [0, 10) of shape 2,5 rand_int = np.random.randint(0, 10, size=[5,3]) rand_int ``` array([[0, 7, 5], [4, 1, 4], [3, 5, 3], [4, 3, 8], [4, 6, 7]]) ```py from scipy import stats np_normal_dis = np.random.normal(5, 0.5, 1000) # mean, standard deviation, number of samples np_normal_dis ## min, max, mean, median, sd print('min: ', np.min(np_normal_dis)) print('max: ', np.max(np_normal_dis)) print('mean: ', np.mean(np_normal_dis)) print('median: ', np.median(np_normal_dis)) print('mode: ', stats.mode(np_normal_dis)) print('sd: ', np.std(np_normal_dis)) ``` ```sh min: 3.557811005458804 max: 6.876317743643499 mean: 5.035832048106663 median: 5.020161980441937 mode: ModeResult(mode=array([3.55781101]), count=array([1])) sd: 0.489682424165213 ``` ```python plt.hist(np_normal_dis, color="grey", bins=21) plt.show() ``` ![png](../test_files/test_121_0.png) ```python # numpy.dot(): Dot Product in Python using Numpy # Dot Product # Numpy is powerful library for matrices computation. For instance, you can compute the dot product with np.dot # Syntax # numpy.dot(x, y, out=None) ``` ### Linear Algebra 1. Dot Product ```python ## Linear algebra ### Dot product: product of two arrays f = np.array([1,2,3]) g = np.array([4,5,3]) ### 1*4+2*5 + 3*6 np.dot(f, g) # 23 ``` ### NumPy Matrix Multiplication with np.matmul() ```python ### Matmul: matruc product of two arrays h = [[1,2],[3,4]] i = [[5,6],[7,8]] ### 1*5+2*7 = 19 np.matmul(h, i) ``` ```sh array([[19, 22], [43, 50]]) ``` ```py ## Determinant 2*2 matrix ### 5*8-7*6np.linalg.det(i) ``` ```python np.linalg.det(i) ``` -1.999999999999999 ```python Z = np.zeros((8,8)) Z[1::2,::2] = 1 Z[::2,1::2] = 1 ``` ```python Z ``` array([[0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.]]) ```python new_list = [ x + 2 for x in range(0, 11)] ``` ```python new_list ``` [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ```python [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ``` [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ```python np_arr = np.array(range(0, 11)) np_arr + 2 ``` array([ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]) We use linear equation for quantities which have linear relationship. Let's see the example below: ```python temp = np.array([1,2,3,4,5]) pressure = temp * 2 + 5 pressure ``` array([ 7, 9, 11, 13, 15]) ```python plt.plot(temp,pressure) plt.xlabel('Temperature in oC') plt.ylabel('Pressure in atm') plt.title('Temperature vs Pressure') plt.xticks(np.arange(0, 6, step=0.5)) plt.show() ``` ![png](../test_files/test_141_0.png) To draw the Gaussian normal distribution using numpy. As you can see below, the numpy can generate random numbers. To create random sample, we need the mean(mu), sigma(standard deviation), number of data points. ```python mu = 28 sigma = 15 samples = 100000 x = np.random.normal(mu, sigma, samples) ax = sns.distplot(x); ax.set(xlabel="x", ylabel='y') plt.show() ``` ![png](../test_files/test_143_0.png) # Summary To summarize, the main differences with python lists are: 1. Arrays support vectorized operations, while lists don’t. 1. Once an array is created, you cannot change its size. You will have to create a new array or overwrite the existing one. 1. Every array has one and only one dtype. All items in it should be of that dtype. 1. An equivalent numpy array occupies much less space than a python list of lists. 1. numpy arrays support boolean indexing. ## 💻 Exercises: Day 24 1. Repeat all the examples 🎉 CONGRATULATIONS ! 🎉 [<< Day 23](../23_Day_Virtual_environment/23_virtual_environment.md) | [Day 25 >>](../25_Day_Pandas/25_pandas.md) ================================================ FILE: 25_Day_Pandas/25_pandas.md ================================================ [<< Day 24](../24_Day_Statistics/24_statistics.md) | [Day 26 >>](../26_Day_Python_web/26_python_web.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 25](#-day-25) - [Pandas](#pandas) - [Installing Pandas](#installing-pandas) - [Importing Pandas](#importing-pandas) - [Creating Pandas Series with Default Index](#creating-pandas-series-with-default-index) - [Creating Pandas Series with custom index](#creating--pandas-series-with-custom-index) - [Creating Pandas Series from a Dictionary](#creating-pandas-series-from-a-dictionary) - [Creating a Constant Pandas Series](#creating-a-constant-pandas-series) - [Creating a Pandas Series Using Linspace](#creating-a--pandas-series-using-linspace) - [DataFrames](#dataframes) - [Creating DataFrames from List of Lists](#creating-dataframes-from-list-of-lists) - [Creating DataFrame Using Dictionary](#creating-dataframe-using-dictionary) - [Creating DataFrames from a List of Dictionaries](#creating-dataframes-from-a-list-of-dictionaries) - [Reading CSV File Using Pandas](#reading-csv-file-using-pandas) - [Data Exploration](#data-exploration) - [Modifying a DataFrame](#modifying-a-dataframe) - [Creating a DataFrame](#creating-a-dataframe) - [Adding a New Column](#adding-a-new-column) - [Modifying column values](#modifying-column-values) - [Formatting DataFrame columns](#formatting-dataframe-columns) - [Checking data types of Column values](#checking-data-types-of-column-values) - [Boolean Indexing](#boolean-indexing) - [Exercises: Day 25](#exercises-day-25) # 📘 Day 25 ## Pandas Pandas is an open source, high-performance, easy-to-use data structures and data analysis tools for the Python programming language. Pandas adds data structures and tools designed to work with table-like data which is *Series* and *Data Frames*. Pandas provides tools for data manipulation: - reshaping - merging - sorting - slicing - aggregation - imputation. If you are using anaconda, you do not have install pandas. ### Installing Pandas For Mac: ```py pip install conda conda install pandas ``` For Windows: ```py pip install conda pip install pandas ``` Pandas data structure is based on *Series* and *DataFrames*. A *series* is a *column* and a DataFrame is a *multidimensional table* made up of collection of *series*. In order to create a pandas series we should use numpy to create a one dimensional arrays or a python list. Let us see an example of a series: Names Pandas Series ![pandas series](../images/pandas-series-1.png) Countries Series ![pandas series](../images/pandas-series-2.png) Cities Series ![pandas series](../images/pandas-series-3.png) As you can see, pandas series is just one column of data. If we want to have multiple columns we use data frames. The example below shows pandas DataFrames. Let us see, an example of a pandas data frame: ![Pandas data frame](../images/pandas-dataframe-1.png) Data frame is a collection of rows and columns. Look at the table below; it has many more columns than the example above: ![Pandas data frame](../images/pandas-dataframe-2.png) Next, we will see how to import pandas and how to create Series and DataFrames using pandas ### Importing Pandas ```python import pandas as pd # importing pandas as pd import numpy as np # importing numpy as np ``` ### Creating Pandas Series with Default Index ```python nums = [1, 2, 3, 4,5] s = pd.Series(nums) print(s) ``` ```sh 0 1 1 2 2 3 3 4 4 5 dtype: int64 ``` ### Creating Pandas Series with custom index ```python nums = [1, 2, 3, 4, 5] s = pd.Series(nums, index=[1, 2, 3, 4, 5]) print(s) ``` ```sh 1 1 2 2 3 3 4 4 5 5 dtype: int64 ``` ```python fruits = ['Orange','Banana','Mango'] fruits = pd.Series(fruits, index=[1, 2, 3]) print(fruits) ``` ```sh 1 Orange 2 Banana 3 Mango dtype: object ``` ### Creating Pandas Series from a Dictionary ```python dct = {'name':'Asabeneh','country':'Finland','city':'Helsinki'} ``` ```python s = pd.Series(dct) print(s) ``` ```sh name Asabeneh country Finland city Helsinki dtype: object ``` ### Creating a Constant Pandas Series ```python s = pd.Series(10, index = [1, 2, 3]) print(s) ``` ```sh 1 10 2 10 3 10 dtype: int64 ``` ### Creating a Pandas Series Using Linspace ```python s = pd.Series(np.linspace(5, 20, 10)) # linspace(starting, end, items) print(s) ``` ```sh 0 5.000000 1 6.666667 2 8.333333 3 10.000000 4 11.666667 5 13.333333 6 15.000000 7 16.666667 8 18.333333 9 20.000000 dtype: float64 ``` ## DataFrames Pandas data frames can be created in different ways. ### Creating DataFrames from List of Lists ```python data = [ ['Asabeneh', 'Finland', 'Helsink'], ['David', 'UK', 'London'], ['John', 'Sweden', 'Stockholm'] ] df = pd.DataFrame(data, columns=['Names','Country','City']) print(df) ```
Names Country City
0 Asabeneh Finland Helsink
1 David UK London
2 John Sweden Stockholm
### Creating DataFrame Using Dictionary ```python data = {'Name': ['Asabeneh', 'David', 'John'], 'Country':[ 'Finland', 'UK', 'Sweden'], 'City': ['Helsiki', 'London', 'Stockholm']} df = pd.DataFrame(data) print(df) ```
Name Country City
0 Asabeneh Finland Helsiki
1 David UK London
2 John Sweden Stockholm
### Creating DataFrames from a List of Dictionaries ```python data = [ {'Name': 'Asabeneh', 'Country': 'Finland', 'City': 'Helsinki'}, {'Name': 'David', 'Country': 'UK', 'City': 'London'}, {'Name': 'John', 'Country': 'Sweden', 'City': 'Stockholm'}] df = pd.DataFrame(data) print(df) ```
Name Country City
0 Asabeneh Finland Helsinki
1 David UK London
2 John Sweden Stockholm
## Reading CSV File Using Pandas To download the CSV file, what is needed in this example, console/command line is enough: ```sh curl -O https://raw.githubusercontent.com/Asabeneh/30-Days-Of-Python/master/data/weight-height.csv ``` Put the downloaded file in your working directory. ```python import pandas as pd df = pd.read_csv('weight-height.csv') print(df) ``` ### Data Exploration Let us read only the first 5 rows using head() ```python print(df.head()) # give five rows we can increase the number of rows by passing argument to the head() method ```
Gender Height Weight
0 Male 73.847017 241.893563
1 Male 68.781904 162.310473
2 Male 74.110105 212.740856
3 Male 71.730978 220.042470
4 Male 69.881796 206.349801
Let us also explore the last recordings of the dataframe using the tail() methods. ```python print(df.tail()) # tails give the last five rows, we can increase the rows by passing argument to tail method ```
Gender Height Weight
9995 Female 66.172652 136.777454
9996 Female 67.067155 170.867906
9997 Female 63.867992 128.475319
9998 Female 69.034243 163.852461
9999 Female 61.944246 113.649103
As you can see the csv file has three rows: Gender, Height and Weight. If the DataFrame would have a long rows, it would be hard to know all the columns. Therefore, we should use a method to know the columns. we do not know the number of rows. Let's use shape method. ```python print(df.shape) # as you can see 10000 rows and three columns ``` (10000, 3) Let us get all the columns using columns. ```python print(df.columns) ``` Index(['Gender', 'Height', 'Weight'], dtype='object') Now, let us get a specific column using the column key ```python heights = df['Height'] # this is now a series ``` ```python print(heights) ``` ```sh 0 73.847017 1 68.781904 2 74.110105 3 71.730978 4 69.881796 ... 9995 66.172652 9996 67.067155 9997 63.867992 9998 69.034243 9999 61.944246 Name: Height, Length: 10000, dtype: float64 ``` ```python weights = df['Weight'] # this is now a series ``` ```python print(weights) ``` ```sh 0 241.893563 1 162.310473 2 212.740856 3 220.042470 4 206.349801 ... 9995 136.777454 9996 170.867906 9997 128.475319 9998 163.852461 9999 113.649103 Name: Weight, Length: 10000, dtype: float64 ``` ```python print(len(heights) == len(weights)) ``` True The describe() method provides a descriptive statistical values of a dataset. ```python print(heights.describe()) # give statistical information about height data ``` ```sh count 10000.000000 mean 66.367560 std 3.847528 min 54.263133 25% 63.505620 50% 66.318070 75% 69.174262 max 78.998742 Name: Height, dtype: float64 ``` ```python print(weights.describe()) ``` ```sh count 10000.000000 mean 161.440357 std 32.108439 min 64.700127 25% 135.818051 50% 161.212928 75% 187.169525 max 269.989699 Name: Weight, dtype: float64 ``` ```python print(df.describe()) # describe can also give statistical information from a dataFrame ```
Height Weight
count 10000.000000 10000.000000
mean 66.367560 161.440357
std 3.847528 32.108439
min 54.263133 64.700127
25% 63.505620 135.818051
50% 66.318070 161.212928
75% 69.174262 187.169525
max 78.998742 269.989699
Similar to describe(), the info() method also give information about the dataset. ## Modifying a DataFrame Modifying a DataFrame: * We can create a new DataFrame * We can create a new column and add it to the DataFrame, * we can remove an existing column from a DataFrame, * we can modify an existing column in a DataFrame, * we can change the data type of column values in the DataFrame ### Creating a DataFrame As always, first we import the necessary packages. Now, lets import pandas and numpy, two best friends ever. ```python import pandas as pd import numpy as np data = [ {"Name": "Asabeneh", "Country":"Finland","City":"Helsinki"}, {"Name": "David", "Country":"UK","City":"London"}, {"Name": "John", "Country":"Sweden","City":"Stockholm"}] df = pd.DataFrame(data) print(df) ```
Name Country City
0 Asabeneh Finland Helsinki
1 David UK London
2 John Sweden Stockholm
Adding a column to a DataFrame is like adding a key to a dictionary. First let's use the previous example to create a DataFrame. After we create the DataFrame, we will start modifying the columns and column values. ### Adding a New Column Let's add a weight column in the DataFrame ```python weights = [74, 78, 69] df['Weight'] = weights df ```
Name Country City Weight
0 Asabeneh Finland Helsinki 74
1 David UK London 78
2 John Sweden Stockholm 69
Let's add a height column into the DataFrame aswell ```python heights = [173, 175, 169] df['Height'] = heights print(df) ```
Name Country City Weight Height
0 Asabeneh Finland Helsinki 74 173
1 David UK London 78 175
2 John Sweden Stockholm 69 169
As you can see in the DataFrame above, we did add new columns, Weight and Height. Let's add one additional column called BMI(Body Mass Index) by calculating their BMI using thier mass and height. BMI is mass divided by height squared (in meters) - Weight/Height * Height. As you can see, the height is in centimeters, so we shoud change it to meters. Let's modify the height row. ### Modifying column values ```python df['Height'] = df['Height'] * 0.01 df ```
Name Country City Weight Height
0 Asabeneh Finland Helsinki 74 1.73
1 David UK London 78 1.75
2 John Sweden Stockholm 69 1.69
```python # Using functions makes our code clean, but you can calculate the bmi without one def calculate_bmi (): weights = df['Weight'] heights = df['Height'] bmi = [] for w,h in zip(weights, heights): b = w/(h*h) bmi.append(b) return bmi bmi = calculate_bmi() ``` ```python df['BMI'] = bmi df ```
Name Country City Weight Height BMI
0 Asabeneh Finland Helsinki 74 1.73 24.725183
1 David UK London 78 1.75 25.469388
2 John Sweden Stockholm 69 1.69 24.158818
### Formatting DataFrame columns The BMI column values of the DataFrame are float with many significant digits after decimal. Let's change it to one significant digit after point. ```python df['BMI'] = round(df['BMI'], 1) print(df) ```
Name Country City Weight Height BMI
0 Asabeneh Finland Helsinki 74 1.73 24.7
1 David UK London 78 1.75 25.5
2 John Sweden Stockholm 69 1.69 24.2
The information in the DataFrame seems not yet complete, let's add birth year and current year columns. ```python birth_year = ['1769', '1985', '1990'] current_year = pd.Series(2020, index=[0, 1,2]) df['Birth Year'] = birth_year df['Current Year'] = current_year df ```
Name Country City Weight Height BMI Birth Year Current Year
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2020
1 David UK London 78 1.75 25.5 1985 2020
2 John Sweden Stockholm 69 1.69 24.2 1990 2020
## Checking data types of Column values ```python print(df.Weight.dtype) ``` ```sh dtype('int64') ``` ```python df['Birth Year'].dtype # it gives string object , we should change this to number ``` ```python df['Birth Year'] = df['Birth Year'].astype('int') print(df['Birth Year'].dtype) # let's check the data type now ``` ```sh dtype('int32') ``` Now same for the current year: ```python df['Current Year'] = df['Current Year'].astype('int') df['Current Year'].dtype ``` ```sh dtype('int32') ``` Now, the column values of birth year and current year are integers. We can calculate the age. ```python ages = df['Current Year'] - df['Birth Year'] ages ``` 0 251 1 35 2 30 dtype: int32 ```python df['Ages'] = ages print(df) ```
Name Country City Weight Height BMI Birth Year Current Year Ages
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2019 250
1 David UK London 78 1.75 25.5 1985 2019 34
2 John Sweden Stockholm 69 1.69 24.2 1990 2019 29
The person in the first row lived so far for 251 years. It is unlikely for someone to live so long. Either it is a typo or the data is cooked. So lets fill that data with average of the columns without including outlier. mean = (35 + 30)/ 2 ```python mean = (35 + 30)/ 2 print('Mean: ',mean) #it is good to add some description to the output, so we know what is what ``` ```sh Mean: 32.5 ``` ### Boolean Indexing ```python print(df[df['Ages'] > 120]) ```
Name Country City Weight Height BMI Birth Year Current Year Ages
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2020 251
```python print(df[df['Ages'] < 120]) ```
Name Country City Weight Height BMI Birth Year Current Year Ages
1 David UK London 78 1.75 25.5 1985 2020 35
2 John Sweden Stockholm 69 1.69 24.2 1990 2020 30
## Exercises: Day 25 1. Read the hacker_news.csv file from data directory 1. Get the first five rows 1. Get the last five rows 1. Get the title column as pandas series 1. Count the number of rows and columns - Filter the titles which contain python - Filter the titles which contain JavaScript - Explore the data and make sense of it 🎉 CONGRATULATIONS ! 🎉 [<< Day 24](../24_Day_Statistics/24_statistics.md) | [Day 26 >>](../26_Day_Python_web/26_python_web.md) ================================================ FILE: 26_Day_Python_web/26_python_web.md ================================================

30 Days Of Python: Day 26 - Python for web

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 25 ](../25_Day_Pandas/25_pandas.md) | [Day 27 >>](../27_Day_Python_with_mongodb/27_python_with_mongodb.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 26](#-day-26) - [Python for Web](#python-for-web) - [Flask](#flask) - [Folder structure](#folder-structure) - [Setting up your project directory](#setting-up-your-project-directory) - [Creating routes](#creating-routes) - [Creating templates](#creating-templates) - [Python Script](#python-script) - [Navigation](#navigation) - [Creating a layout](#creating-a-layout) - [Serving Static File](#serving-static-file) - [Deployment](#deployment) - [Creating Heroku account](#creating-heroku-account) - [Login to Heroku](#login-to-heroku) - [Create requirements and Procfile](#create-requirements-and-procfile) - [Pushing project to heroku](#pushing-project-to-heroku) - [Exercises: Day 26](#exercises-day-26) # 📘 Day 26 ## Python for Web Python is a general purpose programming language and it can be used for many places. In this section, we will see how we use Python for the web. There are many Python web frame works. Django and Flask are the most popular ones. Today, we will see how to use Flask for web development. ### Flask Flask is a web development framework written in Python. Flask uses Jinja2 template engine. Flask can be also used with other modern front libraries such as React. If you did not install the virtualenv package yet install it first. Virtual environment will allows to isolate project dependencies from the local machine dependencies. #### Folder structure After completing all the step, your project file structure should look like this: ```sh ├── Procfile ├── app.py ├── env │   ├── bin ├── requirements.txt ├── static │   └── css │   └── main.css └── templates ├── about.html ├── home.html ├── layout.html ├── post.html └── result.html ``` ### Setting up your project directory Follow the following steps to get started with Flask. Step 1: install virtualenv using the following command. ```sh pip install virtualenv ``` Step 2: ```sh asabeneh@Asabeneh:~/Desktop$ mkdir python_for_web asabeneh@Asabeneh:~/Desktop$ cd python_for_web/ asabeneh@Asabeneh:~/Desktop/python_for_web$ virtualenv venv asabeneh@Asabeneh:~/Desktop/python_for_web$ source venv/bin/activate (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install Flask (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` We created a project director named python_for_web. Inside the project we created a virtual environment *venv* which could be any name but I prefer to call it _venv_. Then we activated the virtual environment. We used pip freeze to check the installed packages in the project directory. The result of pip freeze was empty because a package was not installed yet. Now, let's create app.py file in the project directory and write the following code. The app.py file will be the main file in the project. The following code has flask module, os module. ### Creating routes The home route. ```py # let's import the flask from flask import Flask import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return '

Welcome

' if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` To run the flask application, write python app.py in the main flask application directory. After you run _python app.py_ check local host 5000. Let us add additional route. Creating about route ```py # let's import the flask from flask import Flask import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return '

Welcome

' @app.route('/about') def about(): return '

About us

' if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Now, we added the about route in the above code. How about if we want to render an HTML file instead of string? It is possible to render HTML file using the function *render_template*. Let us create a folder called templates and create home.html and about.html in the project directory. Let us also import the *render_template* function from flask. ### Creating templates Create the HTML files inside templates folder. home.html ```html Home

Welcome Home

``` about.html ```html About

About Us

``` ### Python Script app.py ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return render_template('home.html') @app.route('/about') def about(): return render_template('about.html') if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` As you can see to go to different pages or to navigate we need a navigation. Let's add a link to each page or let's create a layout which we use to every page. ### Navigation ```html ``` Now, we can navigate between the pages using the above link. Let us create additional page which handle form data. You can call it any name, I like to call it post.html. We can inject data to the HTML files using Jinja2 template engine. ```py # let's import the flask from flask import Flask, render_template, request, redirect, url_for import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 Days Of Python Programming' return render_template('home.html', techs=techs, name = name, title = 'Home') @app.route('/about') def about(): name = '30 Days Of Python Programming' return render_template('about.html', name = name, title = 'About Us') @app.route('/post') def post(): name = 'Text Analyzer' return render_template('post.html', name = name, title = name) if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Let's see the templates too: home.html ```html Home

Welcome to {{name}}

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
``` about.html ```html About Us

About Us

{{name}}

``` ### Creating a layout In the template files, there are lots of repeated codes, we can write a layout and we can remove the repetition. Let's create layout.html inside the templates folder. After we create the layout we will import to every file. #### Serving Static File Create a static folder in your project directory. Inside the static folder create CSS or styles folder and create a CSS stylesheet. We use the *url_for* module to serve the static file. layout.html ```html {% if title %} 30 Days of Python - {{ title}} {% else %} 30 Days of Python {% endif %}
{% block content %} {% endblock %}
``` Now, lets remove all the repeated code in the other template files and import the layout.html. The href is using _url_for_ function with the name of the route function to connect each navigation route. home.html ```html {% extends 'layout.html' %} {% block content %}

Welcome to {{name}}

This application clean texts and analyse the number of word, characters and most frequent words in the text. Check it out by click text analyzer at the menu. You need the following technologies to build this web application:

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
{% endblock %} ``` about.html ```html {% extends 'layout.html' %} {% block content %}

About {{name}}

This is a 30 days of python programming challenge. If you have been coding this far, you are awesome. Congratulations for the job well done!

{% endblock %} ``` post.html ```html {% extends 'layout.html' %} {% block content %}

Text Analyzer

{% endblock %} ``` Request methods, there are different request methods(GET, POST, PUT, DELETE) are the common request methods which allow us to do CRUD(Create, Read, Update, Delete) operation. In the post, route we will use GET and POST method alternative depending on the type of request, check how it looks in the code below. The request method is a function to handle request methods and also to access form data. app.py ```py # let's import the flask from flask import Flask, render_template, request, redirect, url_for import os # importing operating system module app = Flask(__name__) # to stop caching static file app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0 @app.route('/') # this decorator create the home route def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 Days Of Python Programming' return render_template('home.html', techs=techs, name = name, title = 'Home') @app.route('/about') def about(): name = '30 Days Of Python Programming' return render_template('about.html', name = name, title = 'About Us') @app.route('/result') def result(): return render_template('result.html') @app.route('/post', methods= ['GET','POST']) def post(): name = 'Text Analyzer' if request.method == 'GET': return render_template('post.html', name = name, title = name) if request.method =='POST': content = request.form['content'] print(content) return redirect(url_for('result')) if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` So far, we have seen how to use template and how to inject data to template, how to a common layout. Now, lets handle static file. Create a folder called static in the project director and create a folder called css. Inside css folder create main.css. Your main. css file will be linked to the layout.html. You don't have to write the css file, copy and use it. Let's move on to deployment. ### Deployment #### Creating Heroku account Heroku provides a free deployment service for both front end and fullstack applications. Create an account on [heroku](https://www.heroku.com/) and install the heroku [CLI](https://devcenter.heroku.com/articles/heroku-cli) for you machine. After installing heroku write the following command #### Login to Heroku ```sh asabeneh@Asabeneh:~$ heroku login heroku: Press any key to open up the browser to login or q to exit: ``` Let's see the result by clicking any key from the keyboard. When you press any key from you keyboard it will open the heroku login page and click the login page. Then you will local machine will be connected to the remote heroku server. If you are connected to remote server, you will see this. ```sh asabeneh@Asabeneh:~$ heroku login heroku: Press any key to open up the browser to login or q to exit: Opening browser to https://cli-auth.heroku.com/auth/browser/be12987c-583a-4458-a2c2-ba2ce7f41610 Logging in... done Logged in as asabeneh@gmail.com asabeneh@Asabeneh:~$ ``` #### Create requirements and Procfile Before we push our code to remote server, we need requirements - requirements.txt - Procfile ```sh (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ touch requirements.txt (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ cat requirements.txt Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ touch Procfile (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ls Procfile env/ static/ app.py requirements.txt templates/ (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` The Procfile will have the command which run the application in the web server in our case on Heroku. ```sh web: python app.py ``` #### Pushing project to heroku Now, it is ready to be deployed. Steps to deploy the application on heroku 1. git init 2. git add . 3. git commit -m "commit message" 4. heroku create 'name of the app as one word' 5. git push heroku master 6. heroku open(to launch the deployed application) After this step you will get an application like [this](http://thirdaysofpython-practice.herokuapp.com/) ## Exercises: Day 26 1. You will build [this application](https://thirtydaysofpython-v1-final.herokuapp.com/). Only the text analyser part is left 🎉 CONGRATULATIONS ! 🎉 [<< Day 25 ](../25_Day_Pandas/25_pandas.md) | [Day 27 >>](../27_Day_Python_with_mongodb/27_python_with_mongodb.md) ================================================ FILE: 27_Day_Python_with_mongodb/27_python_with_mongodb.md ================================================

30 Days Of Python: Day 27 - Python with MongoDB

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 26](../26_Day_Python_web/26_python_web.md) | [Day 28 >>](../28_Day_API/28_API.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 27](#-day-27) - [Python with MongoDB](#python-with-mongodb) - [MongoDB](#mongodb) - [SQL versus NoSQL](#sql-versus-nosql) - [Getting Connection String(MongoDB URI)](#getting-connection-stringmongodb-uri) - [Connecting Flask application to MongoDB Cluster](#connecting-flask-application-to-mongodb-cluster) - [Creating a database and collection](#creating-a-database-and-collection) - [Inserting many documents to collection](#inserting-many-documents-to-collection) - [MongoDB Find](#mongodb-find) - [Find with Query](#find-with-query) - [Find query with modifier](#find-query-with-modifier) - [Limiting documents](#limiting-documents) - [Find with sort](#find-with-sort) - [Update with query](#update-with-query) - [Delete Document](#delete-document) - [Drop a collection](#drop-a-collection) - [💻 Exercises: Day 27](#-exercises-day-27) # 📘 Day 27 # Python with MongoDB Python is a backend technology and it can be connected with different data base applications. It can be connected to both SQL and noSQL databases. In this section, we connect Python with MongoDB database which is noSQL database. ## MongoDB MongoDB is a NoSQL database. MongoDB stores data in a JSON like document which make MongoDB very flexible and scalable. Let us see the different terminologies of SQL and NoSQL databases. The following table will make the difference between SQL versus NoSQL databases. ### SQL versus NoSQL ![SQL versus NoSQL](../images/mongoDB/sql-vs-nosql.png) In this section, we will focus on a NoSQL database MongoDB. Lets sign up on [mongoDB](https://www.mongodb.com/) by click on the sign in button then click register on the next page. ![MongoDB Sign up pages](../images/mongoDB/mongodb-signup-page.png) Complete the fields and click continue ![Mongodb register](../images/mongoDB/mongodb-register.png) Select the free plan ![Mongodb free plan](../images/mongoDB/mongodb-free.png) Choose the proximate free region and give any name for you cluster. ![Mongodb cluster name](../images/mongoDB/mongodb-cluster-name.png) Now, a free sandbox is created ![Mongodb sandbox](../images/mongoDB/mongodb-sandbox.png) All local host access ![Mongodb allow ip access](../images/mongoDB/mongodb-allow-ip-access.png) Add user and password ![Mongodb add user](../images/mongoDB/mongodb-add-user.png) Create a mongoDB uri link ![Mongodb create uri](../images/mongoDB/mongodb-create-uri.png) Select Python 3.6 or above driver ![Mongodb python driver](../images/mongoDB/mongodb-python-driver.png) ### Getting Connection String(MongoDB URI) Copy the connection string link and you will get something like this: ```sh mongodb+srv://asabeneh:@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` Do not worry about the url, it is a means to connect your application with mongoDB. Let us replace the password placeholder with the password you used to add a user. **Example:** ```sh mongodb+srv://asabeneh:123123123@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` Now, I replaced everything and the password is 123123 and the name of the database is *thirty_days_python*. This is just an example, your password must be stronger than the example password. Python needs a mongoDB driver to access mongoDB database. We will use _pymongo_ with _dnspython_ to connect our application with mongoDB base . Inside your project directory install pymongo and dnspython. ```sh pip install pymongo dnspython ``` The "dnspython" module must be installed to use mongodb+srv:// URIs. The dnspython is a DNS toolkit for Python. It supports almost all record types. ### Connecting Flask application to MongoDB Cluster ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` When we run the above code we get the default mongoDB databases. ```sh ['admin', 'local'] ``` ### Creating a database and collection Let us create a database, database and collection in mongoDB will be created if it doesn't exist. Let's create a data base name *thirty_days_of_python* and *students* collection. To create a database: ```sh db = client.name_of_databse # we can create a database like this or the second way db = client['name_of_database'] ``` ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) # Creating database db = client.thirty_days_of_python # Creating students collection and inserting a document db.students.insert_one({'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250}) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` After we create a database, we also created a students collection and we used *insert_one()* method to insert a document. Now, the database *thirty_days_of_python* and *students* collection have been created and the document has been inserted. Check your mongoDB cluster and you will see both the database and the collection. Inside the collection, there will be a document. ```sh ['thirty_days_of_python', 'admin', 'local'] ``` If you see this on the mongoDB cluster, it means you have successfully created a database and a collection. ![Creating database and collection](../images/mongoDB/mongodb-creating_database.png) If you have seen on the figure, the document has been created with a long id which acts as a primary key. Every time we create a document mongoDB create and unique id for it. ### Inserting many documents to collection The *insert_one()* method inserts one item at a time if we want to insert many documents at once either we use *insert_many()* method or for loop. We can use for loop to inset many documents at once. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) students = [ {'name':'David','country':'UK','city':'London','age':34}, {'name':'John','country':'Sweden','city':'Stockholm','age':28}, {'name':'Sami','country':'Finland','city':'Helsinki','age':25}, ] for student in students: db.students.insert_one(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### MongoDB Find The *find()* and *findOne()* methods are common method to find data in a collection in mongoDB database. It is similar to the SELECT statement in a MySQL database. Let us use the _find_one()_ method to get a document in a database collection. - \*find_one({"\_id": ObjectId("id"}): Gets the first occurrence if an id is not provided ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database student = db.students.find_one() print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Helsinki', 'city': 'Helsinki', 'age': 250} ``` The above query returns the first entry but we can target specific document using specific \_id. Let us do one example, use David's id to get David object. '\_id':ObjectId('5df68a23f106fe2d315bbc8c') ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module from bson.objectid import ObjectId # id object MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database student = db.students.find_one({'_id':ObjectId('5df68a23f106fe2d315bbc8c')}) print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` We have seen, how to use _find_one()_ using the above examples. Let's move one to _find()_ - _find()_: returns all the occurrence from a collection if we don't pass a query object. The object is pymongo.cursor object. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find() for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` We can specify which fields to return by passing second object in the _find({}, {})_. 0 means not include and 1 means include but we can not mix 0 and 1, except for \_id. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find({}, {"_id":0, "name": 1, "country":1}) # 0 means not include and 1 means include for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'name': 'Asabeneh', 'country': 'Finland'} {'name': 'David', 'country': 'UK'} {'name': 'John', 'country': 'Sweden'} {'name': 'Sami', 'country': 'Finland'} ``` ### Find with Query In mongoDB find take a query object. We can pass a query object and we can filter the documents we like to filter out. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = { "country":"Finland" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Query with modifiers ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = { "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Find query with modifier ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = { "country":"Finland", "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Query with modifiers ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Limiting documents We can limit the number of documents we return using the _limit()_ method. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database db.students.find().limit(3) ``` ### Find with sort By default, sort is in ascending order. We can change the sorting to descending order by adding -1 parameter. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find().sort('name') for student in students: print(student) students = db.students.find().sort('name',-1) for student in students: print(student) students = db.students.find().sort('age') for student in students: print(student) students = db.students.find().sort('age',-1) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Ascending order ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Descending order ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ### Update with query We will use *update_one()* method to update one item. It takes two object one is a query and the second is the new object. The first person, Asabeneh got a very implausible age. Let us update Asabeneh's age. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {'age':250} new_value = {'$set':{'age':38}} db.students.update_one(query, new_value) # lets check the result if the age is modified for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` When we want to update many documents at once we use *upate_many()* method. ### Delete Document The method *delete_one()* deletes one document. The *delete_one()* takes a query object parameter. It only removes the first occurrence. Let us remove one John from the collection. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {'name':'John'} db.students.delete_one(query) for student in db.students.find(): print(student) # lets check the result if the age is modified for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` As you can see John has been removed from the collection. When we want to delete many documents we use *delete_many()* method, it takes a query object. If we pass an empty query object to *delete_many({})* it will delete all the documents in the collection. ### Drop a collection Using the _drop()_ method we can delete a collection from a database. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database db.students.drop() ``` Now, we have deleted the students collection from the database. ## 💻 Exercises: Day 27 🎉 CONGRATULATIONS ! 🎉 [<< Day 26](../26_Day_Python_web/26_python_web.md) | [Day 28 >>](../28_Day_API/28_API.md) ================================================ FILE: 28_Day_API/28_API.md ================================================

30 Days Of Python: Day 28 - API

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 27](../27_Day_Python_with_mongodb/27_python_with_mongodb.md) | [Day 29 >>](../29_Day_Building_API/29_building_API.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 28](#-day-28) - [Application Programming Interface(API)](#application-programming-interfaceapi) - [API](#api) - [Building API](#building-api) - [HTTP(Hypertext Transfer Protocol)](#httphypertext-transfer-protocol) - [Structure of HTTP](#structure-of-http) - [Initial Request Line(Status Line)](#initial-request-linestatus-line) - [Initial Response Line(Status Line)](#initial-response-linestatus-line) - [Header Fields](#header-fields) - [The message body](#the-message-body) - [Request Methods](#request-methods) - [💻 Exercises: Day 28](#-exercises-day-28) # 📘 Day 28 # Application Programming Interface(API) ## API API stands for Application Programming Interface. The kind of API we will cover in this section is going to be Web APIs. Web APIs are the defined interfaces through which interactions happen between an enterprise and applications that use its assets, which also is a Service Level Agreement (SLA) to specify the functional provider and expose the service path or URL for its API users. In the context of web development, an API is defined as a set of specifications, such as Hypertext Transfer Protocol (HTTP) request messages, along with a definition of the structure of response messages, usually in an XML or a JavaScript Object Notation (JSON) format. Web API has been moving away from Simple Object Access Protocol (SOAP) based web services and service-oriented architecture (SOA) towards more direct representational state transfer (REST) style web resources. Social media services, web APIs have allowed web communities to share content and data between communities and different platforms. Using API, content that is created in one place dynamically can be posted and updated to multiple locations on the web. For example, Twitter's REST API allows developers to access core Twitter data and the Search API provides methods for developers to interact with Twitter Search and trends data. Many applications provide API end points. Some examples of API such as the countries [API](https://restcountries.eu/rest/v2/all), [cat's breed API](https://api.thecatapi.com/v1/breeds). In this section, we will cover a RESTful API that uses HTTP request methods to GET, PUT, POST and DELETE data. ## Building API RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data. In the previous sections, we have learned about python, flask and mongoDB. We will use the knowledge we acquire to develop a RESTful API using Python flask and mongoDB database. Every application which has CRUD(Create, Read, Update, Delete) operation has an API to create data, to get data, to update data or to delete data from a database. To build an API, it is good to understand HTTP protocol and HTTP request and response cycle. ## HTTP(Hypertext Transfer Protocol) HTTP is an established communication protocol between a client and a server. A client in this case is a browser and server is the place where you access data. HTTP is a network protocol used to deliver resources which could be files on the World Wide Web, whether they are HTML files, image files, query results, scripts, or other file types. A browser is an HTTP client because it sends requests to an HTTP server (Web server), which then sends responses back to the client. ## Structure of HTTP HTTP uses client-server model. An HTTP client opens a connection and sends a request message to an HTTP server and the HTTP server returns response message which is the requested resources. When the request response cycle completes the server closes the connection. ![HTTP request response cycle](../images/http_request_response_cycle.png) The format of the request and response messages are similar. Both kinds of messages have - an initial line, - zero or more header lines, - a blank line (i.e. a CRLF by itself), and - an optional message body (e.g. a file, or query data, or query output). Let us an example of request and response messages by navigating this site:https://thirtydaysofpython-v1-final.herokuapp.com/. This site has been deployed on Heroku free dyno and in some months may not work because of high request. Support this work to make the server run all the time. ![Request and Response header](../images/request_response_header.png) ## Initial Request Line(Status Line) The initial request line is different from the response. A request line has three parts, separated by spaces: - method name(GET, POST, HEAD) - path of the requested resource, - the version of HTTP being used. eg GET / HTTP/1.1 GET is the most common HTTP that helps to get or read resource and POST is a common request method to create resource. ### Initial Response Line(Status Line) The initial response line, called the status line, also has three parts separated by spaces: - HTTP version - Response status code that gives the result of the request, and a reason which describes the status code. Example of status lines are: HTTP/1.0 200 OK or HTTP/1.0 404 Not Found Notes: The most common status codes are: 200 OK: The request succeeded, and the resulting resource (e.g. file or script output) is returned in the message body. 500 Server Error A complete list of HTTP status code can be found [here](https://httpstatuses.com/). It can be also found [here](https://httpstatusdogs.com/). ### Header Fields As you have seen in the above screenshot, header lines provide information about the request or response, or about the object sent in the message body. ```sh GET / HTTP/1.1 Host: thirtydaysofpython-v1-final.herokuapp.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 Sec-Fetch-User: ?1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: navigate Referer: https://thirtydaysofpython-v1-final.herokuapp.com/post Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.9,fi-FI;q=0.8,fi;q=0.7,en-CA;q=0.6,en-US;q=0.5,fr;q=0.4 ``` ### The message body An HTTP message may have a body of data sent after the header lines. In a response, this is where the requested resource is returned to the client (the most common use of the message body), or perhaps explanatory text if there's an error. In a request, this is where user-entered data or uploaded files are sent to the server. If an HTTP message includes a body, there are usually header lines in the message that describe the body. In particular, The Content-Type: header gives the MIME-type of the data in the body(text/html, application/json, text/plain, text/css, image/gif). The Content-Length: header gives the number of bytes in the body. ### Request Methods The GET, POST, PUT and DELETE are the HTTP request methods which we are going to implement an API or a CRUD operation application. 1. GET: GET method is used to retrieve and get information from the given server using a given URI. Requests using GET should only retrieve data and should have no other effect on the data. 2. POST: POST request is used to create data and send data to the server, for example, creating a new post, file upload, etc. using HTML forms. 3. PUT: Replaces all current representations of the target resource with the uploaded content and we use it modify or update data. 4. DELETE: Removes data ## 💻 Exercises: Day 28 1. Read about API and HTTP 🎉 CONGRATULATIONS ! 🎉 [<< Day 27](../27_Day_Python_with_mongodb/27_python_with_mongodb.md) | [Day 29 >>](../29_Day_Building_API/29_building_API.md) ================================================ FILE: 29_Day_Building_API/29_building_API.md ================================================

30 Days Of Python: Day 29 - Building an API

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 28](../28_Day_API/28_API.md) | [Day 29 >>](../30_Day_Conclusions/30_conclusions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 29](#day-29) - [Building API](#building-api) - [Structure of an API](#structure-of-an-api) - [Retrieving data using get](#retrieving-data-using-get) - [Getting a document by id](#getting-a-document-by-id) - [Creating data using POST](#creating-data-using-post) - [Updating using PUT](#updating-using-put) - [Deleting a document using Delete](#deleting-a-document-using-delete) - [💻 Exercises: Day 29](#-exercises-day-29) ## Day 29 ## Building API In this section, we will cove a RESTful API that uses HTTP request methods to GET, PUT, POST and DELETE data. RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data. In the previous sections, we have learned about python, flask and mongoDB. We will use the knowledge we acquire to develop a RESTful API using python flask and mongoDB. Every application which has CRUD(Create, Read, Update, Delete) operation has an API to create data, to get data, to update data or to delete data from database. The browser can handle only get request. Therefore, we have to have a tool which can help us to handle all request methods(GET, POST, PUT, DELETE). Examples of API - Countries API: https://restcountries.eu/rest/v2/all - Cats breed API: https://api.thecatapi.com/v1/breeds [Postman](https://www.getpostman.com/) is a very popular tool when it comes to API development. So, if you like to do this section you need to [download postman](https://www.getpostman.com/). An alternative of Postman is [Insomnia](https://insomnia.rest/download). ![Postman](../images/postman.png) ### Structure of an API An API end point is a URL which can help to retrieve, create, update or delete a resource. The structure looks like this: Example: https://api.twitter.com/1.1/lists/members.json Returns the members of the specified list. Private list members will only be shown if the authenticated user owns the specified list. The name of the company name followed by version followed by the purpose of the API. The methods: HTTP methods & URLs The API uses the following HTTP methods for object manipulation: ```sh GET Used for object retrieval POST Used for object creation and object actions PUT Used for object update DELETE Used for object deletion ``` Let us build an API which collects information about 30DaysOfPython students. We will collect the name, country, city, date of birth, skills and bio. To implement this API, we will use: - Postman - Python - Flask - MongoDB ### Retrieving data using get In this step, let us use dummy data and return it as a json. To return it as json, will use json module and Response module. ```py # let's import the flask from flask import Flask, Response import json import os app = Flask(__name__) @app.route('/api/v1.0/students', methods = ['GET']) def students (): student_list = [ { 'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'skills':['HTML', 'CSS','JavaScript','Python'] }, { 'name':'David', 'country':'UK', 'city':'London', 'skills':['Python','MongoDB'] }, { 'name':'John', 'country':'Sweden', 'city':'Stockholm', 'skills':['Java','C#'] } ] return Response(json.dumps(student_list), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` When you request the http://localhost:5000/api/v1.0/students url on the browser you will get this: ![Get on browser](../images/get_on_browser.png) When you request the http://localhost:5000/api/v1.0/students url on the browser you will get this: ![Get on postman](../images/get_on_postman.png) In stead of displaying dummy data let us connect the flask application with MongoDB and get data from mongoDB database. ```py # let's import the flask from flask import Flask, Response import json import pymongo import os app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` By connecting the flask, we can fetch students collection data from the thirty_days_of_python database. ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8c" }, "name": "David", "country": "UK", "city": "London", "age": 34 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8e" }, "name": "Sami", "country": "Finland", "city": "Helsinki", "age": 25 } ] ``` ### Getting a document by id We can access single document using an id, let's access Asabeneh using his id. http://localhost:5000/api/v1.0/students/5df68a21f106fe2d315bbc8b ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo import os app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 } ] ``` ### Creating data using POST We use the POST request method to create data ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime import os app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return ; def update_student (id): if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Updating using PUT ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime import os app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return def update_student (id): if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Deleting a document using Delete ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime import os app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return ; @app.route('/api/v1.0/students/', methods = ['DELETE']) def delete_student (id): db.students.delete_one({"_id":ObjectId(id)}) return if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ## 💻 Exercises: Day 29 1. Implement the above example and develop [this](https://thirtydayofpython-api.herokuapp.com/) 🎉 CONGRATULATIONS ! 🎉 [<< Day 28](../28_Day_API/28_API.md) | [Day 30 >>](../30_Day_Conclusions/30_conclusions.md) ================================================ FILE: 30_Day_Conclusions/30_conclusions.md ================================================

30 Days Of Python: Day 30- Conclusions

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 29](../29_Day_Building_API/29_building_API.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 30](#day-30) - [Conclusions](#conclusions) - [Testimony](#testimony) # Day 30 ## Conclusions In the process of preparing this material I have learned quite a lot and you have inspired me to do more. Congratulations for making it to this level. If you have done all the exercise and the projects, now you are capable to go to a data analysis, data science, machine learning or web development paths. [Support the author for more educational materials](https://www.paypal.com/paypalme/asabeneh). ## Testimony Now it is time to express your thoughts about the Author and 30DaysOfPython. You can leave your testimonial on this [link](https://www.asabeneh.com/testimonials) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback 🎉 CONGRATULATIONS ! 🎉 [<< Day 29](../29_Day_Building_API/29_building_API.md) ================================================ FILE: Chinese/02_variables_builtin_functions.md ================================================

30 天 Python:第二天 - 变量, 内置函数

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第一天](./readme.md) | [第三天 >>](./03_operators.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) _阅读大约需要:12m_ - [📘 第二天](#-第二天) - [内置函数](#内置函数) - [变量](#变量) - [在一行中声明多个变量](#在一行中声明多个变量) - [数据类型](#数据类型) - [数据类型转换](#数据类型转换) - [Numbers](#numbers) - [💻 练习 - 第二天](#-练习---第二天) - [练习: 1级](#练习-1级) - [练习: 2级](#练习-2级) # 📘 第二天 ## 内置函数 Python 提供了很多内置函数。内置函数是全局可用的,这意味着您可以在不导入或配置的情况下使用内置函数。以下是几种最常用的 Python 内置函数:_print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_, _dir()_。在下表中,您将看到从 [Python 文档](https://docs.python.org/3.9/library/functions.html)中获取的详尽的 Python 内置函数列表。 ![Built-in Functions](../images/builtin-functions.png) 让我们打开 Python shell 并开始使用一些最常见的内置函数。 ![Built-in functions](../images/builtin-functions_practice.png) 使用不同的内置函数进行更多练习 ![Help and Dir Built in Functions](../images/help_and_dir_builtin.png) 如上所示,Python 有保留字。我们不能使用保留字来声明变量或函数。我们将在下一节中介绍变量。 我相信,现在您已经熟悉了内置函数。让我们再练习一下内置函数,然后我们继续下一节。 ![Min Max Sum](../images/builtin-functional-final.png) ## 变量 变量将数据存储在计算机内存中。在许多编程语言中,建议使用助记符变量。助记符变量是一个易于记忆和关联的变量名。变量指的是存储数据的内存地址。 命名变量时,不允许以数字开头、使用特殊字符和连字符。变量可以有一个简短的名称(如 x、y、z),但强烈建议使用更具描述性的名称(名字、姓氏、年龄、国家/地区)。 Python 变量名规则 - 变量名必须以字母或下划线字符开头 - 变量名不能以数字开头 - 变量名只能包含字母数字字符和下划线(A-z、0-9 和 \_ ) - 变量名区分大小写(firstname、Firstname、FirstName 和 FIRSTNAME 是不同的变量) 以下是一些有效变量名的示例: ```shell firstname lastname age country city first_name last_name capital_city _if # 如果我们想使用保留字作为变量 year_2021 year2021 current_year_2021 birth_year num1 num2 ``` 无效的变量名 ```shell first-name first@name first$name num-1 1num ``` 我们将使用许多 Python 开发人员采用的标准 Python 变量命名样式。Python 开发人员使用蛇形命名法 (snake_case) 变量命名约定。对于包含多个单词的变量,我们在每个单词后使用下划线(例如 first_name、last_name、engine_rotation_speed)。下面的示例是变量的标准命名示例,当变量名称超过一个单词时,需要使用下划线。 当我们将某种数据类型分配给变量时,这称为变量声明。例如,在下面的例子中,我的名字被分配给变量 first_name。等号是赋值运算符。赋值意味着将数据存储在变量中。Python 中的等号与数学中的等号不同。 _示例:_ ```py # Python 中的变量 first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` 让我们使用 _print()_ 和 _len()_ 内置函数。打印函数可以接受无限数量的参数。参数是一个值,我们可以将其传递或放在函数括号内,请参见下面的示例。 **示例:** ```py print('Hello, World!') # The text Hello, World! is an argument print('Hello',',', 'World','!') # it can take multiple arguments, four arguments have been passed print(len('Hello, World!')) # it takes only one argument ``` 让我们打印并算出在上面声明的变量的长度: **示例:** ```py # 打印变量的值 print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### 在一行中声明多个变量 多个变量也可以在同一行中声明: **示例:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` 使用内置函数 _input()_ 获取用户输入。让我们从用户那里得到的数据并赋值给 first_name 和 age 变量。 . **示例:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## 数据类型 Python 中有多种数据类型。为了识别数据类型,我们使用 _type_ 内置函数。我想请您熟练掌握不同的数据类型。当涉及到编程时,一切都与数据类型有关。我在一开始就介绍了数据类型,现在又提到了,因为每个主题都与数据类型有关。我们将在数据类型各自的章节中做更详细的介绍。 ## 数据类型转换 - 检查数据类型:为了检查某些数据/变量的数据类型,我们使用 _type_ 函数 **示例:** ```py # python 中不同的数据类型 # 声明一些有各种数据类型的变量 first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, 不用担心,这并不是我真实的年龄 :) # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - 数据类型转换:将一种数据类型转换为另一种数据类型。我们使用 _int()_、_float()_、_str()_、_list_、_set_ 当我们进行算术运算时,字符串数字应首先转换为 int 或 float,否则将返回错误。如果我们将数字与字符串连接起来,则应首先将数字转换为字符串。我们将在字符串部分讨论连接。 **示例:** ```py # 整型 到 浮点型 num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # 浮点型 到 整型 gravity = 9.81 print(int(gravity)) # 9 # 整型 到 字符串 num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # 字符串 到 整型或浮点型 num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # 字符串 到 列表 first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Number Python 中不同的数字类型 - Integer:整型数字(负数, 0 以及 正数) 示例: ... -3, -2, -1, 0, 1, 2, 3 ... - Float:浮点数 示例 ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex:复数 示例 1 + j, 2 + 4j, 1 - 1j 🌕 你太棒了。你刚刚完成了第 2 天的挑战,在通往成功的路上又前进了一步。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第二天 ### 练习: 1级 1. 在 30DaysOfPython 文件夹内创建一个 day_2 文件夹。在这个文件夹里创建一个 variables.py 文件 2. 输入注释 '第二天: 30 Days of python programming' 3. 声明一个 first name 变量,并为它赋值 4. 声明一个 last name 变量,并为它赋值 5. 声明一个 full name 变量,并为它赋值 6. 声明一个 country 变量,并为它赋值 7. 声明一个 city 变量,并为它赋值 8. 声明一个 age 变量,并为它赋值 9. 声明一个 year 变量,并为它赋值 10. 声明一个 is_married 变量,并为它赋值 11. 声明一个 is_true 变量,并为它赋值 12. 声明一个 is_light_on 变量,并为它赋值 13. 在一行中声明多个变量 ### 练习: 2级 1. 使用 _type()_ 内置函数检查你声明变量的数据类型 1. 使用 _len()_ 内置函数,算出你 first name 变量的长度 1. 比较你 first name 和 last name 变量的长度 1. 声明变量 num_one 为5,num_two 为4 1. 将 num_one 和 num_two 相加,并赋值给 total 变量 2. 将 num_one 和 num_two 相减,并赋值给 diff 变量 3. 将 num_one 和 num_two 相乘,并赋值给 product 变量 4. 将 num_one 和 num_two 相乘,并赋值给 division 变量 5. 使用模数除法求出 num_two 除以 num_one 的结果,并将结果赋给变量 remainder 6. 计算 num_one 的 num_two 次方并将值赋给变量 exp 7. 计算 num_one 除以 num_two 商的整数部分(整除操作),并将结果赋给变量 floor_division 1. 圆的半径为 30 米。 1. 计算圆的面积并将值赋给名为 _area_of_circle_ 的变量 2. 计算圆的周长并将值赋给名为 _circum_of_circle_ 的变量 3. 将半径作为用户输入并计算面积。 1. 使用内置输入函数从用户那里获取名字、姓氏、国家和年龄,并将值存储到相应的变量名中 1. 在 Python shell 或文件中运行 help('keywords') 检查 Python 保留字或关键字 🎉 恭喜 ! 🎉 [<< 第一天](./readme.md) | [第三天 >>](./03_operators.md) ================================================ FILE: Chinese/03_operators.md ================================================

30 天 Python:第三天 - 运算符

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第二天](./02_variables_builtin_functions.md) | [第四天 >>](./04_strings.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) 阅读大约需要:12m - [📘 第三天](#-第三天) - [Boolean](#boolean) - [运算符](#运算符) - [赋值运算符](#赋值运算符) - [算术运算符](#算术运算符) - [比较运算符](#比较运算符) - [逻辑运算符](#逻辑运算符) - [💻 练习 - 第三天](#-练习---第三天) # 📘 第三天 ## Boolean 布尔类型表示两个值之一:_True_ 或 _False_。一旦我们开始使用比较运算符,这些数据类型的使用将变得清晰。第一个字母 **T** 表示 True,**F** 表示 False,与 JavaScript 不同,Python 的布尔类型的首字母应该是大写。 **示例: 布尔类型的值** ```py print(True) print(False) ``` ## 运算符 Python 语言支持多种类型的运算符。在本节中,我们将重点介绍其中的一些。 ### 赋值运算符 赋值运算符用于将值赋值给变量。让我们以 = 为例。在数学中,等号表示两个值相等,但在 Python 中,它表示我们正在将一个值存储在某个变量中,我们称之为赋值或将值分配给变量。下表显示了不同类型的 Python 赋值运算符,摘自 [w3school](https://www.w3schools.com/python/python_operators.asp)。 ![Assignment Operators](../images/assignment_operators.png) ### 算术运算符: - 加(+): a + b - 减(-): a - b - 乘(*): a * b - 除(/): a / b - 模运算(%): a % b - 整除(//): a // b - 指数运算(**): a ** b ![Arithmetic Operators](../images/arithmetic_operators.png) **示例:整型** ```py # Python 中的算术运算符 # 整型 print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division: ', 4 / 2) # 2.0 Python 中的除法运算符返回浮点数 print('Division: ', 6 / 2) # 3.0 print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, 返回商的整数部分 print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, 返回余数 print('Exponentiation: ', 2 ** 3) # 8 代表 2 * 2 * 2 ``` **示例:浮点数** ```py # 浮点数 print('Floating Point Number, PI', 3.14) print('Floating Point Number, gravity', 9.81) ``` **示例:复数** ```py # 复数 print('Complex number: ', 1 + 1j) print('Multiplying complex numbers: ',(1 + 1j) * (1 - 1j)) ``` 让我们声明一个变量并分配一个数字类型。我下面使用单个字符变量,但请不要养成这样命名变量的习惯。变量名应始终便于记忆。 **示例:** ```python # 首先声明变量 a = 3 # a 是一个变量名,3 是一个整型值 b = 2 # b 是一个变量名,2 是一个整型值 # 进行算术运算,并将结果赋值给变量 total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # 应该使用 sum 而不是 total,但 sum 是一个内置函数 - 尽量避免覆盖内置函数 print(total) # 如果不打印标签字符串,就不知道值是怎么计算出来的 print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponentiation) ``` **示例:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # 声明变量,并把声明语句放在一起 num_one = 3 num_two = 4 # 算术运算 total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_one remainder = num_two % num_one # 使用标签打印值 print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` 让我们开始使用小数点并开始利用我们已经知道的知识来计算(面积、体积、密度、重量、周长、距离、力)。 **示例:** ```py # 计算圆的面积 radius = 10 # 圆的半径 area_of_circle = 3.14 * radius ** 2 # 两个 * 符号表示指数或幂 print('Area of a circle:', area_of_circle) # 计算矩形面积 length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # 计算物体重量 mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # 为重量添加单位 # 计算液体密度 mass = 75 # 单位是 Kg volume = 0.075 # 单位是 m³ density = mass / volume # 1000 Kg/m³ ``` ### 比较运算符 在编程中,我们使用比较运算符来比较两个值。我们检查一个值是否大于或小于或等于另一个值。下表显示了 Python 比较运算符,摘自 [w3shool](https://www.w3schools.com/python/python_operators.asp)。 ![Comparison Operators](../images/comparison_operators.png) **示例:比较运算符** ```py print(3 > 2) # True, 因为3大于2 print(3 >= 2) # True, 因为3大于2 print(3 < 2) # False, 因为3大于2 print(2 < 3) # True, 因为2小于3 print(2 <= 3) # True, 因为2小于3 print(3 == 2) # False, 因为3不等于2 print(3 != 2) # True, 因为3不等于2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # 比较得到 True 或者 False print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) ``` 除了上述比较运算符之外,Python 还使用: - _is_: 如果变量相等,返回 True(x is y) - _is not_: 如果变量不相等,返回 True(x is not y) - _in_: 如果列表包含某变量,返回 True(x in y) - _not in_: 如果列表不包含某变量(x in y) ```py print('1 is 1', 1 is 1) # True - 因为值相等 print('1 is not 2', 1 is not 2) # True - 因为值不相等 print('A in Asabeneh', 'A' in 'Asabeneh') # True - 字符串中含有元素 A print('B in Asabeneh', 'B' in 'Asabeneh') # False - 没有大写字母 B print('coding' in 'coding for all') # True - 因为 coding 都在 'coding for all' 中 print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True ``` ### 逻辑运算符 不像其他的编程语言,Python 使用关键字 _and_、_or_ 和 _not_ 作为逻辑运算符。逻辑运算符用于组合条件语句: ![Logical Operators](../images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # True - 因为两个语句都是 True print(3 > 2 and 4 < 3) # False - 因为其中一个语句是 False print(3 < 2 and 4 < 3) # False - 因为两个语句都是 False print('True and True: ', True and True) print(3 > 2 or 4 > 3) # True - 因为两个语句都是 True print(3 > 2 or 4 < 3) # True - 因为其中一个语句是 True print(3 < 2 or 4 < 3) # False - 因为两个语句都是 False print('True or False:', True or False) print(not 3 > 2) # False - 因为 3 > 2 是 True, not True 得到 False print(not True) # False - not 运算符把 True 改为 False print(not False) # True print(not not True) # True print(not not False) # False ``` 🌕 精力充沛!你刚刚完成了第 3 天的挑战,在通往伟大的道路上又前进了三步。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第三天 1. 声明一个值是你年龄的整型变量 2. 声明一个值是你身高的浮点型变量 3. 声明一个值是复数变量 4. 编写一个脚本,提示用户输入三角形的底和高,并计算这个三角形的面积(面积 = 0.5 x b x h)。 ```py 输入底: 20 输入高: 10 三角形的面积是 100 ``` 5. 编写一个脚本,提示用户输入三角形的边 a、边 b 和边 c。计算三角形的周长(周长 = a + b + c)。 ```py 输入边 a: 5 输入边 b: 4 输入边 c: 3 三角形的周长是 12 ``` 6. 提示用户输入矩形的长度和宽度。计算其面积(面积 = 长 x 宽)和周长(周长 = 2 x (长 + 宽)) 7. 提示用户输入圆的半径。计算面积(面积 = pi x r x r)和周长(周长 = 2 x pi x r),其中 pi = 3.14。 8. 计算 y = 2x -2 的斜率、x 截距和 y 截距 9. 斜率是 (m = y2-y1/x2-x1)。找到点 (2, 2) 和点 (6,10) 之间的斜率和[欧几里得距离](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.)。 10. 比较练习 8 和练习 9 中的斜率。 11. 计算 y 的值(y = x^2 + 6x + 9)。尝试使用不同的 x 值,并找出 y 何时为 0。 12. 求出 'python' 和 'dragon' 的长度,并进行一个假的比较语句。 13. 使用 _and_ 运算符检查 'python' 和 'dragon' 中是否都有 'on'。 14. _I hope this course is not full of jargon_。使用 _in_ 运算符检查句子中是否有 _jargon_。 15. 'dragon' 和 'python' 中都没有 'on'。 16. 找到文本 _python_ 的长度,并将该值转换为浮点数,然后将其转换为字符串。 17. 偶数可以被 2 整除,余数为零。如何使用 Python 检查一个数字是偶数还是奇数? 18. 检查 7 除以 3 的Floor除法是否等于 2.7 的整数转换值。 19. 检查 '10' 的类型是否等于 10 的类型。 20. 检查 int('9.8') 是否等于 10。 21. 编写一个脚本,提示用户输入工时和时薪。计算用户的工资。 ```py 输入工时: 40 输入时薪: 28 你每周的薪资是 1120 ``` 22. 编写一个脚本,提示用户输入年数。计算一个人可以活多少秒。假设一个人可以活一百年 ```py 输入你已经活了多少年: 100 你已经活了 3153600000 秒. ``` 23. 编写一个 Python 脚本,显示以下表格 ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` 🎉 恭喜 ! 🎉 [<< 第二天](./02_variables_builtin_functions.md) | [第四天 >>](./04_strings.md) ================================================ FILE: Chinese/04_strings.md ================================================

30 天 Python:第四天 - Strings

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第三天](./03_operators.md) | [第五天 >>](./05_lists.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) 阅读大约需要:20m - [第四天](#第四天) - [字符串](#字符串) - [创建字符串](#创建字符串) - [字符串串联](#字符串串联) - [字符串中的转译序列](#字符串中的转译序列) - [字符串格式化](#字符串格式化) - [传统风格字符串格式化 (% 操作符)](#传统风格字符串格式化--操作符) - [新式字符串格式化 (str.format)](#新式字符串格式化-strformat) - [字符串插值 / f-Strings (Python 3.6+)](#字符串插值--f-strings-python-36) - [Python 字符串是字符序列](#python-字符串是字符序列) - [拆解字符](#拆解字符) - [通过索引获取字符串中的字符](#通过索引获取字符串中的字符) - [字符串切片](#字符串切片) - [字符串反转](#字符串反转) - [切片时跳过字符](#切片时跳过字符) - [字符串方法](#字符串方法) - [💻 练习 - 第四天](#-练习---第四天) # 第四天 ## 字符串 文本是一种字符串数据类型。任何以文本形式书写的数据类型都是字符串。任何用单引号、双引号或三引号括起来的数据都是字符串。有很多方法和内置函数来处理字符串类型的数据。使用 len() 方法获取字符串的长度。 ### 创建字符串 ```py letter = 'P' # 字符串可以是一个字符,也可以是一堆文字 print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # 字符串使用单引号或双引号构建,"Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of Python Challenge" print(sentence) ``` 多行字符串使用三个单引号 (''') 或者三个双引号 (""") 创建。 以下为示例: ```py multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # 换种方式 multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) ``` ### 字符串串联 我们可以将字符串连接在一起。合并或连接字符串称为串联。请看下面的示例: ```py first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # 使用 len() 内置函数获取字符串的长度 print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 16 ``` ### 字符串中的转译序列 在 Python 和其他编程语言中,\ 后跟一个字符是转义序列。以下是一些常见的转义序列: - \n: 换行 - \t: 制表符(4个空格) - \\\\: 反斜杠 - \\': 单引号 - \\": 双引号 现在,让我们看看上面的转义序列的用法和示例。 ```py print('I hope everyone is enjoying the Python Challenge.\nAre you ?') # 换行 print('Days\tTopics\tExercises') # 增加一个制表符 print('Day 1\t5\t5') print('Day 2\t6\t20') print('Day 3\t5\t23') print('Day 4\t1\t35') print('This is a backslash symbol (\\)') # 输出反斜杠 print('In every programming language it starts with \"Hello, World!\"') # 在单引号里写双引号 # 输出 I hope every one is enjoying the Python Challenge. Are you ? Days Topics Exercises Day 1 5 5 Day 2 6 20 Day 3 5 23 Day 4 1 35 This is a backslash symbol (\) In every programming language it starts with "Hello, World!" ``` ### 字符串格式化 #### 传统风格字符串格式化 (% 操作符) 在 Python 中有许多格式化字符串的方法。本节,我们将介绍其中一些方法。 “%”运算符用于格式化包含在“元组”(固定大小列表)中的一组变量,以及格式字符串,其中包含普通文本以及“参数说明符”、特殊符号如“%s”、“%d”、“%f”、“%.数字f”。 - %s - 字符串 (或者任何可以用字符串表述的对象,例如数字) - %d - 整型 - %f - 浮点型 - "%.小数位数f" - 固定精度的浮点数 ```py # 仅字符串 first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am %s %s. I teach %s' %(first_name, last_name, language) print(formated_string) # 字符串和数字 radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of circle with a radius %d is %.2f.' %(radius, area) # 2 表示小数点后的 2 位有效数字 python_libraries = ['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas'] formated_string = 'The following are python libraries:%s' % (python_libraries) print(formated_string) # 输出 "The following are python libraries:['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas']" ``` #### 新式字符串格式化 (str.format) 这种格式化方式是在 Python 3 中引入的。 ```py first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am {} {}. I teach {}'.format(first_name, last_name, language) print(formated_string) a = 4 b = 3 print('{} + {} = {}'.format(a, b, a + b)) print('{} - {} = {}'.format(a, b, a - b)) print('{} * {} = {}'.format(a, b, a * b)) print('{} / {} = {:.2f}'.format(a, b, a / b)) # 限制保留两位小数 print('{} % {} = {}'.format(a, b, a % b)) print('{} // {} = {}'.format(a, b, a // b)) print('{} ** {} = {}'.format(a, b, a ** b)) # 输出 4 + 3 = 7 4 - 3 = 1 4 * 3 = 12 4 / 3 = 1.33 4 % 3 = 1 4 // 3 = 1 4 ** 3 = 64 # 字符串和数字 radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of a circle with a radius {} is {:.2f}.'.format(radius, area) # 保留两位小数 print(formated_string) ``` #### 字符串插值 / f-Strings (Python 3.6+) 另一种新的字符串格式化是字符串插值,f-strings。字符串以 f 开头,我们可以在相应的位置注入数据。 ```py a = 4 b = 3 print(f'{a} + {b} = {a +b}') print(f'{a} - {b} = {a - b}') print(f'{a} * {b} = {a * b}') print(f'{a} / {b} = {a / b:.2f}') print(f'{a} % {b} = {a % b}') print(f'{a} // {b} = {a // b}') print(f'{a} ** {b} = {a ** b}') ``` ### Python 字符串是字符序列 Python 字符串是字符序列,与其他 Python 有序对象 - 列表和元组 - 共享基本访问方法。从字符串中提取单个字符的最简单方法(以及从任何序列中提取单个成员的方法)是将它们解压缩到相应的变量中。 #### 拆解字符 ``` language = 'Python' a,b,c,d,e,f = language # 拆解字符串中的字符并赋值给变量 print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n ``` #### 通过索引获取字符串中的字符 在编程中,计数从零开始。因此,字符串的第一个字母位于零索引处,字符串的最后一个字母位于字符串长度减一处。 ![String index](../images/string_index.png) ```py language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n ``` 如果我们想从右边开始,我们可以使用负索引。-1 是最后一个索引。 ```py language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o ``` #### 字符串切片 在 Python 中,我们可以将字符串切片为子字符串。 ```py language = 'Python' first_three = language[0:3] # 从零索引开始,直到 3 但不包括 3 print(first_three) #Pyt last_three = language[3:6] print(last_three) # hon # 另一种方式 last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon ``` #### 字符串反转 我们可以轻松地反转字符串。 ```py greeting = 'Hello, World!' print(greeting[::-1]) # !dlroW ,olleH ``` #### 切片时跳过字符 通过将步长参数传递给切片方法,可以在切片时跳过字符。 ```py language = 'Python' pto = language[0:6:2] # print(pto) # Pto ``` ### 字符串方法 有许多字符串方法可以让我们格式化字符串。在下面的示例中,我们使用其中一些: - capitalize(): 将字符串中的第一个字符转换为大写字母 ```py challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' ``` - count(): 返回字符串中子字符串的出现次数,count(子字符串,start=..,end=..)。start 是计数的起始索引,end 是计数的最后一个索引。 ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1, print(challenge.count('th')) # 2` ``` - endswith(): 判断字符串是否以特定的子字符串结尾,返回 True 或 False ```py challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False ``` - expandtabs(): 用空格替换制表符,默认制表符大小为 8。它接受制表符大小参数 ```py challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' ``` - find(): 返回子字符串第一次出现的索引,如果未找到则返回 -1 ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` - rfind(): 返回子字符串最后一次出现的索引,如果未找到则返回 -1 ```py challenge = 'thirty days of python' print(challenge.rfind('y')) # 16 print(challenge.rfind('th')) # 17 ``` - format(): 将字符串格式化为更美观的输出 有关字符串格式化的更多信息,请查看此[链接](https://www.programiz.com/python-programming/methods/string/format) ```py first_name = 'Asabeneh' last_name = 'Yetayeh' age = 250 job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I am {} years old. I live in {}.'.format(first_name, last_name, age, job, country) print(sentence) # I am Asabeneh Yetayeh. I am 250 years old. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi * radius ** 2 result = 'The area of a circle with radius {} is {}'.format(str(radius), str(area)) print(result) # The area of a circle with radius 10 is 314 ``` - index(): 返回子字符串的最小索引,附加参数表示起始和结束索引(默认为 0,字符串长度为 - 1)。如果未找到子字符串,则会引发 valueError。 ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.index(sub_string)) # 7 print(challenge.index(sub_string, 9)) # error ``` - rindex(): 返回子字符串的最大索引,附加参数表示起始和结束索引(默认为 0,字符串长度为 - 1)。 ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.rindex(sub_string)) # 8 print(challenge.rindex(sub_string, 9)) # error ``` - isalnum(): 判断字符串字符是否都是字母数字字符 ```py challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False, 空格不是字母字符 challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False ``` - isalpha(): 判断字符串字符是否都是字母字符 (a-z and A-Z) ```py challenge = 'thirty days of python' print(challenge.isalpha()) # False, 空格不是字母字符 challenge = 'ThirtyDaysPython' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False ``` - isdecimal(): 判断符串中的所有字符是否都是十进制 (0-9) ```py challenge = 'thirty days of python' print(challenge.isdecimal()) # False challenge = '123' print(challenge.isdecimal()) # True challenge = '\u00B2' print(challenge.isdigit()) # False challenge = '12 3' print(challenge.isdecimal()) # False, 含有空格 ``` - isdigit(): 判断字符串中的所有字符是否都是数字(0-9 和一些其他表示数字的 Unicode 字符) ```py challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.isdigit()) # True challenge = '\u00B2' print(challenge.isdigit()) # True ``` - isnumeric(): 判断字符串中的所有字符是否都是数字或与数字相关(就像 isdigit(),只是接受更多符号,如 ½) ```py num = '10' print(num.isnumeric()) # True num = '\u00BD' # ½ print(num.isnumeric()) # True num = '10.5' print(num.isnumeric()) # False ``` - isidentifier(): 判断有效的标识符 - 检查字符串是否是有效的变量名 ```py challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, 因为以数字开头 challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True ``` - islower(): 判断字符串中的所有字母是否都是小写 ```py challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False ``` - isupper(): 判断字符串中的所有字母是否都是大写 ```py challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True ``` - join(): 返回连接后的字符串 ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = ' '.join(web_tech) print(result) # 'HTML CSS JavaScript React' ``` ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '# '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' ``` - strip(): 删除字符串开头和结尾的所有给定字符 ```py challenge = 'thirty days of pythoonnn' print(challenge.strip('noth')) # 'irty days of py' ``` - replace(): 用给定的字符串替换子字符串 ```py challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' ``` - split(): 使用给定的字符串或空格作为分隔符来拆分字符串 ```py challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] challenge = 'thirty, days, of, python' print(challenge.split(', ')) # ['thirty', 'days', 'of', 'python'] ``` - title(): 返回标题大小写的字符串 ```py challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python ``` - swapcase(): 将所有大写字符转换为小写字符,将所有小写字符转换为大写字符 ```py challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON ``` - startswith(): 判断字符串是否以指定字符串开头 ```py challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False ``` 🌕 你是一个非凡的人,你拥有非凡的潜力。你刚刚完成了第 4 天的挑战,你在成为伟人的路上已经迈出四步。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第四天 1. 将字符串 'Thirty', 'Days', 'Of', 'Python' 连接为一个字符串 'Thirty Days Of Python'。 2. 将字符串 'Coding', 'For', 'All' 连接为一个字符串 'Coding For All'。 3. 声明一个名为 company 的变量,并将其赋值为初始值 "Coding For All"。 4. 使用 _print()_ 打印变量 company。 5. 使用 _len()_ 方法和 _print()_ 打印 company 字符串的长度。 6. 使用 _upper()_ 方法将所有字符更改为大写字母。 7. 使用 _lower()_ 方法将所有字符更改为小写字母。 8. 使用 _capitalize()_、_title()_ 和 _swapcase()_ 方法格式化字符串 _Coding For All_。 9. 切片出 _Coding For All_ 字符串的第一个单词。 10. 使用 index、find 或其他方法检查 _Coding For All_ 字符串是否包含单词 Coding。 11. 将字符串 'Coding For All' 中的单词 coding 替换为 Python。 12. 使用 replace 方法或其他方法将 Python for Everyone 替换为 Python for All。 13. 使用空格作为分隔符拆分字符串 'Coding For All'。 14. 在逗号处拆分字符串 'Facebook, Google, Microsoft, Apple, IBM, Oracle, Amazon'。 15. 字符串 _Coding For All_ 中索引 0 处的字符是什么。 16. 字符串 _Coding For All_ 的最后一个索引是什么。 17. 字符串 _Coding For All_ 中索引 10 处的字符是什么。 18. 为字符串 'Python For Everyone' 创建首字母缩略词或缩写 19. 为名称 'Coding For All' 创建首字母缩略词或缩写。 20. 使用索引确定 'Coding For All' 中 C 第一次出现的位置。 21. 使用索引确定 'Coding For All' 中 F 第一次出现的位置。 22. 使用 rfind 确定 'Coding For All People' 中 l 最后一次出现的位置。 23. 使用 index 或 find 查找以下句子中单词 'because' 第一次出现的位置:'You cannot end a sentence with because because because is a conjunction' 24. 使用 rindex 查找以下句子中单词 because 最后一次出现的位置:'You cannot end a sentence with because because because is a conjunction' 25. 删除以下句子中短语 'because because because':'You cannot end a sentence with because because because is a conjunction' 26. 查找以下句子中单词 'because' 第一次出现的位置:'You cannot end a sentence with because because because is a conjunction' 27. 删除以下句子中短语 'because 因为 because':'You cannot end a sentence with because because because is a conjunction' 28. '\'Coding For All' 是否以子字符串 _Coding_ 开头? 29. 'Coding For All' 是否以子字符串 _coding_ 结尾? 30. '   Coding For All      '  , 删除给定字符串中左右空格。 31. 当我们使用方法 isidentifier() 时,下列哪一个变量返回 True: - 30DaysOfPython - thirty_days_of_python 32. 以下列表包含一些 Python 库的名称:['Django', 'Flask', 'Bottle', 'Pyramid', 'Falcon']。使用空格连接字符串。 33. 使用换行转义序列分隔以下句子。 ```py I am enjoying this challenge. I just wonder what is next. ``` 34. 使用制表符转义序列输出以下内容。 ```py Name Age Country City Asabeneh 250 Finland Helsinki ``` 35. 使用字符串格式化方法输出以下内容: ```sh radius = 10 area = 3.14 * radius ** 2 The area of a circle with radius 10 is 314 meters square. ``` 36. 使用字符串格式化方法输出以下内容: ```sh 8 + 6 = 14 8 - 6 = 2 8 * 6 = 48 8 / 6 = 1.33 8 % 6 = 2 8 // 6 = 1 8 ** 6 = 262144 ``` 🎉 恭喜 ! 🎉 [<< 第三天](./03_operators.md) | [第五天 >>](./05_lists.md) ================================================ FILE: Chinese/05_lists.md ================================================

30 天 Python:第五天 - Lists

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第四天](./04_strings.md) | [第六天 >>](./06_tuples.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [第五天](#第五天) - [列表](#列表) - [如何创建列表](#如何创建列表) - [使用正索引访问列表项](#使用正索引访问列表项) - [使用负索引访问列表项](#使用负索引访问列表项) - [拆解列表项](#拆解列表项) - [列表切分](#列表切分) - [修改列表](#修改列表) - [检索列表项](#检索列表项) - [添加列表项](#添加列表项) - [插入列表项](#插入列表项) - [移除列表项](#移除列表项) - [使用 Pop 删除列表项](#使用-pop-删除列表项) - [使用 Del 删除列表项](#使用-del-删除列表项) - [清空列表项](#清空列表项) - [列表复制](#列表复制) - [连接列表](#连接列表) - [统计列表项](#统计列表项) - [查找项的索引](#查找项的索引) - [列表反转](#列表反转) - [列表排序](#列表排序) - [💻 练习 - 第五天](#-练习---第五天) - [练习: 1级](#练习-1级) - [练习: 2级](#练习-2级) # 第五天 ## 列表 Python 中有四种集合数据类型: - List:有序且可变的集合。允许重复的成员。 - Tuple:有序且不可变的集合。允许重复的成员。 - Set:无序、不可索引且不可变的集合,但我们可以向集合中添加新项。不允许重复的成员。 - Dictionary:无序、可变且可索引的集合。不允许重复的成员。 列表是不同数据类型的集合,有序且可修改(可变)。列表可以为空,也可以包含不同数据类型的项。 ### 如何创建列表 在 Python 中,我们可以通过两种方式创建列表: - 使用内置函数 list() ```py # 语法 lst = list() ``` ```py empty_list = list() # 这是一个空列表 print(len(empty_list)) # 0 ``` - 使用方括号,[] ```py # 语法 lst = [] ``` ```py empty_list = [] # 这是一个空列表 print(len(empty_list)) # 0 ``` 具有初始值的列表。我们使用 _len()_ 来检查列表的长度。 ```py fruits = ['banana', 'orange', 'mango', 'lemon'] # list of fruits vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] # list of vegetables animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # list of animal products web_techs = ['HTML', 'CSS', 'JS', 'React','Redux', 'Node', 'MongDB'] # list of web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # 打印列表及其长度 print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:',animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Countries:', countries) print('Number of countries:', len(countries)) ``` ```sh 输出 Fruits: ['banana', 'orange', 'mango', 'lemon'] Number of fruits: 4 Vegetables: ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] Number of vegetables: 5 Animal products: ['milk', 'meat', 'butter', 'yoghurt'] Number of animal products: 4 Web technologies: ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] Number of web technologies: 7 Countries: ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] Number of countries: 5 ``` - 列表可以包含不同数据类型的项 ```py lst = ['Asabeneh', 250, True, {'country':'Finland', 'city':'Helsinki'}] # 包含不同数据类型的列表 ``` ### 使用正索引访问列表项 我们使用索引访问列表中的每个项。列表索引从 0 开始。下图清楚地显示了索引从哪里开始。 ![List index](../images/list_index.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # 我们正在使用其索引访问第一项 print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] ``` ### 使用负索引访问列表项 负索引意味着从末尾开始,-1 指的是最后一项,-2 指的是倒数第二项。 ![List negative indexing](../images/list_negative_indexing.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[-4] last_fruit = fruits[-1] second_last = fruits[-2] print(first_fruit) # banana print(last_fruit) # lemon print(second_last) # mango ``` ### 拆解列表项 ```py lst = ['item1','item2','item3', 'item4', 'item5'] first_item, second_item, third_item, *rest = lst print(first_item) # item1 print(second_item) # item2 print(third_item) # item3 print(rest) # ['item4', 'item5'] ``` ```py # 示例一 fruits = ['banana', 'orange', 'mango', 'lemon','lime','apple'] first_fruit, second_fruit, third_fruit, *rest = fruits print(first_fruit) # banana print(second_fruit) # orange print(third_fruit) # mango print(rest) # ['lemon','lime','apple'] # 示例二 first, second, third,*rest, tenth = [1,2,3,4,5,6,7,8,9,10] print(first) # 1 print(second) # 2 print(third) # 3 print(rest) # [4,5,6,7,8,9] print(tenth) # 10 # 示例三 countries = ['Germany', 'France','Belgium','Sweden','Denmark','Finland','Norway','Iceland','Estonia'] gr, fr, bg, sw, *scandic, es = countries print(gr) print(fr) print(bg) print(sw) print(scandic) print(es) ``` ### 列表切分 - 正索引:我们可以通过指定开始、结束和步长来指定一系列正索引,返回值将是一个新列表。 (开始默认值为 0,结束默认值为 len(lst) - 1(最后一项),步长默认值为 1) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # 返回所有项 #与上面返回值相同 all_fruits = fruits[0:] # 如果不指定结束索引,将返回从开始到最后一项的所有项 orange_and_mango = fruits[1:3] # 不包含第一项 orange_mango_lemon = fruits[1:] orange_and_lemon = fruits[::2] # 我们使用了第三个参数,步长。 每两项取一条 - ['banana', 'mango'] ``` - 负索引:我们可以通过指定开始、结束和步长来指定一系列负索引,返回值将是一个新列表。 ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # 返回所有项 orange_and_mango = fruits[-3:-1] # 不包含最后一项,['orange', 'mango'] orange_mango_lemon = fruits[-3:] # 返回从-3到末尾的项,['orange', 'mango', 'lemon'] reverse_fruits = fruits[::-1] # 负步长将按相反顺序排列列表,['lemon', 'mango', 'orange', 'banana'] ``` ### 修改列表 列表是一个可变或可修改的有序集合。下面我们修改 fruit 列表。 ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) - 1 fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ``` ### 检索列表项 使用 *in* 运算符检查列表项是否为列表的成员。请参阅下面的示例。 ```py fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False ``` ### 添加列表项 要将项添加到现有列表的末尾,我们使用 *append()* 方法。 ```py # 语法 lst = list() lst.append(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] fruits.append('lime') # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime'] print(fruits) ``` ### 插入列表项 我们可以使用 *insert()* 方法在列表中的指定索引处插入单个项。请注意,其他项将向右移动。*insert()* 方法接受两个参数:索引和要插入的项。 ```py # 语法 lst = ['item1', 'item2'] lst.insert(index, item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # 在 orange 。 mango 中插入 apple print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] fruits.insert(3, 'lime') # ['banana', 'orange', 'apple', 'lime', 'mango', 'lemon'] print(fruits) ``` ### 移除列表项 - 使用 *remove()* 方法从列表中删除指定的项 ```py # 语法 lst = ['item1', 'item2'] lst.remove(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'banana'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon', 'banana'] - 此方法删除列表中第一次出现的项 fruits.remove('lemon') print(fruits) # ['orange', 'mango', 'banana'] ``` ### 使用 Pop 删除列表项 使用 *pop()* 方法删除指定索引(如果未指定索引,则删除最后一项): ```py # 语法 lst = ['item1', 'item2'] lst.pop() # 最后一项 lst.pop(index) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.pop() print(fruits) # ['banana', 'orange', 'mango'] fruits.pop(0) print(fruits) # ['orange', 'mango'] ``` ### 使用 Del 删除列表项 使用 *del* 关键字删除指定索引,也可以用于删除索引范围内的项。它还可以完全删除列表 ```py # 语法 lst = ['item1', 'item2'] del lst[index] # 只删除一项 del lst # 删除整个列表 ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[1] print(fruits) # ['orange', 'lemon', 'kiwi', 'lime'] del fruits[1:3] # 这将删除给定索引之间的项,因此不会删除索引为 3 的项! print(fruits) # ['orange', 'lime'] del fruits print(fruits) # 这里会提示: NameError: name 'fruits' is not defined ``` ### 清空列表项 使用 *clear()* 方法清空列表: ```py # 语法 lst = ['item1', 'item2'] lst.clear() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] ``` ### 列表复制 可以通过将其重新分配给新变量来复制列表: list2 = list1。现在,list2 是 list1 的引用,我们对 list2 进行的任何更改也将修改原始的 list1。但是有很多时候我们不想修改原始的列表,而是想要一个不同的副本。为了避免这个问题,我们使用 *copy()*。 ```py # 语法 lst = ['item1', 'item2'] lst_copy = lst.copy() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] ``` ### 连接列表 有几种方法可以连接或连接两个或多个列表。 - 加号 (+) ```py # 语法 list3 = list1 + list2 ``` ```py positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers = [-5,-4,-3,-2,-1] integers = negative_numbers + zero + positive_numbers print(integers) # [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables ) # ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` - 使用 *extend()* 方法 *extend()* 方法可以将列表附加到列表中。请参阅下面的示例。 ```py # 语法 list1 = ['item1', 'item2'] list2 = ['item3', 'item4', 'item5'] list1.extend(list2) ``` ```py num1 = [0, 1, 2, 3] num2= [4, 5, 6] num1.extend(num2) print('Numbers:', num1) # Numbers: [0, 1, 2, 3, 4, 5, 6] negative_numbers = [-5,-4,-3,-2,-1] positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) # Integers: [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits ) # Fruits and vegetables: ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` ### 统计列表项 使用 *count()* 方法返回列表中指定项出现的次数: ```py # 语法 lst = ['item1', 'item2'] lst.count(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 ``` ### 查找项的索引 *index()* 方法返回列表中项的索引: ```py # 语法 lst = ['item1', 'item2'] lst.index(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # 2, 第一次出现 ``` ### 列表反转 使用 *reverse()* 方法反转列表的顺序。 ```py # 语法 lst = ['item1', 'item2'] lst.reverse() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits) # ['lemon', 'mango', 'orange', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages) # [24, 25, 24, 26, 25, 24, 19, 22] ``` ### 列表排序 要对列表进行排序,我们可以使用 *sort()* 方法或内置函数 *sorted()*。*sort()* 方法将列表项按升序重新排序并修改原始列表。如果 *sort()* 方法的 reverse 参数为 true,则会按降序排列列表。 - sort(): 这个方法会修改原始列表 ```py # 语法 lst = ['item1', 'item2'] lst.sort() # ascending lst.sort(reverse=True) # descending ``` **示例:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) # 按字母排序, ['banana', 'lemon', 'mango', 'orange'] fruits.sort(reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) # [19, 22, 24, 24, 24, 25, 25, 26] ages.sort(reverse=True) print(ages) # [26, 25, 25, 24, 24, 24, 22, 19] ``` sorted(): 不会修改原始列表,而是返回一个新列表 **示例:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(sorted(fruits)) # ['banana', 'lemon', 'mango', 'orange'] # Reverse order fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits,reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ``` 🌕 你很勤奋,已经取得了很多成就。你刚刚完成了第 5 天的挑战,并且已经朝着伟大的目标迈出了 5 步。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第五天 ### 练习: 1级 1. 声明一个空列表 2. 声明一个包含 5 个以上项的列表 3. 查找列表的长度 4. 获取列表的第一项、中间项和最后一项 5. 声明一个名为 mixed_data_types 的列表,包含你的姓名、年龄、身高、婚姻状况和地址 6. 声明一个名为 it_companies 的列表,并分配初始值 Facebook、Google、Microsoft、Apple、IBM、Oracle 和 Amazon。 7. 使用 _print()_ 打印列表 8. 打印列表中的公司数 9. 打印第一、中间和最后一家公司 10. 修改其中一家公司的名称后打印列表 11. 向 it_companies 添加一家 IT 公司 12. 在公司列表中间插入一家 IT 公司 13. 将其中一家 it_companies 公司的名称更改为大写(不包括 IBM!) 14. 使用字符串 '#;  ' 连接 it_companies 15. 检查 it_companies 列表中是否存在某个公司。 16. 使用 sort() 方法对列表进行排序 17. 使用 reverse() 方法按降序反转列表 18. 从列表中切分出前 3 家公司 19. 从列表中切分出最后 3 家公司 20. 从列表中切分出中间的 IT 公司或公司 21. 从列表中删除第一家 IT 公司 22. 从列表中删除中间的 IT 公司或公司 23. 从列表中删除最后一家 IT 公司 24. 从列表中删除所有 IT 公司 25. 销毁 it_companies 列表 26. 连接以下列表: ```py front_end = ['HTML', 'CSS', 'JS', 'React', 'Redux'] back_end = ['Node','Express', 'MongoDB'] ``` 27. 在连接的列表中插入 Python 和 SQL 到变量 full_stack 之后。 ### 练习: 2级 1. 以下是 10 个学生的年龄列表: ```sh ages = [19, 22, 19, 24, 20, 25, 26, 24, 25, 24] ``` - 对列表进行排序,并找出最大和最小年龄 - 将最小年龄和最大年龄再次添加到列表中 - 找到年龄中位数(一个中间项或两个中间项除以二) - 找到平均年龄(所有项的总和除以它们的数量) - 找到年龄范围(最大减去最小) - 比较 (min - average) 和 (max - average) 的值,使用 _abs()_ 方法 1. 在 [国家列表](https://github.com/Taki-Ta/30-Days-Of-Python-Simplified_Chinese_Version/tree/master/data/countries.py) 中查找中间的国家 2. 将国家列表分成两个相等的列表(如果是偶数,如果不是,则第一个半多一个国家) 3. ['China', 'Russia', 'USA', 'Finland', 'Sweden', 'Norway', 'Denmark']。拆解前三个国家和剩下的北欧国家。 🎉 恭喜 ! 🎉 [<< 第四天](./04_strings.md) | [第六天 >>](./06_tuples.md) ================================================ FILE: Chinese/06_tuples.md ================================================

30 天 Python:第六天 - Tuples

Twitter Follow Author: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第五天](./05_lists.md) | [第七天 >>](./07_sets.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [第六天:](#第六天) - [元组](#元组) - [如何创建元组](#如何创建元组) - [元组长度](#元组长度) - [获取元组项](#获取元组项) - [元组切片](#元组切片) - [将元组更改为列表](#将元组更改为列表) - [检索元组中的项](#检索元组中的项) - [连接元组](#连接元组) - [删除元组](#删除元组) - [💻 练习 - 第六天](#-练习---第六天) - [练习: 1级](#练习-1级) - [练习: 2级](#练习-2级) # 第六天: ## 元组 元组是有序且不可变的不同数据类型的集合。一旦创建了元组,我们就无法更改其值。我们不能在元组中使用 add、insert、remove 方法,因为它是不可修改的(不可变的)。与列表不同,元组的方法很少。与元组相关的方法有: - tuple():创建一个空元组 - count():计算元组中指定项的数量 - index():查找元组中指定项的索引 - `+` 运算符:连接两个或多个元组并创建一个新元组 ### 如何创建元组 - 创建一个空元组 ```py # 语法 empty_tuple = () # 或使用元组构造函数 empty_tuple = tuple() ``` - 创建一个具有初始值的元组 ```py # 语法 tpl = ('item1', 'item2','item3') ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') ``` ### 元组长度 我们使用 _len()_ 方法来获取元组的长度。 ```py # 语法 tpl = ('item1', 'item2', 'item3') len(tpl) ``` ### 获取元组项 - 正索引 与列表数据类型类似,我们使用正索引或负索引来访问元组项。 ![Accessing tuple items](../images/tuples_index.png) ```py # 语法 tpl = ('item1', 'item2', 'item3') first_item = tpl[0] second_item = tpl[1] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[0] second_fruit = fruits[1] last_index =len(fruits) - 1 last_fruit = fruits[las_index] ``` - 负索引 负索引是从末尾开始的,-1 表示最后一项,-2 表示倒数第二项,列表/元组长度的负数表示第一项。 ![Tuple Negative indexing](../images/tuple_negative_indexing.png) ```py # 语法 tpl = ('item1', 'item2', 'item3','item4') first_item = tpl[-4] second_item = tpl[-3] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[-4] second_fruit = fruits[-3] last_fruit = fruits[-1] ``` ### 元组切片 我们可以通过指定开始和结束的索引范围来切出子元组,返回值是一个包含指定项的新元组。 - 正索引范围 ```py # 语法 tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[0:4] # 所有项 all_items = tpl[0:] # 所有项 middle_two_items = tpl[1:3] # 不包括索引 3 的项 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[0:4] # 所有项 all_fruits= fruits[0:] # 所有项 orange_mango = fruits[1:3] # 不包括索引 3 的项 orange_to_the_rest = fruits[1:] ``` - 负索引范围 ```py # 语法 tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[-4:] # 所有项 middle_two_items = tpl[-3:-1] # 不包括索引 3 的项 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[-4:] # 所有项 orange_mango = fruits[-3:-1] # 不包括索引 3 的项 orange_to_the_rest = fruits[-3:] ``` ### 将元组更改为列表 我们可以将元组更改为列表,将列表更改为元组。如果我们想修改元组,我们应该将其更改为列表。 ```py # 语法 tpl = ('item1', 'item2', 'item3','item4') lst = list(tpl) ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') fruits = list(fruits) fruits[0] = 'apple' print(fruits) # ['apple', 'orange', 'mango', 'lemon'] fruits = tuple(fruits) print(fruits) # ('apple', 'orange', 'mango', 'lemon') ``` ### 检索元组中的项 我们可以使用 _in_ 检查元组中是否存在某个项,它返回一个布尔值。 ```py # 语法 tpl = ('item1', 'item2', 'item3','item4') 'item2' in tpl # True ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') print('orange' in fruits) # True print('apple' in fruits) # False fruits[0] = 'apple' # TypeError: 'tuple' object does not support item assignment ``` ### 连接元组 我们可以使用 + 运算符连接两个或多个元组 ```py # 语法 tpl1 = ('item1', 'item2', 'item3') tpl2 = ('item4', 'item5','item6') tpl3 = tpl1 + tpl2 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') vegetables = ('Tomato', 'Potato', 'Cabbage','Onion', 'Carrot') fruits_and_vegetables = fruits + vegetables ``` ### 删除元组 不能删除元组中的单个项,但可以使用 _del_ 删除元组本身。 ```py # 语法 tpl1 = ('item1', 'item2', 'item3') del tpl1 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') del fruits ``` 🌕 你太勇敢了,你做到了。你刚刚完成了第 6 天的挑战,你已向着伟大的目标迈出了 6 步。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第六天 ### 练习: 1级 1. 创建一个空元组 1. 创建一个包含你姐妹和兄弟名字的元组(虚构的兄弟姐妹也可以) 1. 连接兄弟姐妹元组并将其分配给 siblings 1. 你有多少兄弟姐妹? 1. 修改兄弟姐妹元组并添加你父母的名字,然后将其分配给 family_members ### 练习: 2级 1. 从 family_members 中获取兄弟姐妹和父母 1. 创建 fruits、vegetables 和 animal products 元组。连接三个元组并将其分配给名为 food_stuff_tp 的变量。 1. 将 food_stuff_tp 元组更改为 food_stuff_lt 列表 1. 从 food_stuff_tp 元组或 food_stuff_lt 列表中切出中间项或项。 1. 从 food_staff_lt 列表中切出前三项和最后三项 1. 完全删除 food_staff_tp 元组 1. 检查元组中是否存在项: - 检查 'Estonia' 是否在 nordic_country 元组中 - 检查 'Iceland' 是否在 nordic_country 元组中 ```py nordic_countries = ('Denmark', 'Finland','Iceland', 'Norway', 'Sweden') ``` [<< 第五天](./05_lists.md) | [第七天 >>](./07_sets.md) ================================================ FILE: Chinese/07_sets.md ================================================

30 天 Python:第 7 天 - 集合

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 6 天](./06_tuples.md) | [第 8 天 >>](./08_dictionaries.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 7 天](#-第-7-天) - [集合](#集合) - [创建集合](#创建集合) - [获取集合长度](#获取集合长度) - [访问集合中的项目](#访问集合中的项目) - [检查项目](#检查项目) - [向集合中添加项目](#向集合中添加项目) - [从集合中移除项目](#从集合中移除项目) - [清空集合中的项目](#清空集合中的项目) - [删除集合](#删除集合) - [将列表转换为集合](#将列表转换为集合) - [合并集合](#合并集合) - [查找交集项目](#查找交集项目) - [检查子集和超集](#检查子集和超集) - [检查两个集合之间的差异](#检查两个集合之间的差异) - [查找两个集合之间的对称差异](#查找两个集合之间的对称差异) - [合并集合](#合并集合-1) - [💻 练习:第 7 天](#-练习-第-7-天) - [练习:等级 1](#练习-等级-1) - [练习:等级 2](#练习-等级-2) - [练习:等级 3](#练习-等级-3) # 📘 第 7 天 ## 集合 集合是项目的集合。让我带你回到小学或高中的数学课。集合的数学定义也适用于 Python。集合是无序且未索引的不同元素的集合。在 Python 中,集合用于存储唯一项目,可以在集合之间找到 _并集_、_交集_、_差集_、_对称差集_、_子集_、_超集_ 和 _不相交集_。 ### 创建集合 我们使用 _set()_ 内置函数。 - 创建空集合 ```py # 语法 st = set() ``` - 创建一个包含初始项目的集合 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} ``` **示例:** ```py # 语法 fruits = {'banana', 'orange', 'mango', 'lemon'} ``` ### 获取设置的长度 我们使用**len()**方法来查找集合的长度。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} len(st) ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} len(fruits) ``` ### 访问集合中的项目 我们使用循环来访问项目。我们将在循环部分看到这一点。 ### 检查项目 要检查列表中是否存在某个项目,我们使用 _in_ 成员运算符。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} print("Does set st contain item3? ", 'item3' in st) # Does set st contain item3? True ``` **示例:** ```py fruits = {'香蕉', '橙色', '芒果', '柠檬'} print('芒果' in fruits ) # True ``` ### 向集合中添加元素 一旦集合创建后,我们不能改变其中的任何元素,但可以添加其他的元素。 - 使用 _add()_ 方法添加单个元素 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} st.add('item5') ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.add('lime') ``` - 使用 _update()_ 方法添加多个元素 _update()_ 方法允许向集合中添加多个元素。_update()_ 接收一个列表作为参数。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} st.update(['item5','item6','item7']) ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = ('tomato', 'potato', 'cabbage','onion', 'carrot') fruits.update(vegetables) ``` ### 从集合中移除元素 我们可以使用 _remove()_ 方法从集合中移除一个元素。如果找不到该元素,_remove()_ 方法会抛出错误,因此最好先检查该元素是否存在于集合中。_discard()_ 方法则不会抛出任何错误。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} st.remove('item2') ``` _pop()_ 方法从集合中移除一个随机元素并返回该被移除的元素。 **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.pop() # 从集合中移除一个随机元素 ``` 如果我们对被移除的元素感兴趣。 ```py fruits = {'banana', 'orange', 'mango', 'lemon'} removed_item = fruits.pop() ``` ### 清空集合中的项目 如果我们想要清空或清除集合中的所有项目,可以使用 _clear_ 方法。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} st.clear() ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.clear() print(fruits) # set() ``` ### 删除一个集合 如果我们想要删除整个集合,可以使用 _del_ 操作符。 ```py # 语法 st = {'item1', 'item2', 'item3', 'item4'} del st ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} del fruits ``` ### 将列表转换为集合 我们可以将列表转换为集合,也可以将集合转换为列表。将列表转换为集合会去除重复项,只保留唯一项。 ```py # 语法 lst = ['item1', 'item2', 'item3', 'item4', 'item1'] st = set(lst) # {'item2', 'item4', 'item1', 'item3'} - 顺序是随机的,因为集合在一般情况下是无序的 ``` **示例:** ```py fruits = ['banana', 'orange', 'mango', 'lemon','orange', 'banana'] fruits = set(fruits) # {'mango', 'lemon', 'banana', 'orange'} ``` ### 合并集合 我们可以使用 _union()_ 或 _update()_ 方法来合并两个集合。 - Union 这个方法返回一个新集合 ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st3 = st1.union(st2) ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} print(fruits.union(vegetables)) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` - Update 这个方法将一个集合插入到给定的集合中 ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st1.update(st2) # st2 的内容被添加到 st1 中 ``` **示例:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} fruits.update(vegetables) print(fruits) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` ### 查找交集项 交集返回两个集合中都存在的项的集合。请参见示例 ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} ``` **示例:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.intersection(even_numbers) # {0, 2, 4, 6, 8, 10} python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.intersection(dragon) # {'o', 'n'} ``` ### 检查子集和超集 一个集合可以是另一个集合的子集或超集: - 子集: _issubset()_ - 超集: _issuperset_ ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.issubset(st1) # True st1.issuperset(st2) # True ``` **示例:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.issubset(even_numbers) # 错误,因为它是超集 whole_numbers.issuperset(even_numbers) # 正确 python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.issubset(dragon) # 错误 ``` ### 检查两个集合之间的差异 它返回两个集合之间的差异。 ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.difference(st1) # set() st1.difference(st2) # {'item1', 'item4'} => st1\st2 ``` **示例:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.difference(even_numbers) # {1, 3, 5, 7, 9} python = {'p', 'y', 't', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.difference(dragon) # {'p', 'y', 't'} - 结果是无序的(集合的特性) dragon.difference(python) # {'d', 'r', 'a', 'g'} ``` ### 查找两个集合之间的对称差异 它返回两个集合之间的对称差异。它意味着它返回一个包含两个集合中所有项的集合,除了同时出现在两个集合中的项,数学上:(A\B) ∪ (B\A) ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} # 意思是 (A\B)∪(B\A) st2.symmetric_difference(st1) # {'item1', 'item4'} ``` **示例:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} some_numbers = {1, 2, 3, 4, 5} whole_numbers.symmetric_difference(some_numbers) # {0, 6, 7, 8, 9, 10} python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.symmetric_difference(dragon) # {'r', 't', 'p', 'y', 'g', 'a', 'd', 'h'} ``` ### 合并集合 如果两个集合没有共同的项或项,我们称它们为不相交集合。我们可以使用 _isdisjoint()_ 方法来检查两个集合是否相交。 ```py # 语法 st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.isdisjoint(st1) # 错误 ``` **示例:** ```py even_numbers = {0, 2, 4, 6, 8} odd_numbers = {1, 3, 5, 7, 9} even_numbers.isdisjoint(odd_numbers) # 正确,因为没有共同项 python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.isdisjoint(dragon) # 错误,有共同项 {'o', 'n'} ``` 🌕 你是一颗冉冉升起的明星。你刚刚完成了第 7 天的挑战,你在通往伟大的道路上前进了 7 步。现在为你的大脑和肌肉做一些练习。 ## 💻 练习:第 7 天 ```py # 集合 it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} A = {19, 22, 24, 20, 25, 26} B = {19, 22, 20, 25, 26, 24, 28, 27} age = [22, 19, 24, 25, 26, 24, 25, 24] ``` ### 练习:第 1 级 1. 找到集合 it_companies 的长度 2. 向 it_companies 添加'Twitter' 3. 一次性向集合 it_companies 插入多个 IT 公司 4. 从集合 it_companies 中移除一家公司 5. 移除和丢弃之间有什么区别 ### 练习:第 2 级 1. 合并 A 和 B 1. 找到 A 和 B 的交集 1. A 是 B 的子集吗 1. A 和 B 是不相交集合吗 1. 将 A 与 B 合并,反之亦然 1. A 和 B 之间的对称差异是什么 1. 完全删除集合 ### 练习:第 3 级 1. 将年龄转换为集合并比较列表和集合的长度,哪一个更大? 1. 解释以下数据类型之间的区别:字符串、列表、元组和集合 1. _我是一个老师,我喜欢激励和教导人们。_ 这句句子中用了多少独特的单词?使用 split 方法和集合来获取独特的单词。 🎉 恭喜! 🎉 [<< 第 6 天](./06_tuples.md) | [第 8 天 >>](./08_dictionaries.md) ================================================ FILE: Chinese/08_dictionaries.md ================================================

30 天 Python 学习:第 8 天 - 字典

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 7 天](./07_sets.md) | [第 9 天 >>](./09_conditionals.md) ![30 天 Python 学习](../images/30DaysOfPython_banner3@2x.png) - [📘 第 8 天](#-第-8-天) - [字典](#字典) - [创建字典](#创建字典) - [字典长度](#字典长度) - [访问字典项](#访问字典项) - [向字典添加项](#向字典添加项) - [修改字典中的项](#修改字典中的项) - [检查字典中的键](#检查字典中的键) - [从字典中移除键值对](#从字典中移除键值对) - [将字典转换为项目列表](#将字典转换为项目列表) - [清空字典](#清空字典) - [删除字典](#删除字典) - [复制字典](#复制字典) - [将字典键转换为列表](#将字典键转换为列表) - [将字典值转换为列表](#将字典值转换为列表) - [💻 练习:第 8 天](#-练习-第-8-天) # 📘 第 8 天 ## 字典 字典是一种由无序、可修改(可变)的键值对组成的数据类型。 ### 创建字典 为了创建字典,我们使用大括号 {} 或内置函数 _dict()_。 ```py # 语法 empty_dict = {} # 带数据值的字典 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` 上面的字典显示,值可以是任何数据类型:字符串、布尔值、列表、元组、集合或字典。 ### 字典长度 它检查字典中的键值对的数量。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(len(dct)) # 4 ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(len(person)) # 7 ``` ### 访问字典项 我们可以通过参考其键名来访问字典项。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct['key1']) # value1 print(dct['key4']) # value4 ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person['first_name']) # Asabeneh print(person['country']) # Finland print(person['skills']) # ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person['skills'][0]) # JavaScript print(person['address']['street']) # Space street print(person['city']) # 错误 ``` 通过键名访问项时,如果键不存在会引发错误。为了避免这个错误,我们首先要检查键是否存在,或者使用 _get_ 方法。get 方法在键不存在时返回 None(这是 NoneType 对象数据类型)。 ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person.get('first_name')) # Asabeneh print(person.get('country')) # Finland print(person.get('skills')) #['HTML','CSS','JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person.get('city')) # None ``` ### 向字典添加项 我们可以向字典中添加新的键值对 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key5'] = 'value5' ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['job_title'] = 'Instructor' person['skills'].append('HTML') print(person) ``` ### 修改字典中的项目 我们可以修改字典中的项目 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key1'] = 'value-one' ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['first_name'] = 'Eyob' person['age'] = 252 ``` ### 检查字典中的键 我们使用 _in_ 运算符来检查字典中是否存在某个键 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print('key2' in dct) # True print('key5' in dct) # False ``` ### 从字典中删除键值对 - _pop(key)_: 删除具有指定键名的项目 - _popitem()_: 删除最后一个项目 - _del_: 删除具有指定键名的项目 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.pop('key1') # 删除 key1 项目 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.popitem() # 删除最后一项 del dct['key2'] # 删除 key2 项目 ``` **示例:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person.pop('first_name') # 删除 firstname 项目 person.popitem() # 删除 address 项目 del person['is_married'] # 删除 is_married 项目 ``` ### 将字典改变为项目列表 _items()_ 方法将字典变成由元组组成的列表。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.items()) # dict_items([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3'), ('key4', 'value4')]) ``` ### 清空字典 如果我们不需要字典中的项目,我们可以使用 _clear()_ 方法来清空它们 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.clear()) # None ``` ### 删除字典 如果我们不再使用字典,我们可以完全删除它 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} del dct ``` ### 复制字典 我们可以使用 _copy()_ 方法复制一个字典。使用 copy 方法可以避免原始字典被修改。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct_copy = dct.copy() # {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` ### 获取字典的键列表 keys() 方法给我们一个包含所有字典键的列表。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} keys = dct.keys() print(keys) # dict_keys(['key1', 'key2', 'key3', 'key4']) ``` ### 获取字典的值列表 values 方法给我们一个包含所有字典值的列表。 ```py # 语法 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} values = dct.values() print(values) # dict_values(['value1', 'value2', 'value3', 'value4']) ``` 🌕 你很了不起。现在,你已经掌握了字典的强大功能。你已经完成了第 8 天的挑战,离成功又近了一步。现在为你的大脑和肌肉做一些练习。 ## 💻 练习:第 8 天 1. 创建一个名为 dog 的空字典 2. 向 dog 字典添加 name、color、breed、legs、age 键 3. 创建一个学生字典,添加 first_name、last_name、gender、age、marital status、skills、country、city 和 address 作为字典的键 4. 获取学生字典的长度 5. 获取 skills 的值并检查数据类型,应该是列表 6. 修改 skills 值,添加一到两个技能 7. 获取字典的键列表 8. 获取字典的值列表 9. 使用 _items()_ 方法将字典变为由元组组成的列表 10. 删除字典中的一项 11. 删除其中一个字典 🎉 恭喜你! 🎉 [<< 第 7 天](./07_sets.md) | [第 9 天 >>](./09_conditionals.md) ================================================ FILE: Chinese/09_conditionals.md ================================================

30天Python学习:第9天 - 条件语句

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 8 天](./08_dictionaries.md) | [第 10 天 >>](./10_loops.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 9 天](#-第9天) - [条件语句](#条件语句) - [If 条件](#if条件) - [If Else](#if-else) - [If Elif Else](#if-elif-else) - [简写](#简写) - [嵌套条件](#嵌套条件) - [If 条件和逻辑运算符](#if条件和逻辑运算符) - [If 和 Or 逻辑运算符](#if和or逻辑运算符) - [💻 练习:第 9 天](#-练习第9天) - [练习:第一层级](#练习第一层级) # 📘 第 9 天 ## 条件语句 默认情况下,Python 脚本中的语句是从上到下顺序执行的。如果处理逻辑需要,可以通过两种方式来改变顺序: - 条件执行:如果某个表达式为真,则执行一个或多个语句块 - 重复执行:只要某个表达式为真,则重复执行一个或多个语句块。在本节中,我们将讨论*if*,_else_,*elif*语句。前面章节中学到的比较运算符和逻辑运算符在这里将派上用场。 ### If 条件 在 Python 和其他编程语言中,关键字*if*用于检查条件是否为真并执行代码块。请记住冒号后的缩进。 ```py # 语法 if condition: 如果条件为真,则运行此部分代码 ``` **示例:1** ```py a = 3 if a > 0: print('A是一个正数') # A是一个正数 ``` 如上例所示,3 大于 0。条件为真,执行代码块。然而,如果条件为假,我们不会看到结果。为了看到假条件的结果,我们应有另一个代码块,即*else*。 ### If Else 如果条件为真,则执行第一个代码块,否则执行*else*条件。 ```py # 语法 if condition: 如果条件为真,则运行此部分代码 else: 如果条件为假,则运行此部分代码 ``` **示例:** ```py a = 3 if a < 0: print('A是一个负数') else: print('A是一个正数') ``` 上面的条件为假,因此执行*else*代码块。如果我们的条件超过两个呢?我们可以使用*elif*。 ### If Elif Else 在我们的日常生活中,我们每天都在做决策。我们做出决策不仅仅是检查一个或两个条件,而是多个条件。与生活相似,编程中也充满了条件。当我们有多个条件时,可以使用*elif*。 ```py # 语法 if condition: 代码 elif condition: 代码 else: 代码 ``` **示例:** ```py a = 0 if a > 0: print('A是一个正数') elif a < 0: print('A是一个负数') else: print('A是零') ``` ### 简写 ```py # 语法 代码 if 条件 else 代码 ``` **示例:** ```py a = 3 print('A是正数') if a > 0 else print('A是负数') # 满足第一个条件,将打印 'A是正数' ``` ### 嵌套条件 条件可以嵌套 ```py # 语法 if 条件: 代码 if 条件: 代码 ``` **示例:** ```py a = 0 if a > 0: if a % 2 == 0: print('A是一个正数且为偶数') else: print('A是一个正数') elif a == 0: print('A是零') else: print('A是一个负数') ``` 我们可以使用逻辑运算符*and*来避免编写嵌套条件。 ### If 条件和逻辑运算符 ```py # 语法 if 条件 and 条件: 代码 ``` **示例:** ```py a = 0 if a > 0 and a % 2 == 0: print('A是一个正数且为偶数') elif a > 0 and a % 2 != 0: print('A是一个正数') elif a == 0: print('A是零') else: print('A是一个负数') ``` ### If 和 Or 逻辑运算符 ```py # 语法 if 条件 or 条件: 代码 ``` **示例:** ```py user = 'James' access_level = 3 if user == 'admin' or access_level >= 4: print('访问授权!') else: print('访问拒绝!') ``` 🌕 你做得很好。永远不要放弃,因为伟大的事情需要时间。你刚刚完成了第 9 天的挑战,你已经在通向伟大的道路上前进了 9 步。现在做一些练习来锻炼你的大脑和肌肉。 ## 💻 练习:第 9 天 ### 练习:第一层级 1. 使用 input 获取用户输入(例如:“输入你的年龄:”)。如果用户 18 岁或以上,给出反馈:你已经足够大,可以学习驾驶。如果未满 18 岁,则给出需要等待的年数。输出: ```sh 输入你的年龄:30 你已经足够大,可以学习驾驶。 输出: 输入你的年龄:15 你还需要等待3年才能学习驾驶。 ``` 2. 使用 if…else 比较 my_age 和 your_age 的值。谁更年长(我还是你)?使用 input(“输入你的年龄:”)获取年龄作为输入。您可以使用嵌套条件来打印'年'表示 1 年的年龄差异,'年'表示更大的差异,如果 my_age = your_age,则打印自定义文本。输出: ```sh 输入你的年龄:30 你比我大5岁。 ``` 3. 使用输入提示从用户处获得两个数字。如果 a 大于 b,返回 a 大于 b,如果 a 小于 b,返回 a 小于 b,否则返回 a 等于 b。输出: ```sh 输入第一个数字:4 输入第二个数字:3 4大于3 ``` ### 练习:第二层级 1. 编写代码,根据学生的分数给出等级: ```sh 80-100, A 70-79, B 60-69, C 50-59, D 0-49, F ``` 2. 检查是否是秋天、冬天、春天或夏天。如果用户输入: 9 月、10 月或 11 月,是秋天。 12 月、1 月或 2 月,是冬天。 3 月、4 月或 5 月,是春天。 6 月、7 月或 8 月,是夏天。 3. 以下列表包含了一些水果: ```sh fruits = ['banana', 'orange', 'mango', 'lemon'] ``` 如果列表中不存在某个水果,则将其添加到列表中并打印修改后的列表。如果水果存在,则打印('该水果已在列表中')。 ### 练习:第三层级 1. 这里有一个人员字典。请随意修改它! ```py person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': '芬兰', 'is_married': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': '太空街', 'zipcode': '02210' } } ``` - 检查是否在字典中有 skills 键,如果有则打印 skills 列表中的中间技能。 - 检查是否在字典中有 skills 键,如果有则检查该人是否具备'Python'技能并打印结果。 - 如果一个人的技能只有 JavaScript 和 React,打印('他是前端开发者'),如果一个人的技能有 Node、Python、MongoDB,打印('他是后端开发者'),如果一个人的技能有 React、Node 和 MongoDB,打印('他是全栈开发者'),否则打印'未知头衔' - 为获得更准确的结果,可以嵌套更多条件! - 如果该人结婚了且居住在芬兰,按以下格式打印信息: ```py Asabeneh Yetayeh住在芬兰。他已婚。 ``` 🎉 恭喜! 🎉 [<< 第 8 天](./08_dictionaries.md) | [第 10 天 >>](./10_loops.md) ================================================ FILE: Chinese/10_loops.md ================================================

30 天 Python:第十天 - Loops

Twitter Follow Author: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 9 天](./09_conditionals.md) | [第 11 天 >>](./11_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第十天](#-第十天) - [循环](#循环) - [while 循环](#while-循环) - [break和continue - part 1](#break和continue---part-1) - [for 循环](#for-循环) - [break 和 continue - part 2](#break-和-continue---part-2) - [range() 函数](#range-函数) - [嵌套for循环](#嵌套for循环) - [for和else](#for和else) - [pass语句](#pass语句) - [💻 练习:第十天](#-练习第十天) - [练习:一级](#练习一级) - [练习:二级](#练习二级) - [练习:三级](#练习三级) # 📘 第十天 ## 循环 生活充满了循环。在编程中,我们会做很多重复的任务。编程语言使用循环来处理重复的任务,而Python编程语言提供了以下两种类型的循环: 1. while 循环 2. for 循环 ### while 循环 我们使用关键字`while`来创建while循环。它在条件被满足时重复执行代码块。当条件变为false时,会结束循环代码块,执行循环之后的代码。 ```python # syntax while condition: code goes here ``` **示例:** ```python count = 0 while count < 5: print(count) count = count + 1 #prints from 0 to 4 ``` 在上面的循环中,当count等于5时,循环条件变为false,此时循环停止。 如果我们想要在循环条件变为false时运行特定的代码块,我们可以使用`else`关键字。 ```python # syntax while condition: code goes here else: code goes here ``` **示例:** ```python count = 0 while count < 5: print(count) count = count + 1 else: print(count) ``` 当count等于5时,循环条件变为false,循环终止,然后开始执行else块中的代码。因此,5将会被打印输出。 ### break和continue - part 1 * Break:当我们想要退出循环时,我们使用`break`关键字。 ```python # syntax while condition: code goes here if another_condition: break ``` **Example:** ```python count = 0 while count < 5: print(count) count = count + 1 if count == 3: break ``` 上面的while循环只会打印输出0,1,2,但当count等于3时,循环会终止。 - Continue:当我们想要跳过当前循环并继续执行下一个循环时,我们使用`continue`关键字。 ```python # syntax while condition: code goes here if another_condition: continue ``` **示例:** ```python count = 0 while count < 5: if count == 3: count = count + 1 continue print(count) count = count + 1 ``` 上面的while循环只会打印输出0,1,2,4。(3被跳过了) ### for 循环 `for`关键字用于创建for循环。和别的编程语言相似,但语法上有一些不同。它可以用于对序列的遍历(也就是列表、元组、字典、集合、字符串等)。 - 列表的for循环 ```python # syntax for iterator in lst: code goes here ``` **示例:** ```python numbers = [0, 1, 2, 3, 4, 5] for number in numbers: # number是引用列表项的临时名称,仅在此循环中有效 print(number) # number将会被逐行打印,从0到5 ``` - 字符串的for循环 ```python # syntax for iterator in string: code goes here ``` **示例:** ```python language = 'Python' for letter in language: print(letter) for i in range(len(language)): print(language[i]) ``` - 元组的for循环 ```python # syntax for iterator in tpl: code goes here ``` **示例:** ```python numbers = (0, 1, 2, 3, 4, 5) for number in numbers: print(number) ``` - 字典的for循环 循环遍历将会遍历字典的键。 ```python # syntax for iterator in dct: code goes here ``` **示例:** ```python person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } for key in person: print(key) #仅输出键 for key, value in person.items(): print(key, value) # 这样我们可以在迭代的过程中同时访问键和值 ``` - 集合的for循环 ```python # syntax for iterator in st: code goes here ``` **示例:** ```python it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} for company in it_companies: print(company) ``` ### break 和 continue - part 2 提示: _break_:当我们想要在循环完成前退出循环时,我们使用`break`关键字。 ```python # syntax for iterator in sequence: code goes here if condition: break ``` **示例:** ```python numbers = (0,1,2,3,4,5) for number in numbers: print(number)#输出 0,1,2,3 if number == 3: break ``` 在上面的例子中,当number等于3时,循环会终止。 _continue_:当我们想要跳过当前循环并继续执行下一个循环时,我们使用`continue`关键字。 ```python # syntax for iterator in sequence: code goes here if condition: continue ``` **示例:** ```python numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: continue print('Next number should be ', number + 1) if number != 5 else print("loop's end") # 简而言之,对于简短的条件,需要同时使用if和else语句 print('outside the loop') ``` 在上面的例子中,当number等于3时,在此条件之后的(但在循环中的)语句会被跳过,如果还有未完成的遍历元素,它会继续执行下一个循环。 ### range() 函数 `range()`函数用于生成一个序列的数字。_range(start, end, step)_函数接受三个参数:起始值、结束值和步长。默认情况下,起始值是0,步长是1。这个函数需要至少一个参数。(结束值end) 使用`range()`函数生成序列 ```python lst = list(range(11)) print(lst) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] st = set(range(1, 11)) # 两个参数分别代表start和stop,步长step为默认值1 print(st) # {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} lst = list(range(0,11,2)) print(lst) # [0, 2, 4, 6, 8, 10] st = set(range(0,11,2)) print(st) # {0, 2, 4, 6, 8, 10} ``` ```python # syntax for iterator in range(start, end, step): ``` **示例:** ```python for number in range(11): print(number) # 打印输出0到10,不包括11。 ``` ### 嵌套for循环 我们可以在循环中嵌套另一个循环。这种循环称为嵌套循环。 ```python # syntax for x in y: for t in x: print(t) ``` **示例:** ```python person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_marred': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } for key in person: if key == 'skills': for skill in person['skills']: print(skill) ``` ### for和else 如果我们想要在循环结束时执行特定的代码块,我们可以使用`else`关键字。 ```python # syntax for iterator in range(start, end, step): do something else: print('The loop ended') ``` **示例:** ```python for number in range(11): print(number) # prints 0 to 10, not including 11 else: print('The loop stops at', number) ``` ### pass语句 在python中,当需要一些语句(比如在`:`后),但我们不想执行任何代码时,我们可以使用`pass`关键字来避免报错。此外,我们也可以用它来作为一个占位符,以便在以后填充代码。 **示例:** ```python for number in range(6): pass ``` 🌕 你完成了伟大的一步,太猛了哥。冲冲冲!你刚刚完成了第10天的挑战,你在通往伟大的道路上迈出了10步。现在我们做一些练习来练练肌肉和大脑。 ## 💻 练习:第十天 ### 练习:一级 1. 分别使用while和for实现从0到10的迭代。 2. 分别使用while和for实现从10到0的迭代。 3. 写一个循环,调用7次`print()`函数,输出如下的三角形: ```py # ## ### #### ##### ###### ####### ``` 4. 使用嵌套循环来实现下面的输出: ```sh # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ``` 5. 使用循环实现下面格式的输出: ```sh 0 x 0 = 0 1 x 1 = 1 2 x 2 = 4 3 x 3 = 9 4 x 4 = 16 5 x 5 = 25 6 x 6 = 36 7 x 7 = 49 8 x 8 = 64 9 x 9 = 81 10 x 10 = 100 ``` 6. 用for循环遍历列表`['Python', 'Numpy','Pandas','Django', 'Flask']`,并打印输出每个元素。 7. 用for循环从0到100遍历并且打印输出所有偶数。 8. 用for循环从0到100遍历并且打印输出所有奇数。 ### 练习:二级 1. 使用for循环从0到100遍历并且输出所有数字的和。 ```sh The sum of all numbers is 5050. ``` 2. 使用for循环从0到100遍历并且分别输出所有奇数和所有偶数的和。 ```sh The sum of all odd numbers is 2500. And the sum of all even numbers is 2550. ``` ### 练习:三级 1. 跳转到data文件夹并使用[countries.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py)文件。循环遍历所有国家,并且提取出所有包含字母`land`的国家。 2. 有一个列表`fruits = ['banana', 'orange', 'mango', 'lemon']`,使用循环反转列表中的元素。 3. 跳转到data文件夹并使用[countries_data.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py)文件。 1. 数据中一共有多少个语言? 2. 找到被最多国家使用的语言。 3. 找到人数排名前十的国家。 🎉 恭喜! 🎉 [<< 第 9 天](./09_conditionals.md) | [第 11 天 >>](./11_functions.md) ================================================ FILE: Chinese/11_functions.md ================================================

30 天 Python 挑战: 第 11 天 - 函数

Twitter Follow 作者: Asabeneh Yetayeh
第二版: 2021 年 7 月
[<< 第 10 天](./10_loops.md) | [第 12 天 >>](./12_modules.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 11 天](#-day-11) - [函数](#functions) - [定义函数](#defining-a-function) - [声明和调用函数](#declaring-and-calling-a-function) - [无参数的函数](#function-without-parameters) - [返回值的函数 - 第 1 部分](#function-returning-a-value---part-1) - [有参数的函数](#function-with-parameters) - [使用键值对传递参数](#passing-arguments-with-key-and-value) - [返回值的函数 - 第 2 部分](#function-returning-a-value---part-2) - [带默认参数的函数](#function-with-default-parameters) - [不定数量的参数](#arbitrary-number-of-arguments) - [函数中的默认和不定数量的参数](#default-and-arbitrary-number-of-parameters-in-functions) - [作为另一个函数参数的函数](#function-as-a-parameter-of-another-function) - [💻 练习: 第 11 天](#-exercises-day-11) - [练习: Level 1](#exercises-level-1) - [练习: Level 2](#exercises-level-2) - [练习: Level 3](#exercises-level-3) # 📘 第 11 天 ## 函数 到目前为止,我们已经学习了很多内置的 Python 函数。在这一节中,我们将重点关注自定义函数。什么是函数?在开始创建函数之前,让我们先了解一下什么是函数以及为什么需要它们。 ### 定义函数 函数是一块可重复使用的代码块或编程语句,用于执行某些任务。要定义或声明一个函数,Python 提供了 _def_ 关键字。下面是定义函数的语法。只有在调用或触发函数时,这段函数代码才会执行。 ### 声明和调用函数 当我们创建一个函数时,我们称其为声明一个函数。当我们开始使用它时,我们称其为调用或触发一个函数。函数可以带参数也可以不带参数。 ```py # 语法 # 声明一个函数 def function_name(): codes codes # 调用一个函数 function_name() ``` ### 无参数的函数 函数可以在没有参数的情况下声明。 **示例:** ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) generate_full_name () # 调用一个函数 def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two print(total) add_two_numbers() ``` ### 返回值的函数 - 第 1 部分 函数也可以返回值,如果一个函数没有 return 语句,那么函数的返回值为 None。让我们使用 return 重写上述函数。从现在开始,当我们调用函数并打印时,我们会得到一个值。 ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two return total print(add_two_numbers()) ``` ### 有参数的函数 在一个函数中,我们可以传递不同的数据类型(数字、字符串、布尔值、列表、元组、字典或集合)作为参数。 - 单个参数:如果我们的函数需要一个参数,我们应该用一个实参调用它。 ```py # 语法 # 声明一个函数 def function_name(parameter): codes codes # 调用函数 print(function_name(argument)) ``` **示例:** ```py def greetings (name): message = name + ', welcome to Python for Everyone!' return message print(greetings('Asabeneh')) def add_ten(num): ten = 10 return num + ten print(add_ten(90)) def square_number(x): return x * x print(square_number(2)) def area_of_circle (r): PI = 3.14 area = PI * r ** 2 return area print(area_of_circle(10)) def sum_of_numbers(n): total = 0 for i in range(n+1): total+=i print(total) print(sum_of_numbers(10)) # 55 print(sum_of_numbers(100)) # 5050 ``` - 两个参数:一个函数可以没有参数,也可以有一个或多个参数。如果我们的函数需要两个参数,我们应该用两个实参调用它。让我们看看一个带有两个参数的函数: ```py # 语法 # 声明一个函数 def function_name(para1, para2): codes codes # 调用函数 print(function_name(arg1, arg2)) ``` **示例:** ```py def generate_full_name (first_name, last_name): space = ' ' full_name = first_name + space + last_name return full_name print('Full Name: ', generate_full_name('Asabeneh','Yetayeh')) def sum_two_numbers (num_one, num_two): sum = num_one + num_two return sum print('Sum of two numbers: ', sum_two_numbers(1, 9)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2021, 1819)) def weight_of_object (mass, gravity): weight = str(mass * gravity)+ ' N' # 值需要先转换为字符串 return weight print('Weight of an object in Newtons: ', weight_of_object(100, 9.81)) ``` ### 使用键值对传递参数 如果我们使用键值对传递参数,参数的顺序就无关紧要了。 ```py # 语法 # 声明一个函数 def function_name(para1, para2): codes codes # 调用函数 print(function_name(para1 = 'John', para2 = 'Doe')) # 参数的顺序在这里无关紧要 ``` **示例:** ```py def print_fullname(firstname, lastname): space = ' ' full_name = firstname + space + lastname print(full_name) print(print_fullname(firstname = 'Asabeneh', lastname = 'Yetayeh')) def add_two_numbers (num1, num2): total = num1 + num2 print(total) print(add_two_numbers(num2 = 3, num1 = 2)) # 顺序无关紧要 ``` ### 返回值的函数 - 第 2 部分 如果我们不在函数中返回一个值,那么我们的函数默认返回 _None_。要用函数返回一个值,我们使用关键字 _return_,后面跟上我们要返回的变量。我们可以从一个函数返回任何类型的数据。 - 返回字符串: **示例:** ```py def print_name(firstname): return firstname print_name('Asabeneh') # Asabeneh def print_full_name(firstname, lastname): space = ' ' full_name = firstname + space + lastname return full_name print_full_name(firstname='Asabeneh', lastname='Yetayeh') ``` - 返回数字: **示例:** ```py def add_two_numbers (num1, num2): total = num1 + num2 return total print(add_two_numbers(2, 3)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2019, 1819)) ``` - 返回布尔值: **示例:** ```py def is_even (n): if n % 2 == 0: print('even') return True # return 语句会停止函数的进一步执行,类似于 break return False print(is_even(10)) # True print(is_even(7)) # False ``` - 返回列表: **示例:** ```py def find_even_numbers(n): evens = [] for i in range(n + 1): if i % 2 == 0: evens.append(i) return evens print(find_even_numbers(10)) ``` ### 带默认参数的函数 有时我们在调用函数时会传递默认值给参数。如果我们在调用函数时没有传递实参,参数的默认值将会被使用。 ```py # 语法 # 声明一个函数 def function_name(param = value): codes codes # 调用函数 function_name() function_name(arg) ``` **示例:** ```py def greetings (name = 'Peter'): message = name + ', welcome to Python for Everyone!' return message print(greetings()) print(greetings('Asabeneh')) def generate_full_name (first_name = 'Asabeneh', last_name = 'Yetayeh'): space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) print(generate_full_name('David','Smith')) def calculate_age (birth_year,current_year = 2021): age = current_year - birth_year return age; print('Age: ', calculate_age(1821)) def weight_of_object (mass, gravity = 9.81): weight = str(mass * gravity)+ ' N' # 值需要先转换为字符串 return weight print('Weight of an object in Newtons: ', weight_of_object(100)) # 9.81 - 地球表面的平均重力 print('Weight of an object in Newtons: ', weight_of_object(100, 1.62)) # 月球表面的重力 ``` ### 不定数量的参数 如果我们不知道传递给函数的参数数量,可以通过在参数名前加上 \* 来创建一个可以接受不定数量参数的函数。 ```py # 语法 # 声明一个函数 def function_name(*args): codes codes # 调用函数 function_name(param1, param2, param3,..) ``` **示例:** ```py def sum_all_nums(*nums): total = 0 for num in nums: total += num # 相当于 total = total + num return total print(sum_all_nums(2, 3, 5)) # 10 ``` ### 函数中的默认和不定数量的参数 ```py def generate_groups (team,*args): print(team) for i in args: print(i) print(generate_groups('Team-1','Asabeneh','Brook','David','Eyob')) ``` ### 作为另一个函数参数的函数 ```py # 你可以将函数作为参数传递 def square_number (n): return n * n def do_something(f, x): return f(x) print(do_something(square_number, 3)) # 27 ``` 🌕 你已经完成了很多。继续加油!你已经完成了第 11 天的挑战,你在走向成功的道路上已经迈出了 11 步。现在做一些锻炼脑力和肌肉的练习。 ## 见证 现在是时候表达你对作者和 30DaysOfPython 的看法了。你可以在这个[链接](https://testimonify.herokuapp.com/)留下你的见证。 ## 💻 练习: 第 11 天 ### 练习: Level 1 1. 声明一个函数 _add_two_numbers_。它接受两个参数并返回它们的和。 2. 圆的面积计算公式为:area = π x r x r。编写一个函数计算 _area_of_circle_。 3. 编写一个名为 add_all_nums 的函数,它接受不定数量的参数并求和所有参数。检查所有列表项是否都是数字类型。如果不是,给予合理的反馈。 4. 摄氏温度(°C)可以使用以下公式转换为华氏温度(°F):°F = (°C x 9/5) + 32。编写一个函数将 °C 转换为 °F,_convert_celsius_to_fahrenheit_。 5. 编写一个名为 check-season 的函数,它接受一个月份作为参数并返回季节:秋季、冬季、春季或夏季。 6. 编写一个名为 calculate_slope 的函数,它返回线性方程的斜率。 7. 二次方程按以下公式计算:ax² + bx + c = 0。编写一个函数计算二次方程的解集,_solve_quadratic_eqn_。 8. 声明一个名为 print_list 的函数。它接受一个列表作为参数,并打印列表的每个元素。 9. 声明一个名为 reverse_list 的函数。它接受一个数组作为参数,并返回数组的反转(使用循环)。 ```py print(reverse_list([1, 2, 3, 4, 5])) # [5, 4, 3, 2, 1] print(reverse_list1(["A", "B", "C"])) # ["C", "B", "A"] ``` 10. 声明一个名为 capitalize_list_items 的函数。它接受一个列表作为参数,并返回一个大写的列表项。 11. 声明一个名为 add_item 的函数。它接受一个列表和一个项作为参数。它返回在末尾添加项的列表。 ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(add_item(food_staff, 'Meat')) # ['Potato', 'Tomato', 'Mango', 'Milk','Meat']; numbers = [2, 3, 7, 9]; print(add_item(numbers, 5)) [2, 3, 7, 9, 5] ``` 12. 声明一个名为 remove_item 的函数。它接受一个列表和一个项作为参数。它返回移除该项后的列表。 ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(remove_item(food_staff, 'Mango')) # ['Potato', 'Tomato', 'Milk']; numbers = [2, 3, 7, 9]; print(remove_item(numbers, 3)) # [2, 7, 9] ``` 13. 声明一个名为 sum_of_numbers 的函数。它接受一个数字参数并将范围内的所有数字相加。 ```py print(sum_of_numbers(5)) # 15 print(sum_all_numbers(10)) # 55 print(sum_all_numbers(100)) # 5050 ``` 14. 声明一个名为 sum_of_odds 的函数。它接受一个数字参数并将范围内的所有奇数相加。 15. 声明一个名为 sum_of_even 的函数。它接受一个数字参数并将范围内的所有偶数相加。 ### 练习: Level 2 1. 声明一个名为 evens_and_odds 的函数。它接受一个正整数作为参数并计算该数内偶数和奇数的数量。 ```py print(evens_and_odds(100)) # 偶数的数量是 50。 # 奇数的数量是 51。 ``` 1. 调用你的函数 factorial,它接受一个整数作为参数并返回该数的阶乘。 1. 调用你的函数 _is_empty_,它接受一个参数并检查它是否为空。 1. 编写不同的函数,它们接受列表。它们应该计算平均值、计算中位数、计算众数、计算范围、计算方差、计算标准差。 ### 练习: Level 3 1. 编写一个名为 is_prime 的函数,检查一个数是否是质数。 1. 编写一个函数检查列表中的所有项是否都是唯一的。 1. 编写一个函数检查列表中的所有项是否都是相同的数据类型。 1. 编写一个函数检查提供的变量是否是一个有效的 python 变量。 1. 访问数据文件并访问 countries-data.py 文件。 - 创建一个名为 the most_spoken_languages 的函数。它返回世界上使用最多的 10 或 20 种语言,按降序排列。 - 创建一个名为 the most_populated_countries 的函数。它返回世界上人口最多的 10 或 20 个国家,按降序排列。 🎉 恭喜! 🎉 [<< 第 10 天](./10_loops.md) | [第 12 天 >>](./12_modules.md) ================================================ FILE: Chinese/12_modules.md ================================================

30 天 Python :第 12 天 - 模块

Twitter Follow 作者: Asabeneh Yetayeh
第二版: 2021 年 7 月
[<< 第 11 天](./11_functions.md) | [第 13 天 >>](./13_list_comprehension.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 12 天](#-第12天) - [模块](#模块) - [什么是模块](#什么是模块) - [创建模块](#创建模块) - [导入模块](#导入模块) - [从模块中导入函数](#从模块中导入函数) - [从模块中导入函数并重命名](#从模块中导入函数并重命名) - [导入内置模块](#导入内置模块) - [OS 模块](#os-模块) - [Sys 模块](#sys-模块) - [统计模块](#统计模块) - [数学模块](#数学模块) - [字符串模块](#字符串模块) - [随机模块](#随机模块) - [💻 练习:第 12 天](#-练习-第12天) - [练习:级别 1](#练习-级别-1) - [练习:级别 2](#练习-级别-2) - [练习:级别 3](#练习-级别-3) # 📘 第 12 天 ## 模块 ### 什么是模块 模块是包含一组代码或一组函数的文件,可以包含在一个应用程序中。一个模块可以是包含单个变量、函数或大规模代码库的文件。 ### 创建模块 要创建模块,我们在一个 Python 脚本中编写代码并保存为 .py 文件。 在项目文件夹中创建一个名为 mymodule.py 的文件。让我们在此文件中编写一些代码。 ```py # mymodule.py 文件 def generate_full_name(firstname, lastname): return firstname + ' ' + lastname ``` 在项目目录中创建 main.py 文件并导入 mymodule.py 文件。 ### 导入模块 要导入文件,我们使用 _import_ 关键字和文件名。 ```py # main.py 文件 import mymodule print(mymodule.generate_full_name('Asabeneh', 'Yetayeh')) # Asabeneh Yetayeh ``` ### 从模块中导入函数 我们可以在一个文件中有很多函数,并且我们可以分别导入所有函数。 ```py # main.py 文件 from mymodule import generate_full_name, sum_two_nums, person, gravity print(generate_full_name('Asabneh','Yetayeh')) print(sum_two_nums(1,9)) mass = 100 weight = mass * gravity print(weight) print(person['firstname']) ``` ### 从模块中导入函数并重命名 在导入过程中,我们可以重命名模块名称。 ```py # main.py 文件 from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g print(fullname('Asabneh','Yetayeh')) print(total(1, 9)) mass = 100 weight = mass * g print(weight) print(p) print(p['firstname']) ``` ## 导入内置模块 像其他编程语言一样,我们也可以通过使用关键字 _import_ 导入文件/函数来导入模块。让我们导入我们大多数时候会使用的常见模块。一些常见的内置模块:_math_、_datetime_、_os_、_sys_、_random_、_statistics_、_collections_、_json_、_re_ ### OS 模块 使用 Python _os_ 模块可以自动执行许多操作系统任务。Python 中的 OS 模块提供了创建、更改当前工作目录和删除目录(文件夹)、获取其内容、更改和识别当前目录的函数。 ```py # 导入模块 import os # 创建目录 os.mkdir('directory_name') # 更改当前目录 os.chdir('path') # 获取当前工作目录 os.getcwd() # 删除目录 os.rmdir() ``` ### Sys 模块 sys 模块提供用于操作 Python 运行时环境不同部分的函数和变量。函数 sys.argv 返回传递给 Python 脚本的命令行参数列表。此列表中索引 0 处的项始终是脚本的名称,索引 1 处是从命令行传递的参数。 示例 script.py 文件: ```py import sys #print(sys.argv[0], argv[1],sys.argv[2]) # 这一行会打印出来:文件名 argument1 argument2 print('Welcome {}. Enjoy {} challenge!'.format(sys.argv[1], sys.argv[2])) ``` 现在要查看这个脚本的工作效果,我在命令行中写: ```sh python script.py Asabeneh 30DaysOfPython ``` 结果: ```sh Welcome Asabeneh. Enjoy 30DayOfPython challenge! ``` 一些有用的 sys 命令: ```py # 退出 sys sys.exit() # 知道最大整数变量 sys.maxsize # 知道环境路径 sys.path # 知道使用的 Python 版本 sys.version ``` ### 统计模块 统计模块提供用于数值数据的数学统计的函数。这个模块中定义的流行统计函数:_mean_、_median_、_mode_、_stdev_ 等。 ```py from statistics import * # 导入所有统计模块 ages = [20, 20, 4, 24, 25, 22, 26, 20, 23, 22, 26] print(mean(ages)) # ~22.9 print(median(ages)) # 23 print(mode(ages)) # 20 print(stdev(ages)) # ~2.3 ``` ### 数学模块 包含许多数学运算和常数的模块。 ```py import math print(math.pi) # 3.141592653589793, pi 常数 print(math.sqrt(2)) # 1.4142135623730951, 平方根 print(math.pow(2, 3)) # 8.0, 指数函数 print(math.floor(9.81)) # 9, 向下取整 print(math.ceil(9.81)) # 10, 向上取整 print(math.log10(100)) # 2, 以 10 为底的对数 ``` 现在,我们已经导入了包含大量函数的 _math_ 模块,可以帮助我们进行数学计算。要检查模块中包含哪些函数,我们可以使用 _help(math)_ 或 _dir(math)_。这将显示模块中的可用函数。如果我们只想从模块中导入特定的函数,我们可以这样导入: ```py from math import pi print(pi) ``` 也可以一次导入多个函数 ```py from math import pi, sqrt, pow, floor, ceil, log10 print(pi) # 3.141592653589793 print(sqrt(2)) # 1.4142135623730951 print(pow(2, 3)) # 8.0 print(floor(9.81)) # 9 print(ceil(9.81)) # 10 print(math.log10(100)) # 2 ``` 但如果我们想要导入数学模块中的所有函数,可以使用 \* . ```py from math import * print(pi) # 3.141592653589793, pi 常数 print(sqrt(2)) # 1.4142135623730951, 平方根 print(pow(2, 3)) # 8.0, 指数 print(floor(9.81)) # 9, 向下取整 print(ceil(9.81)) # 10, 向上取整 print(math.log10(100)) # 2 ``` 当我们导入时,我们也可以重命名函数名称。 ```py from math import pi as PI print(PI) # 3.141592653589793 ``` ### 字符串模块 字符串模块是一个很有用的模块。下面的例子展示了字符串模块的一些用法。 ```py import string print(string.ascii_letters) # abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ print(string.digits) # 0123456789 print(string.punctuation) # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ ``` ### 随机模块 现在你已经熟悉了导入模块。让我们再进行一次导入以熟悉它。让我们导入 _random_ 模块,它会给我们一个 0 到 0.9999 之间的随机数。_random_ 模块有很多函数,但在本节中,我们将只使用 _random_ 和 _randint_。 ```py from random import random, randint print(random()) # 它不需要任何参数;它返回一个介于 0 和 0.9999 之间的值 print(randint(5, 20)) # 它返回一个介于 [5, 20] 之间的随机整数(含边界) ``` 🌕 你走得很远了。继续努力!你刚刚完成第 12 天的挑战,现在你已经在通往伟大的路上迈出了 12 步。现在为你的大脑和肌肉做一些练习。 ## 💻 练习:第 12 天 ### 练习:级别 1 1. 编写一个生成六位数/字符 random_user_id 的函数。 ```py print(random_user_id()); '1ee33d' ``` 2. 修改上一个任务。声明一个名为 user_id_gen_by_user 的函数。它不接受任何参数,但接受两个输入。一个输入是字符的数量,另一个输入是应生成的 ID 数量。 ```py print(user_id_gen_by_user()) # 用户输入:5 5 #输出: #kcsy2 #SMFYb #bWmeq #ZXOYh #2Rgxf print(user_id_gen_by_user()) # 16 5 #1GCSgPLMaBAVQZ26 #YD7eFwNQKNs7qXaT #ycArC5yrRupyG00S #UbGxOFI7UXSWAyKN #dIV0SSUTgAdKwStr ``` 3. 编写一个名为 rgb_color_gen 的函数。它将生成 RGB 颜色(每个值范围从 0 到 255)。 ```py print(rgb_color_gen()) # rgb(125,244,255) - 输出应该是这种形式 ``` ### 练习:级别 2 1. 编写一个函数 list_of_hexa_colors,它返回一个数组中的任意数量的十六进制颜色(六个十六进制数写在 # 后面。十六进制数字系统由 16 个符号组成,0-9 和 前 6 个字母 a-f。查看任务 6 的输出示例)。 2. 编写一个函数 list_of_rgb_colors,它返回一个数组中的任意数量的 RGB 颜色。 3. 编写一个函数 generate_colors,它可以生成任意数量的十六进制或 RGB 颜色。 ```py generate_colors('hexa', 3) # ['#a3e12f','#03ed55','#eb3d2b'] generate_colors('hexa', 1) # ['#b334ef'] generate_colors('rgb', 3) # ['rgb(5, 55, 175','rgb(50, 105, 100','rgb(15, 26, 80'] generate_colors('rgb', 1) # ['rgb(33,79, 176)'] ``` ### 练习:级别 3 1. 调用你的函数 shuffle_list,它接受一个列表作为参数并返回一个打乱的列表。 2. 编写一个函数,它在 0-9 的范围内返回七个随机数的数组。所有数字必须是唯一的。 🎉 恭喜! 🎉 [<< 第 11 天](./11_functions.md) | [第 13 天 >>](./13_list_comprehension.md) ================================================ FILE: Chinese/13_list_comprehension.md ================================================

Python 30 天挑战:第 13 天 - 列表推导式

Twitter Follow 作者: Asabeneh Yetayeh
第二版: 2021 年 7 月
[<< 第 12 天](./12_modules.md) | [第 14 天 >>](./14_higher_order_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 13 天](#📘-第-13-天) - [列表推导式](#列表推导式) - [Lambda 函数](#lambda函数) - [创建 Lambda 函数](#创建-lambda-函数) - [Lambda 函数在另一个函数中](#lambda-函数在另一个函数中) - [💻 练习:第 13 天](#💻-练习第-13-天) # 📘 第 13 天 ## 列表推导式 在 Python 中,列表推导式是一种从序列中创建列表的简洁方式。它是创建新列表的简短方法。列表推导式比使用 _for_ 循环处理列表快得多。 ```py # 语法 [i for i in iterable if 表达式] ``` **例子: 1** 例如,如果你想将字符串转换为字符列表。你可以使用几种方法。我们来看看其中的一些: ```py # 一种方法 language = 'Python' lst = list(language) # 将字符串转换为列表 print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] # 第二种方法: 列表推导式 lst = [i for i in language] print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] ``` **例子: 2** 例如,如果你想生成一个数字列表 ```py # 生成数字 numbers = [i for i in range(11)] # 生成从0到10的数字 print(numbers) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # 也可以在迭代过程中进行数学运算 squares = [i * i for i in range(11)] print(squares) # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100] # 还可以生成元组列表 numbers = [(i, i * i) for i in range(11)] print(numbers) # [(0, 0), (1, 1), (2, 4), (3, 9), (4, 16), (5, 25)] ``` **例子: 3** 列表推导式可以与 if 表达式结合使用 ```py # 生成偶数 even_numbers = [i for i in range(21) if i % 2 == 0] # 生成从0到21的偶数列表 print(even_numbers) # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # 生成奇数 odd_numbers = [i for i in range(21) if i % 2 != 0] # 生成从0到21的奇数列表 print(odd_numbers) # [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] # 过滤数字:让我们从下面的列表中过滤出正偶数 numbers = [-8, -7, -3, -1, 0, 1, 3, 4, 5, 7, 6, 8, 10] positive_even_numbers = [i for i in range(21) if i % 2 == 0 and i > 0] print(positive_even_numbers) # [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # 扁平化三维数组 list_of_lists = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] flattened_list = [number for row in list_of_lists for number in row] print(flattened_list) # [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ## Lambda 函数 Lambda 函数是没有名字的小匿名函数。它可以接受任意数量的参数,但只能有一个表达式。Lambda 函数类似于 JavaScript 中的匿名函数。当我们想在另一个函数中编写匿名函数时,需要它。 ### 创建 Lambda 函数 要创建一个 lambda 函数,我们使用 _lambda_ 关键字,然后是一个或多个参数,再然后是一个表达式。请参阅下面的语法和示例。Lambda 函数不用 return,但它会隐式地返回表达式。 ```py # 语法 x = lambda param1, param2, param3: param1 + param2 + param3 print(x(arg1, arg2, arg3)) ``` **示例:** ```py # 命名函数 def add_two_nums(a, b): return a + b print(add_two_nums(2, 3)) # 5 # 让我们将上述函数更改为 lambda 函数 add_two_nums = lambda a, b: a + b print(add_two_nums(2, 3)) # 5 # 自调用 lambda 函数 print((lambda a, b: a + b)(2, 3)) # 5 square = lambda x: x ** 2 print(square(3)) # 9 cube = lambda x: x ** 3 print(cube(3)) # 27 # 多个变量 multiple_variable = lambda a, b, c: a ** 2 - 3 * b + 4 * c print(multiple_variable(5, 5, 3)) # 22 ``` ### Lambda 函数在另一个函数中 在另一个函数中使用 lambda 函数。 ```py def power(x): return lambda n: x ** n cube = power(2)(3) # 函数 power 现在需要两个单独的括号中的参数 print(cube) # 8 two_power_of_five = power(2)(5) print(two_power_of_five) # 32 ``` 🌕 继续保持良好的工作。保持动力,天空才是你的极限!你已经完成了第 13 天的挑战,你已经向伟大的目标迈出了 13 步。现在为你的大脑和肌肉来做一些练习。 ## 💻 练习: 第 13 天 1. 使用列表推导式过滤出列表中的负数和零: ```py numbers = [-4, -3, -2, -1, 0, 2, 4, 6] ``` 2. 将以下列表中的列表展平为一维列表: ```py list_of_lists = [[[1, 2, 3]], [[4, 5, 6]], [[7, 8, 9]]] 输出: [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` 3. 使用列表推导式创建以下元组列表: ```py [(0, 1, 0, 0, 0, 0, 0), (1, 1, 1, 1, 1, 1, 1), (2, 1, 2, 4, 8, 16, 32), (3, 1, 3, 9, 27, 81, 243), (4, 1, 4, 16, 64, 256, 1024), (5, 1, 5, 25, 125, 625, 3125), (6, 1, 6, 36, 216, 1296, 7776), (7, 1, 7, 49, 343, 2401, 16807), (8, 1, 8, 64, 512, 4096, 32768), (9, 1, 9, 81, 729, 6561, 59049), (10, 1, 10, 100, 1000, 10000, 100000)] ``` 4. 将以下列表展平成一个新列表: ```py countries = [[('芬兰', '赫尔辛基')], [('瑞典', '斯德哥尔摩')], [('挪威', '奥斯陆')]] 输出: [['芬兰', '汇编', '赫尔辛基'], ['瑞典', 'SWE', '斯德哥尔摩'], ['挪威', 'NOR', '奥斯陆']] ``` 5. 将以下列表转换为字典列表: ```py countries = [[('芬兰', '赫尔辛基')], [('瑞典', '斯德哥尔摩')], [('挪威', '奥斯陆')]] 输出: [{'国家': '芬兰', '城市': '赫尔辛基'}, {'国家': '瑞典', '城市': '斯德哥尔摩'}, {'国家': '挪威', '城市': '奥斯陆'}] ``` 6. 将以下列表转换为连接字符串的列表: ```py names = [[('Asabeneh', 'Yetayeh')], [('David', 'Smith')], [('Donald', 'Trump')], [('Bill', 'Gates')]] 输出: ['Asabeneh Yetayeh', 'David Smith', 'Donald Trump', 'Bill Gates'] ``` 7. 编写一个 lambda 函数,可以求解线性函数的斜率或 y 截距。 🎉 祝贺你!🎉 [<< 第 12 天](./12_modules.md) | [第 14 天 >>](./14_higher_order_functions.md) ================================================ FILE: Chinese/14_higher_order_functions.md ================================================

30天Python:第14天 - 高阶函数

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 13 天](./13_list_comprehension.md) | [第 15 天 >>](./15_python_type_errors_cn.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 14 天](#-第14天) - [高阶函数](#高阶函数) - [函数作为参数](#函数作为参数) - [函数作为返回值](#函数作为返回值) - [Python 闭包](#python闭包) - [Python 装饰器](#python装饰器) - [创建装饰器](#创建装饰器) - [将多个装饰器应用于单个函数](#将多个装饰器应用于单个函数) - [在装饰器函数中接受参数](#在装饰器函数中接受参数) - [内置高阶函数](#内置高阶函数) - [Python - Map 函数](#python---map函数) - [Python - Filter 函数](#python---filter函数) - [Python - Reduce 函数](#python---reduce函数) - [💻 练习:第 14 天](#-练习-第14天) - [练习:简单](#练习-简单) - [练习:中等](#练习-中等) - [练习:高级](#练习-高级) # 📘 第 14 天 ## 高阶函数 在 Python 中,函数被视为第一类公民,可以对函数执行以下操作: - 一个函数可以接收一个或多个函数作为参数 - 一个函数可以作为另一个函数的返回值 - 一个函数可以被修改 - 一个函数可以被赋值给变量 在本节中,我们将讨论: 1. 将函数作为参数传递 2. 将函数作为返回值返回 3. 使用 Python 闭包和装饰器 ### 函数作为参数 ```py def sum_numbers(nums): # 普通函数 return sum(nums) # 使用内置函数sum的函数 def higher_order_function(f, lst): # 将函数作为参数 summation = f(lst) return summation result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5]) print(result) # 15 ``` ### 函数作为返回值 ```py def square(x): # 求平方函数 return x ** 2 def cube(x): # 求立方函数 return x ** 3 def absolute(x): # 求绝对值函数 if x >= 0: return x else: return -(x) def higher_order_function(type): # 返回一个函数的高阶函数 if type == 'square': return square elif type == 'cube': return cube elif type == 'absolute': return absolute result = higher_order_function('square') print(result(3)) # 9 result = higher_order_function('cube') print(result(3)) # 27 result = higher_order_function('absolute') print(result(-3)) # 3 ``` 从上述示例中可以看到,高阶函数根据传入的参数来返回不同的函数。 ## Python 闭包 Python 允许嵌套函数访问外部封闭函数的作用域。 这称为闭包。 让我们看看闭包在 Python 中的工作原理。在 Python 中,闭包是通过在另一个封装函数内部嵌套函数,然后返回内部函数来创建的。请看下面的例子。 **示例:** ```py def add_ten(): ten = 10 def add(num): return num + ten return add closure_result = add_ten() print(closure_result(5)) # 15 print(closure_result(10)) # 20 ``` ## Python 装饰器 装饰器是一种设计模式,允许用户在不修改对象结构的情况下为其添加新功能。装饰器通常在你想要装饰的函数定义之前调用。 ### 创建装饰器 要创建装饰器函数,我们需要一个带有内部包装器函数的外部函数。 **示例:** ```py # 普通函数 def greeting(): return 'Welcome to Python' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper g = uppercase_decorator(greeting) print(g()) # WELCOME TO PYTHON # 使用装饰器实现上面的示例 '''这个装饰器函数是一个高阶函数,接收一个函数作为参数''' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper @uppercase_decorator def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### 将多个装饰器应用于单个函数 ```py '''这些装饰器函数是高阶函数,接收函数作为参数''' # 第一个装饰器 def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper # 第二个装饰器 def split_string_decorator(function): def wrapper(): func = function() splitted_string = func.split() return splitted_string return wrapper @split_string_decorator @uppercase_decorator # 在此情况下,装饰器的顺序很重要 - .upper()函数不适用于列表 def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### 在装饰器函数中接受参数 大多数时候我们需要我们的函数接受参数,所以我们可能需要定义一个接受参数的装饰器。 ```py def decorator_with_parameters(function): def wrapper_accepting_parameters(para1, para2, para3): function(para1, para2, para3) print("I live in {}".format(para3)) return wrapper_accepting_parameters @decorator_with_parameters def print_full_name(first_name, last_name, country): print("I am {} {}. I love to teach.".format( first_name, last_name, country)) print_full_name("Asabeneh", "Yetayeh",'Finland') ``` ## 内置高阶函数 在本部分中,我们将讨论一些内置的高阶函数,如*map()*, *filter*和*reduce*。 Lambda 函数可以作为参数传递,其最佳使用案例是在地图、过滤和减少等功能中。 ### Python - Map 函数 map()函数是一个内置函数,接收一个函数和可迭代对象作为参数。 ```py # 语法 map(function, iterable) ``` **示例:1** ```py numbers = [1, 2, 3, 4, 5] # 可迭代对象 def square(x): return x ** 2 numbers_squared = map(square, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] # 让我们应用lambda函数 numbers_squared = map(lambda x : x ** 2, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] ``` **示例:2** ```py numbers_str = ['1', '2', '3', '4', '5'] # 可迭代对象 numbers_int = map(int, numbers_str) print(list(numbers_int)) # [1, 2, 3, 4, 5] ``` **示例:3** ```py names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # 可迭代对象 def change_to_upper(name): return name.upper() names_upper_cased = map(change_to_upper, names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] # 让我们应用lambda函数 names_upper_cased = map(lambda name: name.upper(), names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] ``` map 函数实际上是迭代列表。例如,它将名称更改为大写并返回一个新列表。 ### Python - Filter 函数 filter()函数调用指定函数,该函数对指定的可迭代对象(列表)中的每个项目返回布尔值。它过滤出满足过滤条件的项目。 ```py # 语法 filter(function, iterable) ``` **示例:1** ```py # 让我们只过滤偶数 numbers = [1, 2, 3, 4, 5] # 可迭代对象 def is_even(num): if num % 2 == 0: return True return False even_numbers = filter(is_even, numbers) print(list(even_numbers)) # [2, 4] ``` **示例:2** ```py numbers = [1, 2, 3, 4, 5] # 可迭代对象 def is_odd(num): if num % 2 != 0: return True return False odd_numbers = filter(is_odd, numbers) print(list(odd_numbers)) # [1, 3, 5] ``` ```py # 过滤长名称 names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # 可迭代对象 def is_name_long(name): if len(name) > 7: return True return False long_names = filter(is_name_long, names) print(list(long_names)) # ['Asabeneh'] ``` ### Python - Reduce 函数 *reduce()*函数定义在 functools 模块中,我们需要从这个模块中导入它。像 map 和 filter 一样,它接收两个参数,一个函数和一个可迭代对象。然而,它不返回另一个可迭代对象,而是返回一个单一的值。 **示例:1** ```py numbers_str = ['1', '2', '3', '4', '5'] # 可迭代对象 def add_two_nums(x, y): return int(x) + int(y) total = reduce(add_two_nums, numbers_str) print(total) # 15 ``` ## 💻 练习:第 14 天 ```py countries = ['Estonia', 'Finland', 'Sweden', 'Denmark', 'Norway', 'Iceland'] names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ``` ### 练习:简单 1. 解释 map、filter 和 reduce 的区别。 2. 解释高阶函数、闭包和装饰器的区别。 3. 定义调用函数,见示例。 4. 使用 for 循环打印 countries 列表中的每个国家。 5. 使用 for 循环打印 names 列表中的每个名称。 6. 使用 for 循环打印 numbers 列表中的每个数字。 ### 练习:中等 1. 使用 map 将 countries 列表中的每个国家更改为大写,生成一个新列表。 2. 使用 map 将 numbers 列表中的每个数字更改为平方,生成一个新列表。 3. 使用 map 将 names 列表中的每个名称更改为大写,生成一个新列表。 4. 使用 filter 过滤出包含“land”的国家。 5. 使用 filter 过滤出正好六个字符的国家。 6. 使用 filter 过滤出包含六个字母及以上的国家。 7. 使用 filter 过滤出以'E'开头的国家。 8. 链接两个或多个列表迭代器(例如 arr.map(callback).filter(callback).reduce(callback))。 9. 声明一个函数 get_string_lists,它接收一个列表作为参数并返回一个仅包含字符串项的列表。 10. 使用 reduce 对 numbers 列表中的所有数字求和。 11. 使用 reduce 将所有国家连接起来,生成句子:Estonia, Finland, Sweden, Denmark, Norway, and Iceland are north European countries。 12. 声明一个函数 categorize_countries,返回一个包含某种通用模式的国家列表(可以在本仓库的 countries.js 文件中找到国家列表,例如 'land', 'ia', 'island', 'stan')。 13. 创建一个返回字典的函数,其中键表示国家名称的首字母,值表示以该字母开头的国家数。 14. 声明一个 get_first_ten_countries 函数 - 它返回数据文件夹中 countries.js 列表中的前十个国家。 15. 声明一个 get_last_ten_countries 函数 - 它返回国家列表中的最后十个国家。 ### 练习:高级 1. 使用 countries_data.py (https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) 文件,完成以下任务: - 按国家名称、首都和人口排序国家 - 按位置排序出前十个最常用语言。 - 排序出前十个人口最多的国家。 🎉 恭喜你! 🎉 [<< 第 13 天](./13_list_comprehension.md) | [第 15 天 >>](./15_python_type_errors_cn.md) ================================================ FILE: Chinese/15_python_type_errors.md ================================================

30天Python:第15天——Python类型错误

Twitter Follow 作者: Asabeneh Yetayeh
第二版: 2021 年 7 月
[<< 第 14 天](../14_Day_Higher_order_functions/14_higher_order_functions.md) | [第 16 天 >>](../16_Day_Python_date_time/16_python_datetime.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 第 15 天](#-第15天) - [Python 错误类型](#python错误类型) - [SyntaxError](#syntaxerror) - [NameError](#nameerror) - [IndexError](#indexerror) - [ModuleNotFoundError](#modulenotfounderror) - [AttributeError](#attributeerror) - [KeyError](#keyerror) - [TypeError](#typeerror) - [ImportError](#importerror) - [ValueError](#valueerror) - [ZeroDivisionError](#zerodivisionerror) - [💻 练习: 第 15 天](#练习-第15天) # 📘 第 15 天 ## Python 错误类型 当我们编写代码时,很常见会打错字或出现其他一些常见错误。如果我们的代码不能运行,Python 解释器会显示一条信息,包含关于问题发生在哪里以及错误类型的反馈信息。它有时还会给我们提供可能的修复建议。理解编程语言中的不同类型的错误将有助于我们快速调试代码,同时也会使我们在工作中变得更优秀。 让我们逐个来看最常见的错误类型。首先让我们打开 Python 交互式 Shell。打开电脑终端,输入‘python’,将会打开 Python 交互式 Shell。 ### SyntaxError **示例 1: SyntaxError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> ``` 如你所见,我们犯了一个语法错误,因为我们忘了用括号包裹字符串,Python 已经建议了解决办法。让我们修复它。 ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> print('hello world') hello world >>> ``` 错误类型是*SyntaxError*。修复之后我们的代码顺利执行了。让我们看看更多的错误类型。 ### NameError **示例 1: NameError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> ``` 如你所见,消息显示年龄变量未定义。确实,我们没有定义年龄变量,但我们试图打印它。现在,让我们通过定义并赋值它来修复它。 ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> age = 25 >>> print(age) 25 >>> ``` 错误类型是*NameError*。我们通过定义变量名调试了错误。 ### IndexError **示例 1: IndexError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> numbers = [1, 2, 3, 4, 5] >>> numbers[5] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range >>> ``` 在上面的例子中,Python 引发了 IndexError,因为列表只有 0 到 4 的索引,因此超出了范围。 ### ModuleNotFoundError **示例 1: ModuleNotFoundError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> ``` 在上面的例子中,我故意在 math 后面多加了一个 s,所以引发了*ModuleNotFoundError*。让我们通过去掉多余的 s 来修复它。 ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> ``` 我们修复了它,让我们使用 math 模块中的一些函数。 ### AttributeError **示例 1: AttributeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (最 澘會末呼つはゃす尽ルル귀행세뿌府ぐ <|vq_10375|> File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> ``` 如你所见,我又犯了一个错误!我试图从 math 模块调用 PI 函数,但实际上它是 pi。它引发了属性错误,意味着该函数在模块中不存在。让我们通过将 PI 改为 pi 来修复它。 ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> math.pi 3.141592653589793 >>> ``` 现在,当我们从 math 模块调用 pi 时得到了结果。 ### KeyError **示例 1: KeyError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> users = {'name':'Asab', 'age':250, 'country':'Finland'} >>> users['name'] 'Asab' >>> users['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> ``` 如你所见,用于获取字典值的键存在拼写错误。这是一个 key error,修复非常简单。让我们做一下! ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> user = {'name':'Asab', 'age':250, 'country':'Finland'} >>> user['name'] 'Asab' >>> user['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> user['country'] 'Finland' >>> ``` 我们调试了错误,代码运行并获取了值。 ### TypeError **示例 1: TypeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> ``` 在上面的例子中,引发了 TypeError,因为我们不能将数字和字符串相加。第一个解决方法是将字符串转换为 int 或 float。另一种解决方法是将数字转换为字符串(结果将是'43')。让我们跟随第一种解决方案。 ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> 4 + int('3') 7 >>> 4 + float('3') 7.0 >>> ``` 错误消除,我们得到了期望的结果。 ### ImportError **示例 1: TypeError** ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> ``` 数学模块中没有函数叫做 power,它是以另一个名字存在: _pow_。让我们纠正它: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> from math import pow >>> pow(2,3) 8.0 >>> ``` ### ValueError ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> int('12a') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '12a' >>> ``` 在这种情况下,我们无法将给定字符串更改为数字,因为它包含了'a'字母。 ### ZeroDivisionError ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1/0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero >>> ``` 我们不能将一个数除以零。 我们已经涵盖了一些 Python 错误类型,如果你想了解更多,请查看 Python 文档中的 Python 错误类型。 如果你能够很好地阅读错误类型,你将能够快速修复你的 bug,并且你也会成为一个更优秀的程序员。 🌕 你正在不断进步。你已经走到了通往卓越的半程。现在来一些锻炼大脑和肌肉的练习吧。 ## 💻 练习: 第 15 天 1. 打开你 Python 的交互式 Shell,尝试本节中涵盖的所有示例。 🎉 恭喜! 🎉 [<< 第 14 天](../14_Day_Higher_order_functions/14_higher_order_functions.md) | [第 16 天 >>](../16_Day_Python_date_time/16_python_datetime.md) ================================================ FILE: Chinese/15_python_type_errors_cn.md ================================================ # 30天Python编程挑战:第15天 - Python类型错误 - [Day 15](#day-15) - [Python错误类型](#python错误类型) - [SyntaxError (语法错误)](#syntaxerror-语法错误) - [NameError (名称错误)](#nameerror-名称错误) - [IndexError (索引错误)](#indexerror-索引错误) - [ModuleNotFoundError (模块未找到错误)](#modulenotfounderror-模块未找到错误) - [AttributeError (属性错误)](#attributeerror-属性错误) - [KeyError (键错误)](#keyerror-键错误) - [TypeError (类型错误)](#typeerror-类型错误) - [ImportError (导入错误)](#importerror-导入错误) - [ValueError (值错误)](#valueerror-值错误) - [ZeroDivisionError (零除错误)](#zerodivisionerror-零除错误) - [💻 练习 - 第15天](#-练习---第15天) # 📘 Day 15 ## Python错误类型 当我们编写代码时,常常会出现打字错误或其他常见错误。如果我们的代码运行失败,Python解释器会显示一条消息,提供有关问题发生位置和错误类型的反馈信息。有时它还会给我们提供可能的修复建议。了解编程语言中不同类型的错误将帮助我们快速调试代码,并使我们在编程技能上有所提高。 让我们一一查看最常见的错误类型。首先,让我们打开Python交互式shell。转到你的计算机终端并输入'python'。Python交互式shell将会被打开。 ### SyntaxError (语法错误) **示例1: SyntaxError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> ``` 如你所见,我们犯了一个语法错误,因为我们忘记用括号括起字符串,而Python已经提出了解决方案。让我们修复它。 ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> print('hello world') hello world >>> ``` 错误是一个_SyntaxError_。修复后,我们的代码顺利执行。让我们看看更多的错误类型。 ### NameError (名称错误) **示例1: NameError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> ``` 从上面的消息可以看出,名称age没有被定义。是的,确实如此,我们没有定义age变量,但我们试图像已经声明了一样打印它。现在,让我们通过声明变量并为其赋值来修复这个问题。 ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> age = 25 >>> print(age) 25 >>> ``` 错误类型是_NameError_。我们通过定义变量名来调试了错误。 ### IndexError (索引错误) **示例1: IndexError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> numbers = [1, 2, 3, 4, 5] >>> numbers[5] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range >>> ``` 在上面的例子中,Python抛出了一个_IndexError_,因为列表的索引只有0到4,所以索引5超出了范围。 ### ModuleNotFoundError (模块未找到错误) **示例1: ModuleNotFoundError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> ``` 在上面的例子中,我故意在math后面添加了一个多余的s,结果抛出了_ModuleNotFoundError_。让我们通过从math中删除多余的s来修复它。 ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> ``` 我们修复了它,所以让我们使用math模块中的一些函数。 ### AttributeError (属性错误) **示例1: AttributeError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> ``` 如你所见,我又犯了一个错误!我试图从math模块调用PI函数,而不是pi。这抛出了一个属性错误,表示该函数在模块中不存在。让我们通过将PI更改为pi来修复它。 ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> math.pi 3.141592653589793 >>> ``` 现在,当我们从math模块调用pi时,我们得到了结果。 ### KeyError (键错误) **示例1: KeyError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> users = {'name':'Asab', 'age':250, 'country':'Finland'} >>> users['name'] 'Asab' >>> users['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> ``` 如你所见,在用于获取字典值的键中有一个拼写错误。这是一个键错误,修复方法很简单。让我们来做这个! ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> user = {'name':'Asab', 'age':250, 'country':'Finland'} >>> user['name'] 'Asab' >>> user['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> user['country'] 'Finland' >>> ``` 我们调试了错误,我们的代码运行并得到了结果。 ### TypeError (类型错误) **示例1: TypeError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> ``` 在上面的例子中,出现了TypeError,因为我们不能将数字与字符串相加。第一个解决方案是将字符串转换为int或float。另一个解决方案是将数字转换为字符串(那么结果将是'43')。让我们采用第一种修复方式。 ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> 4 + int('3') 7 >>> 4 + float('3') 7.0 >>> ``` 错误已消除,我们得到了预期的结果。 ### ImportError (导入错误) **示例1: ImportError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> ``` math模块中没有名为power的函数,它的名字是不同的:_pow_。让我们纠正它: ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> from math import pow >>> pow(2,3) 8.0 >>> ``` ### ValueError (值错误) ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> int('12a') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '12a' >>> ``` 在这种情况下,我们无法将给定的字符串转换为数字,因为其中有字母'a'。 ### ZeroDivisionError (零除错误) ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1/0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero >>> ``` 我们不能用零去除一个数字。 我们已经介绍了一些Python错误类型,如果你想了解更多,请查看Python文档中关于Python错误类型的内容。 如果你擅长阅读错误类型,那么你将能够快速修复你的bug,你也将成为一个更好的程序员。 🌕 你正在进步。你已经完成了一半的道路,正走向伟大。现在做一些练习来锻炼你的大脑和肌肉。 ## 💻 练习 - 第15天 1. 打开你的Python交互式shell,尝试本节中介绍的所有示例。 🎉 恭喜!🎉 [<< 第 14 天](./14_higher_order_functions.md) | [第 16 天 >>](./16_python_datetime_cn.md) ================================================ FILE: Chinese/16_python_datetime.md ================================================

30天Python学习:第16天 - Python日期和时间

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[<< 第 15 天](../15_Day_Python_type_errors/15_python_type_errors.md) | [第 17 天 >>](../17_Day_Exception_handling/17_exception_handling.md) ![30天Python学习](../images/30DaysOfPython_banner3@2x.png) - [📘 第 16 天](#-第16天) - [Python _datetime_ 模块](#python-datetime-模块) - [获取 _datetime_ 信息](#获取-datetime-信息) - [使用 _strftime_ 格式化日期输出](#使用-strftime-格式化日期输出) - [使用 _strptime_ 将字符串转换为时间](#使用-strptime-将字符串转换为时间) - [从 _datetime_ 中使用 _date_](#从-datetime-中使用-date) - [用时间对象表示时间](#用时间对象表示时间) - [计算两个时间点之间的差异](#计算两个时间点之间的差异) - [使用 _timedelta_ 计算两个时间点之间的差异](#使用-timedelta-计算两个时间点之间的差异) - [💻 练习:第 16 天](#-练习-第16天) # 📘 第 16 天 ## Python _datetime_ 模块 Python 有一个 _datetime_ 模块来处理日期和时间。 ```python import datetime print(dir(datetime)) ['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo'] ``` 使用 dir 或 help 内置命令可以知道某个模块中可用的函数。如你所见,datetime 模块中有很多函数,但我们将专注于 _date_, _datetime_, _time_ 和 _timedelta_。让我们一一看一下它们。 ### 获取 _datetime_ 信息 ```python from datetime import datetime now = datetime.now() print(now) # 2021-07-08 07:34:46.549883 day = now.day # 8 month = now.month # 7 year = now.year # 2021 hour = now.hour # 7 minute = now.minute # 38 second = now.second timestamp = now.timestamp() print(day, month, year, hour, minute) print('timestamp', timestamp) print(f'{day}/{month}/{year}, {hour}:{minute}') # 8/7/2021, 7:38 ``` 时间戳或 Unix 时间戳是从 1970 年 1 月 1 日 UTC 起经过的秒数。 ### 使用 _strftime_ 格式化日期输出 ```python from datetime import datetime new_year = datetime(2020, 1, 1) print(new_year) # 2020-01-01 00:00:00 day = new_year.day month = new_year.month year = new_year.year hour = new_year.hour minute = new_year.minute second = new_year.second print(day, month, year, hour, minute) #1 1 2020 0 0 print(f'{day}/{month}/{year}, {hour}:{minute}') # 1/1/2020, 0:0 ``` 使用 _strftime_ 方法格式化日期时间,可以在[这里](https://strftime.org/)找到文档。 ```python from datetime import datetime # 当前日期和时间 now = datetime.now() t = now.strftime("%H:%M:%S") print("time:", t) time_one = now.strftime("%m/%d/%Y, %H:%M:%S") # mm/dd/YY H:M:S 格式 print("time one:", time_one) time_two = now.strftime("%d/%m/%Y, %H:%M:%S") # dd/mm/YY H:M:S 格式 print("time two:", time_two) ``` ```sh time: 01:05:01 time one: 12/05/2019, 01:05:01 time two: 05/12/2019, 01:05:01 ``` 下面是我们用来格式化时间的 _strftime_ 符号。此模块的所有格式示例。 ![strftime](../images/strftime.png) ### 使用 _strptime_ 将字符串转换为时间 这里有一个帮助理解格式的[文档](https://www.programiz.com/python-programming/datetime/strptimet)。 ```python from datetime import datetime date_string = "5 December, 2019" print("date_string =", date_string) date_object = datetime.strptime(date_string, "%d %B, %Y") print("date_object =", date_object) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 ``` ### 从 _datetime_ 中使用 _date_ ```python from datetime import date d = date(2020, 1, 1) print(d) print('Current date:', d.today()) # 2019-12-05 # 今日日期对象 today = date.today() print("Current year:", today.year) # 2019 print("Current month:", today.month) # 12 print("Current day:", today.day) # 5 ``` ### 用时间对象表示时间 ```python from datetime import time # time(hour = 0, minute = 0, second = 0) a = time() print("a =", a) # time(hour, minute and second) b = time(10, 30, 50) print("b =", b) # time(hour, minute and second) c = time(hour=10, minute=30, second=50) print("c =", c) # time(hour, minute, second, microsecond) d = time(10, 30, 50, 200555) print("d =", d) ``` 输出结果 a = 00:00:00 b = 10:30:50 c = 10:30:50 d = 10:30:50.200555 ### 计算两个时间点之间的差异 ```python today = date(year=2019, month=12, day=5) new_year = date(year=2020, month=1, day=1) time_left_for_newyear = new_year - today # 距离新年的时间:27天,0:00:00 print('Time left for new year: ', time_left_for_newyear) t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0) t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) diff = t2 - t1 print('Time left for new year:', diff) # 距离新年:26天,23:01:00 ``` ### 使用 _timedelta_ 计算两个时间点之间的差异 ```python from datetime import timedelta t1 = timedelta(weeks=12, days=10, hours=4, seconds=20) t2 = timedelta(days=7, hours=5, minutes=3, seconds=30) t3 = t1 - t2 print("t3 =", t3) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 t3 = 86 days, 22:56:50 ``` 🌕 你是非凡的。你已经向着伟大的道路迈出了第 16 步。现在为你的大脑和肌肉做一些练习吧。 ## 💻 练习:第 16 天 1. 获取当前日期、月、年、小时、分钟和时间戳 2. 使用此格式格式化当前日期:“%m/%d/%Y, %H:%M:%S” 3. 今天是 2019 年 12 月 5 日。将这个时间字符串转换为时间。 4. 计算现在和新年之间的时间差。 5. 计算 1970 年 1 月 1 日和现在之间的时间差。 6. 想想,你可以使用 datetime 模块做什么?示例: - 时间序列分析 - 获取应用程序中任何活动的时间戳 - 添加博客上的帖子 🎉 恭喜你 ! 🎉 [<< 第 15 天](../15_Day_Python_type_errors/15_python_type_errors.md) | [第 17 天 >>](../17_Day_Exception_handling/17_exception_handling.md) ================================================ FILE: Chinese/16_python_datetime_cn.md ================================================ # 30天Python编程挑战:第16天 - Python日期时间 - [第16天](#-第16天) - [Python *datetime*](#python-datetime) - [获取 *datetime* 信息](#获取-datetime-信息) - [使用 *strftime* 格式化日期输出](#使用-strftime-格式化日期输出) - [使用 *strptime* 将字符串转换为时间](#使用-strptime-将字符串转换为时间) - [从 *datetime* 使用 *date*](#从-datetime-使用-date) - [使用Time对象表示时间](#使用time对象表示时间) - [计算两个时间点之间的差异](#计算两个时间点之间的差异) - [使用 *timedelta* 计算两个时间点之间的差异](#使用-timedelta-计算两个时间点之间的差异) - [💻 练习 - 第16天](#-练习---第16天) # 📘 第16天 ## Python *datetime* Python有一个 _datetime_ 模块用于处理日期和时间。 ```py import datetime print(dir(datetime)) ['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo'] ``` 通过dir或help内置命令,可以了解特定模块中可用的函数。如你所见,datetime模块中有许多函数,但我们将重点关注 _date_、_datetime_、_time_ 和 _timedelta_。让我们一个一个地看。 ### 获取 *datetime* 信息 ```py from datetime import datetime now = datetime.now() print(now) # 2021-07-08 07:34:46.549883 day = now.day # 8 month = now.month # 7 year = now.year # 2021 hour = now.hour # 7 minute = now.minute # 38 second = now.second timestamp = now.timestamp() print(day, month, year, hour, minute) print('timestamp', timestamp) print(f'{day}/{month}/{year}, {hour}:{minute}') # 8/7/2021, 7:38 ``` 时间戳或Unix时间戳是从1970年1月1日UTC开始经过的秒数。 ### 使用 *strftime* 格式化日期输出 ```py from datetime import datetime new_year = datetime(2020, 1, 1) print(new_year) # 2020-01-01 00:00:00 day = new_year.day month = new_year.month year = new_year.year hour = new_year.hour minute = new_year.minute second = new_year.second print(day, month, year, hour, minute) #1 1 2020 0 0 print(f'{day}/{month}/{year}, {hour}:{minute}') # 1/1/2020, 0:0 ``` 使用 *strftime* 方法格式化日期时间,相关文档可以在[这里](https://strftime.org/)找到。 ```py from datetime import datetime # 当前日期和时间 now = datetime.now() t = now.strftime("%H:%M:%S") print("时间:", t) time_one = now.strftime("%m/%d/%Y, %H:%M:%S") # mm/dd/YY H:M:S 格式 print("时间一:", time_one) time_two = now.strftime("%d/%m/%Y, %H:%M:%S") # dd/mm/YY H:M:S 格式 print("时间二:", time_two) ``` ```sh 时间: 01:05:01 时间一: 12/05/2019, 01:05:01 时间二: 05/12/2019, 01:05:01 ``` 以下是我们用来格式化时间的所有 _strftime_ 符号。这个模块的所有格式示例。 ![strftime](../images/strftime.png) ### 使用 *strptime* 将字符串转换为时间 这里有一个[文档](https://www.programiz.com/python-programming/datetime/strptimet),有助于理解格式。 ```py from datetime import datetime date_string = "5 December, 2019" print("date_string =", date_string) date_object = datetime.strptime(date_string, "%d %B, %Y") print("date_object =", date_object) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 ``` ### 从 *datetime* 使用 *date* ```py from datetime import date d = date(2020, 1, 1) print(d) print('当前日期:', d.today()) # 2019-12-05 # 今天的日期对象 today = date.today() print("当前年份:", today.year) # 2019 print("当前月份:", today.month) # 12 print("当前日:", today.day) # 5 ``` ### 使用Time对象表示时间 ```py from datetime import time # time(hour = 0, minute = 0, second = 0) a = time() print("a =", a) # time(hour, minute 和 second) b = time(10, 30, 50) print("b =", b) # time(hour, minute 和 second) c = time(hour=10, minute=30, second=50) print("c =", c) # time(hour, minute, second, microsecond) d = time(10, 30, 50, 200555) print("d =", d) ``` 输出: a = 00:00:00 b = 10:30:50 c = 10:30:50 d = 10:30:50.200555 ### 计算两个时间点之间的差异 ```py today = date(year=2019, month=12, day=5) new_year = date(year=2020, month=1, day=1) time_left_for_newyear = new_year - today # 距离新年的时间: 27 days, 0:00:00 print('距离新年的时间: ', time_left_for_newyear) t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0) t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) diff = t2 - t1 print('距离新年的时间:', diff) # 距离新年的时间: 26 days, 23: 01: 00 ``` ### 使用 *timedelta* 计算两个时间点之间的差异 ```py from datetime import timedelta t1 = timedelta(weeks=12, days=10, hours=4, seconds=20) t2 = timedelta(days=7, hours=5, minutes=3, seconds=30) t3 = t1 - t2 print("t3 =", t3) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 t3 = 86 days, 22:56:50 ``` 🌕 你太了不起了。你在通往卓越的道路上已经前进了16步。现在做一些练习锻炼你的大脑和肌肉。 ## 💻 练习 - 第16天 1. 从datetime模块获取当前的日、月、年、小时、分钟和时间戳 2. 使用此格式格式化当前日期:"%m/%d/%Y, %H:%M:%S" 3. 今天是2019年12月5日。将此时间字符串转换为时间。 4. 计算现在和新年之间的时间差。 5. 计算1970年1月1日和现在之间的时间差。 6. 思考,你可以将datetime模块用于什么?例如: - 时间序列分析 - 获取应用程序中任何活动的时间戳 - 在博客上添加帖子 🎉 恭喜!🎉 [<< 第 15 天](./15_python_type_errors_cn.md) | [第 17 天 >>](./17_exception_handling_cn.md) ================================================ FILE: Chinese/17_exception_handling_cn.md ================================================ # 30天Python编程挑战:第17天 - 异常处理 - [第17天](#-第17天) - [异常处理](#异常处理) - [Python中的打包和解包参数](#python中的打包和解包参数) - [解包](#解包) - [解包列表](#解包列表) - [解包字典](#解包字典) - [打包](#打包) - [打包列表](#打包列表) - [打包字典](#打包字典) - [Python中的展开](#python中的展开) - [枚举](#枚举) - [Zip](#zip) - [练习:第17天](#练习第17天) # 📘 第17天 ## 异常处理 Python使用 _try_ 和 _except_ 优雅地处理错误。优雅的退出(或优雅的错误处理)是一种简单的编程习惯 - 程序检测到严重的错误条件并"优雅地退出",即以受控的方式处理结果。通常,程序会在优雅退出时向终端或日志打印描述性错误消息,这使我们的应用程序更加健壮。异常的原因通常是程序本身之外的因素,例如错误的输入、错误的文件名、找不到文件、IO设备故障等。优雅的错误处理可以防止我们的应用程序崩溃。 我们在前一部分已经介绍了不同类型的Python _错误_。如果我们在程序中使用 _try_ 和 _except_,那么这些块中就不会引发错误。 ![Try and Except](../images/try_except.png) ```py try: # 如果一切正常,执行这个块中的代码 except: # 如果出错,执行这个块中的代码 ``` **示例:** ```py try: print(10 + '5') except: print('出现了一些错误') ``` 在上面的例子中,第二个操作数是一个字符串。我们可以将其更改为float或int,使其能够与数字相加。但如果不做任何更改,第二个块 _except_ 将被执行。 **示例:** ```py try: name = input('输入你的名字:') year_born = input('你出生的年份:') age = 2019 - year_born print(f'你是{name}. 你的年龄是{age}.') except: print('出现了一些错误') ``` ```sh 出现了一些错误 ``` 在上面的例子中,异常块将运行,但我们不知道具体的问题是什么。为了分析问题,我们可以使用不同的错误类型配合except。 在下面的例子中,它将处理错误,并且告诉我们引发了什么类型的错误。 ```py try: name = input('输入你的名字:') year_born = input('你出生的年份:') age = 2019 - year_born print(f'你是{name}. 你的年龄是{age}.') except TypeError: print('发生了类型错误') except ValueError: print('发生了值错误') except ZeroDivisionError: print('发生了除零错误') ``` ```sh 输入你的名字:Asabeneh 你出生的年份:1920 发生了类型错误 ``` 在上述代码中,输出将是 _TypeError_。 现在,让我们添加一个额外的块: ```py try: name = input('输入你的名字:') year_born = input('你出生的年份:') age = 2019 - int(year_born) print(f'你是{name}. 你的年龄是{age}.') except TypeError: print('发生了类型错误') except ValueError: print('发生了值错误') except ZeroDivisionError: print('发生了除零错误') else: print('我通常与try块一起运行') finally: print('我总是运行。') ``` ```sh 输入你的名字:Asabeneh 你出生的年份:1920 你是Asabeneh. 你的年龄是99. 我通常与try块一起运行 我总是运行。 ``` 也可以将上述代码简化如下: ```py try: name = input('输入你的名字:') year_born = input('你出生的年份:') age = 2019 - int(year_born) print(f'你是{name}. 你的年龄是{age}.') except Exception as e: print(e) ``` ## Python中的打包和解包参数 我们使用两个操作符: - \* 用于元组 - \*\* 用于字典 让我们看一个例子。假设函数只接受参数,但我们有一个列表。我们可以解包列表并将其转换为参数。 ### 解包 #### 解包列表 ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(lst)) # TypeError: sum_of_five_nums() missing 4 required positional arguments: 'b', 'c', 'd', and 'e' ``` 当我们运行这段代码时,会引发错误,因为这个函数接受数字(而不是列表)作为参数。让我们解包/解构这个列表。 ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(*lst)) # 15 ``` 我们也可以在内置的range函数中使用解包,该函数需要一个起始和结束参数。 ```py numbers = range(2, 7) # 正常调用,使用单独的参数 print(list(numbers)) # [2, 3, 4, 5, 6] args = [2, 7] numbers = range(*args) # 使用从列表解包的参数调用 print(numbers) # [2, 3, 4, 5,6] ``` 列表或元组也可以这样解包: ```py countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] fin, sw, nor, *rest = countries print(fin, sw, nor, rest) # Finland Sweden Norway ['Denmark', 'Iceland'] numbers = [1, 2, 3, 4, 5, 6, 7] one, *middle, last = numbers print(one, middle, last) # 1 [2, 3, 4, 5, 6] 7 ``` #### 解包字典 ```py def unpacking_person_info(name, country, city, age): return f'{name}住在{country}的{city}。他{age}岁。' dct = {'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'age':250} print(unpacking_person_info(**dct)) # Asabeneh住在Finland的Helsinki。他250岁。 ``` ### 打包 有时候我们不知道需要向Python函数传递多少个参数。我们可以使用打包方法让我们的函数接受无限数量或任意数量的参数。 ### 打包列表 ```py def sum_all(*args): s = 0 for i in args: s += i return s print(sum_all(1, 2, 3)) # 6 print(sum_all(1, 2, 3, 4, 5, 6, 7)) # 28 ``` #### 打包字典 ```py def packing_person_info(**kwargs): # 检查kwargs的类型,它是一个字典类型 # print(type(kwargs)) # 打印字典项 for key in kwargs: print(f"{key} = {kwargs[key]}") return kwargs print(packing_person_info(name="Asabeneh", country="Finland", city="Helsinki", age=250)) ``` ```sh name = Asabeneh country = Finland city = Helsinki age = 250 {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ## Python中的展开 与JavaScript类似,Python中也可以进行展开操作。让我们通过下面的例子来看看: ```py lst_one = [1, 2, 3] lst_two = [4, 5, 6, 7] lst = [0, *lst_one, *lst_two] print(lst) # [0, 1, 2, 3, 4, 5, 6, 7] ``` ## 枚举 如果我们对列表的索引感兴趣,我们使用enumerate内置函数。 ```py for index, item in enumerate([20, 30, 40]): print(index, item) ``` ```py for index, i in enumerate(countries): print('hi') if i == 'Finland': print('国家 {i} 位于索引 {index}') ``` ```sh 0 20 1 30 2 40 ``` ## Zip 有时,我们可能需要将列表组合起来。看看以下示例: ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'lime'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits_and_veges = [] for f, v in zip(fruits, vegetables): fruits_and_veges.append({'fruit':f, 'veg':v}) print(fruits_and_veges) ``` ```sh [{'fruit': 'banana', 'veg': 'Tomato'}, {'fruit': 'orange', 'veg': 'Potato'}, {'fruit': 'mango', 'veg': 'Cabbage'}, {'fruit': 'lemon', 'veg': 'Onion'}, {'fruit': 'lime', 'veg': 'Carrot'}] ``` ## 练习:第17天 1. 为名为 _countries_data.py_ 的文件中的数据创建一个名为 _countries.py_ 的函数。 - 创建一个函数,找出十大使用的语言 - 创建一个函数,找出十大人口最多的国家 🎉 恭喜!🎉 [<< 第 16 天](./16_python_datetime_cn.md) | [第 18 天 >>](./18_regular_expressions_cn.md) ================================================ FILE: Chinese/18_regular_expressions_cn.md ================================================ # 30天Python编程挑战:第18天 - 正则表达式 - [第18天](#-第18天) - [正则表达式](#正则表达式) - [*re* 模块](#re-模块) - [*re* 模块中的方法](#re-模块中的方法) - [匹配](#匹配) - [搜索](#搜索) - [使用 *findall* 搜索所有匹配项](#使用-findall-搜索所有匹配项) - [替换子字符串](#替换子字符串) - [使用RegEx拆分文本](#使用regex拆分文本) - [编写RegEx模式](#编写regex模式) - [方括号](#方括号) - [RegEx中的转义字符(\\)](#regex中的转义字符) - [一次或多次(+)](#一次或多次) - [句点(.)](#句点) - [零次或多次(*)](#零次或多次) - [零次或一次(?)](#零次或一次) - [RegEx中的量词](#regex中的量词) - [脱字符(^)](#脱字符) - [💻 练习:第18天](#-练习第18天) - [练习:级别1](#练习级别1) - [练习:级别2](#练习级别2) - [练习:级别3](#练习级别3) # 📘 第18天 ## 正则表达式 正则表达式(RegEx)是一种特殊的文本字符串,有助于在数据中查找模式。RegEx可用于检查不同数据类型中是否存在某种模式。要在Python中使用RegEx,首先我们应该导入RegEx模块,该模块被称为*re*。 ### *re* 模块 导入模块后,我们可以使用它来检测或查找模式。 ```py import re ``` ### *re* 模块中的方法 要查找模式,我们使用不同的*re*字符集,这些字符集允许在字符串中搜索匹配项。 - *re.match()*:只在字符串的第一行开头搜索,如果找到则返回匹配的对象,否则返回None。 - *re.search*:如果字符串中的任何地方(包括多行字符串)有匹配项,则返回匹配对象。 - *re.findall*:返回包含所有匹配项的列表。 - *re.split*:接受一个字符串,在匹配点处分割,返回一个列表。 - *re.sub*:替换字符串中的一个或多个匹配项。 #### 匹配 ```py # 语法 re.match(substring, string, re.I) # substring是一个字符串或模式,string是我们查找模式的文本,re.I是忽略大小写 ``` ```py import re txt = 'I love to teach python and javaScript' # 它返回一个带有span和match的对象 match = re.match('I love to teach', txt, re.I) print(match) # # 我们可以使用span获取匹配的起始和结束位置,作为元组 span = match.span() print(span) # (0, 15) # 让我们从span中找到起始和结束位置 start, end = span print(start, end) # 0, 15 substring = txt[start:end] print(substring) # I love to teach ``` 从上面的例子可以看出,我们正在寻找的模式(或我们正在寻找的子字符串)是*I love to teach*。match函数**只有**在文本以该模式开头时才会返回一个对象。 ```py import re txt = 'I love to teach python and javaScript' match = re.match('I like to teach', txt, re.I) print(match) # None ``` 该字符串不以*I like to teach*开头,因此没有匹配,match方法返回None。 #### 搜索 ```py # 语法 re.match(substring, string, re.I) # substring是一个模式,string是我们查找模式的文本,re.I是忽略大小写标志 ``` ```py import re txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # 它返回一个带有span和match的对象 match = re.search('first', txt, re.I) print(match) # # 我们可以使用span获取匹配的起始和结束位置,作为元组 span = match.span() print(span) # (100, 105) # 让我们从span中找到起始和结束位置 start, end = span print(start, end) # 100 105 substring = txt[start:end] print(substring) # first ``` 如你所见,search比match好得多,因为它可以在整个文本中查找模式。Search返回找到的第一个匹配项的匹配对象,否则返回*None*。更好的*re*函数是*findall*。此函数检查整个字符串中的模式,并将所有匹配项作为列表返回。 #### 使用 *findall* 搜索所有匹配项 *findall()* 将所有匹配项作为列表返回 ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # 它返回一个列表 matches = re.findall('language', txt, re.I) print(matches) # ['language', 'language'] ``` 如你所见,单词*language*在字符串中被找到了两次。让我们再练习一些。 现在我们将在字符串中查找Python和python这两个单词: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # 它返回一个列表 matches = re.findall('python', txt, re.I) print(matches) # ['Python', 'python'] ``` 由于我们使用*re.I*,所以包含了大小写字母。如果我们没有re.I标志,那么我们将不得不以不同的方式编写我们的模式。让我们来看看: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' matches = re.findall('Python|python', txt) print(matches) # ['Python', 'python'] # matches = re.findall('[Pp]ython', txt) print(matches) # ['Python', 'python'] ``` #### 替换子字符串 ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' match_replaced = re.sub('Python|python', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created. # 或者 match_replaced = re.sub('[Pp]ython', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created. ``` 让我们再添加一个例子。除非我们删除%符号,否则以下字符串真的很难阅读。用空字符串替换%将清理文本。 ```py txt = '''%I a%m te%%a%%che%r% a%n%d %% I l%o%ve te%ach%ing. T%he%re i%s n%o%th%ing as r%ewarding a%s e%duc%at%i%ng a%n%d e%m%p%ow%er%ing p%e%o%ple. I fo%und te%a%ching m%ore i%n%t%er%%es%ting t%h%an any other %jobs. D%o%es thi%s m%ot%iv%a%te %y%o%u to b%e a t%e%a%cher?''' matches = re.sub('%', '', txt) print(matches) ``` ```sh I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher? ``` ## 使用RegEx拆分文本 ```py txt = '''I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher?''' print(re.split('\n', txt)) # 使用\n分割 - 行尾符号 ``` ```sh ['I am teacher and I love teaching.', 'There is nothing as rewarding as educating and empowering people.', 'I found teaching more interesting than any other jobs.', 'Does this motivate you to be a teacher?'] ``` ## 编写RegEx模式 要声明字符串变量,我们使用单引号或双引号。要声明RegEx变量,使用*r''*。 以下模式仅识别小写的apple,要使其不区分大小写,我们应该重写模式或添加标志。 ```py import re regex_pattern = r'apple' txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['apple'] # 要使其不区分大小写,添加标志' matches = re.findall(regex_pattern, txt, re.I) print(matches) # ['Apple', 'apple'] # 或者我们可以使用一组字符方法 regex_pattern = r'[Aa]pple' # 这意味着第一个字母可以是Apple或apple matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` * []: 一组字符 - [a-c] 表示,a或b或c - [a-z] 表示,从a到z的任何字母 - [A-Z] 表示,从A到Z的任何字符 - [0-3] 表示,0或1或2或3 - [0-9] 表示从0到9的任何数字 - [A-Za-z0-9] 任何单个字符,即a到z,A到Z或0到9 ### 方括号 让我们使用方括号练习更多的模式。记得,我们使用*re.I*作为标志,使搜索不区分大小写。 ```py regex_pattern = r'[Aa]pple|[Bb]anana' # 这意味着Apple或apple或Banana或banana txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'banana', 'apple', 'banana'] ``` 使用方括号和管道。 ```py regex_pattern = r'[a-zA-Z0-9]' # 这个方括号表示 a 到 z, A 到 Z, 0 到 9 txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['A', 'p', 'p', 'l', 'e', 'a', 'n', 'd', 'b', 'a', 'n', 'a', 'n', 'a', 'a', 'r', 'e',...] regex_pattern = r'\d' # d 是一个特殊字符,表示数字 txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2', '0', '1', '9', '8', '2', '0', '2', '1'] regex_pattern = r'\d+' # d 是一个特殊字符,表示数字,+ 表示一个或多个 txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### RegEx中的转义字符(\\) ```py regex_pattern = r'\d+' # d 是一个特殊字符,表示数字,+ 表示一个或多个 txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` 要查找 \ 本身,我们应该使用双倍反斜杠: ```py regex_pattern = r'\\d' # 这意味着寻找 \d txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # [] ``` 当我们在字符串中没有任何与 \d 匹配的内容时,找不到任何匹配项。 ### 一次或多次(+) ```py regex_pattern = r'\d+' # d 是一个特殊字符,表示数字,+ 表示一个或多个 txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### 句点(.) ```py regex_pattern = r'[a].' # 这个方括号表示 a 和 . 表示任何字符,除了新行 txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['an', 'an', 'an', 'a ', 'ar'] regex_pattern = r'[a].+' # . 任何字符,+ 任何字符一次或多次 matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### 零次或多次(*) 零次或多次。这个例子不太明显,所以请慢慢看。 ```py regex_pattern = r'[a].*' # . 任何字符,* 任何字符零次或多次 txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### 零次或一次(?) 零次或一次。它可以存在,也可以不存在。 ```py txt = '''I am not sure if there is a convention how to write the word e-mail. Some people write it as email others may write it as Email or E-mail.''' regex_pattern = r'[Ee]-?mail' # ? 表示零次或一次 matches = re.findall(regex_pattern, txt) print(matches) # ['e-mail', 'email', 'Email', 'E-mail'] ``` ### RegEx中的量词 使用大括号,我们可以指定模式的长度 ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{4}' # 正好有四位数的数字 matches = re.findall(regex_pattern, txt) print(matches) # ['2019', '2021'] txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{1,4}' # 1到4位数的数字 matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### 脱字符(^) - 以什么开始 ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'^This' # ^ 表示以 This 开始 matches = re.findall(regex_pattern, txt) print(matches) # ['This'] ``` - 否定 ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'[^A-Za-z ]+' # ^ 在方括号内表示否定,不是A-Z,不是a-z,不是空格 matches = re.findall(regex_pattern, txt) print(matches) # ['6,', '2019', '8,', '2021'] ``` ## 💻 练习:第18天 ### 练习:级别1 1. 什么是正则表达式? 2. 正则表达式的变量是什么? 3. 重新创建字符串模式,这些模式可以: a) 查找对带有*才能*的字符串的引用,在一本书中 b) 找出日期格式为 _DD-MM-YYYY_,例如12-01-2021 c) 找出文本中动词的时态为ing ### 练习:级别2 1. 编写一个模式,用于识别表示有效Python变量名的字符串 2. 从以下文本中清除HTML标签。 ```python text = ''' HTML Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets. Tags such as and directly introduce content into the page. Other tags such as

surround and provide information about document text and may include other tags as sub-elements. Browsers do not display the HTML tags, but use them to interpret the content of the page. HTML can embed programs written in a scripting language such as JavaScript, which affects the behavior and content of web pages. Inclusion of CSS defines the look and layout of content. The World Wide Web Consortium (W3C), former maintainer of the HTML and current maintainer of the CSS standards, has encouraged the use of CSS over explicit presentational HTML since 1997. ''' ``` ### 练习:级别3 1. 清理以下文本。在清理过程后,计算最常见的三个单词是什么。 ```python paragraph = '''I love teaching. If you do not love teaching what else can you love. I love Python if you do not love something which can give you all the capabilities to develop an application what else can you love.''' ``` 2. 下面的文本包含了几个电子邮件地址。编写一个可以查找或提取电子邮件地址的模式。 ```py email_address = ''' asabeneh@gmail.com alex@yahoo.com kofi@yahoo.com doe@arc.gov asabeneh.com asabeneh@gmail alex@yahoo ''' ``` 🎉 恭喜!🎉 [<< 第 17 天](./17_exception_handling_cn.md) | [第 19 天 >>](./19_file_handling_cn.md) ================================================ FILE: Chinese/19_file_handling_cn.md ================================================ # 30天Python编程挑战:第19天 - 文件处理 - [第19天](#-第19天) - [文件处理](#文件处理) - [打开文件进行读取](#打开文件进行读取) - [打开文件进行写入和更新](#打开文件进行写入和更新) - [删除文件](#删除文件) - [文件类型](#文件类型) - [带有txt扩展名的文件](#带有txt扩展名的文件) - [带有json扩展名的文件](#带有json扩展名的文件) - [将JSON转换为字典](#将json转换为字典) - [将字典转换为JSON](#将字典转换为json) - [保存为JSON文件](#保存为json文件) - [带有csv扩展名的文件](#带有csv扩展名的文件) - [带有xlsx扩展名的文件](#带有xlsx扩展名的文件) - [带有xml扩展名的文件](#带有xml扩展名的文件) - [💻 练习:第19天](#-练习第19天) - [练习:级别1](#练习级别1) - [练习:级别2](#练习级别2) - [练习:级别3](#练习级别3) # 📘 第19天 ## 文件处理 到目前为止,我们已经了解了不同的Python数据类型。我们通常在不同的文件格式中存储数据。除了处理文件外,在本节中我们还将看到不同的文件格式(.txt、.json、.xml、.csv、.tsv、.excel)。首先,让我们熟悉使用常见文件格式(.txt)处理文件。 文件处理是编程的重要部分,它允许我们创建、读取、更新和删除文件。在Python中,处理数据我们使用内置函数 _open()_。 ```py # 语法 open('filename', mode) # mode(r, a, w, x, t, b) 可以是读取、写入、更新 ``` - "r" - 读取 - 默认值。打开文件进行读取,如果文件不存在则返回错误 - "a" - 追加 - 打开文件进行追加,如果文件不存在则创建文件 - "w" - 写入 - 打开文件进行写入,如果文件不存在则创建文件 - "x" - 创建 - 创建指定的文件,如果文件已存在则返回错误 - "t" - 文本 - 默认值。文本模式 - "b" - 二进制 - 二进制模式(例如图像) ### 打开文件进行读取 _open_ 的默认模式是读取,因此我们不必指定'r'或'rt'。我已经在files目录中创建并保存了一个名为reading_file_example.txt的文件。让我们看看它是如何完成的: ```py f = open('./files/reading_file_example.txt') print(f) # <_io.TextIOWrapper name='./files/reading_file_example.txt' mode='r' encoding='UTF-8'> ``` 如上例所示,我打印了打开的文件,它提供了一些关于文件的信息。已打开的文件有不同的读取方法:_read()_、_readline_、_readlines_。打开的文件必须用 _close()_ 方法关闭。 - _read()_:将整个文本作为字符串读取。如果我们想限制想要读取的字符数,可以通过向 *read(number)* 方法传递int值来限制。 ```py f = open('./files/reading_file_example.txt') txt = f.read() print(type(txt)) print(txt) f.close() ``` ```sh # 输出 This is an example to show how to open a file and read. This is the second line of the text. ``` 与其打印所有文本,不如打印文本文件的前10个字符。 ```py f = open('./files/reading_file_example.txt') txt = f.read(10) print(type(txt)) print(txt) f.close() ``` ```sh # 输出 This is an ``` - _readline()_:只读取第一行 ```py f = open('./files/reading_file_example.txt') line = f.readline() print(type(line)) print(line) f.close() ``` ```sh # 输出 This is an example to show how to open a file and read. ``` - _readlines()_:逐行读取所有文本,并返回一个行列表 ```py f = open('./files/reading_file_example.txt') lines = f.readlines() print(type(lines)) print(lines) f.close() ``` ```sh # 输出 ['This is an example to show how to open a file and read.\n', 'This is the second line of the text.'] ``` 获取所有行作为列表的另一种方法是使用 _splitlines()_: ```py f = open('./files/reading_file_example.txt') lines = f.read().splitlines() print(type(lines)) print(lines) f.close() ``` ```sh # 输出 ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` 在打开文件后,我们应该关闭它。我们很容易忘记关闭它们。有一种使用 _with_ 打开文件的新方法——它会自动关闭文件。让我们用 _with_ 方法重写前面的例子: ```py with open('./files/reading_file_example.txt') as f: lines = f.read().splitlines() print(type(lines)) print(lines) ``` ```sh # 输出 ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` ### 打开文件进行写入和更新 要写入现有文件,我们必须向 _open()_ 函数添加模式作为参数: - "a" - 追加 - 将在文件末尾追加,如果文件不存在则创建一个新文件。 - "w" - 写入 - 将覆盖任何现有内容,如果文件不存在则创建。 让我们在我们一直在读取的文件中追加一些文本: ```py with open('./files/reading_file_example.txt','a') as f: f.write('此文本必须附加在末尾') ``` 如果文件不存在,以下方法将创建一个新文件: ```py with open('./files/writing_file_example.txt','w') as f: f.write('这段文本将被写入新创建的文件中') ``` ### 删除文件 我们在前面的部分中已经看到,如何使用 _os_ 模块创建和删除目录。现在,如果我们想删除一个文件,我们也使用 _os_ 模块。 ```py import os os.remove('./files/example.txt') ``` 如果文件不存在,remove方法将引发错误,因此最好使用条件语句: ```py import os if os.path.exists('./files/example.txt'): os.remove('./files/example.txt') else: print('文件不存在') ``` ## 文件类型 ### 带有txt扩展名的文件 带有 _txt_ 扩展名的文件是一种非常常见的数据形式,我们已经在前面的部分中介绍了它。让我们转到JSON文件。 ### 带有json扩展名的文件 JSON代表JavaScript对象表示法。实际上,它是一个字符串化的JavaScript对象或Python字典。 _示例:_ ```py # 字典 person_dct= { "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScript", "React","Python"] } # JSON: 字典的字符串形式 person_json = "{'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']}" # 我们使用三个引号并使其多行以使其更具可读性 person_json = '''{ "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScript", "React","Python"] }''' ``` ### 将JSON转换为字典 要将JSON更改为字典,首先我们导入json模块,然后使用 _loads_ 方法。 ```py import json # JSON person_json = '''{ "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] }''' # 将JSON字符串更改为字典 person_dct = json.loads(person_json) print(type(person_dct)) print(person_dct) print(person_dct['name']) ``` ```sh # 输出 {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']} Asabeneh ``` ### 将字典转换为JSON 要将字典更改为JSON,我们使用 _dumps_ 方法。 ```py import json # python字典 person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] } # 将字典转换为JSON字符串 person_json = json.dumps(person, indent=4) # indent可以是2, 4, 8. 它漂亮地打印了。 print(type(person_json)) print(person_json) ``` ```sh # 输出 { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": [ "JavaScript", "React", "Python" ] } ``` ### 保存为JSON文件 我们也可以将我们的数据保存为JSON文件。让我们使用前面的示例保存: ```py import json # python字典 person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` 在上面的代码中,我们使用了编码和确保_ascii参数。这些参数是为了保存非ASCII字符,如果我们想保存非英语字符。下面是一个包含非ASCII字符的示例: ```py import json # python字典 person = { "name": "张三", "country": "中国", "city": "北京", "skills": ["JavaScript", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` 现在,让我们读取我们刚刚创建的json文件: ```py import json with open('./files/json_example.json', 'r', encoding='utf-8') as f: person = json.load(f) print(person) ``` ```sh # 输出 {'name': '张三', 'country': '中国', 'city': '北京', 'skills': ['JavaScript', 'React', 'Python']} ``` ### 带有csv扩展名的文件 CSV代表逗号分隔值。CSV是一种简单的文件格式,用于存储表格数据,如电子表格或数据库。CSV是数据科学中非常常见的数据格式。 **示例:** ```csv "name","country","city","skills" "Asabeneh","Finland","Helsinki","JavaScript" ``` **示例:** ```py import csv with open('./files/csv_example.csv') as f: csv_reader = csv.reader(f, delimiter=',') # w+ 创建文件(如果不存在) line_count = 0 for row in csv_reader: if line_count == 0: print(f'列名为: {", ".join(row)}') line_count += 1 else: print(f'{row[0]}来自{row[1]}的{row[2]}。 他了解{row[3]}') line_count += 1 print(f'已处理{line_count}行。') ``` ```sh # 输出: 列名为: name, country, city, skills Asabeneh来自Finland的Helsinki。 他了解JavaScript 已处理2行。 ``` 我们还可以使用相同的方法将数据写入csv文件 ```py import csv with open('./files/csv_example.csv', 'w', encoding='UTF8', newline='') as f: writer = csv.writer(f) # 写入列名 writer.writerow(['name', 'country', 'city', 'skills']) # 写入数据 writer.writerow(['Asabeneh', 'Finland', 'Helsinki', 'JavaScript']) ``` ### 带有xlsx扩展名的文件 要读取Excel文件,我们需要安装xlrd包。我们将使用它来读取Excel文件。 ```py import xlrd excel_book = xlrd.open_workbook('sample.xls') print(excel_book.nsheets) print(excel_book.sheet_names) ``` ### 带有xml扩展名的文件 XML是一种元标记语言,非常类似于HTML。在XML中,我们可以使用自己的标签,从而使其更加灵活。我们使用XML主要是为了结构化数据。在Python中有少量的XML库。在本部分中,我们将使用xml.etree.ElementTree模块。 **示例:XML** ```xml Asabeneh Finland Helsinki JavaScript React Python ``` 我们将使用xml.etree.ElementTree模块来解析XML文件。 ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Root tag:', root.tag) print('Attribute:', root.attrib) for child in root: print('字段: ', child.tag) ``` ```sh # 输出 Root tag: person Attribute: {'gender': 'female'} 字段: name 字段: country 字段: city 字段: skills ``` ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Root tag:', root.tag) print('Attribute:', root.attrib) for child in root: print('字段: ', child.tag) ``` ```sh # 输出 Root tag: person Attribute: {'gender': 'female'} 字段: name 字段: country 字段: city 字段: skills ``` 让我们获取更多细节: ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Root tag:', root.tag) print('Attribute:', root.attrib) for child in root: print('field: ', child.tag) if child.tag != 'skills': print(child.text) else: for skill in child: print(skill.text) ``` ```sh # 输出 Root tag: person Attribute: {'gender': 'female'} field: name Asabeneh field: country Finland field: city Helsinki field: skills JavaScript React Python ``` ## 💻 练习:第19天 ### 练习:级别1 1. 编写一个函数,该函数需要一个参数(文件名)并统计文件中单词的数量 2. 阅读obama_speech.txt文件并计算单词数 3. 阅读michelle_obama_speech.txt文件并计算单词数 4. 阅读donald_speech.txt文件并计算单词数 5. 阅读melina_trump_speech.txt文件并计算单词数 ### 练习:级别2 1. 从编程语言中提取所有Python目录文件: a) 处理30DaysOfPython文件夹,提取出所有python文件,并将它们的名称存储在files_list.txt文件中 b) 创建一个名为find_python.py的脚本,可以通过命令行运行它 c) 添加一个名为--version的标志来处理命令行参数 ### 练习:级别3 1. 使用以下数据集创建一个JSON文件: ```py python_libraries = [ { "库名称": "Django", "创建者": "Adrian Holovaty", "首次发布年份": 2005, "版本": "4.0.2", "用途": "Web开发", "描述": "Django让您可以快速构建更好的Web应用程序。" }, { "库名称": "Flask", "创建者": "Armin Ronacher", "首次发布年份": 2010, "版本": "2.0.2", "用途": "Web开发", "描述": "Flask是一个轻量级的WSGI Web应用程序框架。" }, { "库名称": "NumPy", "创建者": "Travis Oliphant", "首次发布年份": 2005, "版本": "1.22.0", "用途": "科学计算", "描述": "NumPy是Python中用于科学计算的基础包。" }, { "库名称": "Pandas", "创建者": "Wes McKinney", "首次发布年份": 2008, "版本": "1.4.0", "用途": "数据分析", "描述": "pandas是一个用于数据分析和数据操作的开源库。" }, { "库名称": "Matplotlib", "创建者": "John D. Hunter", "首次发布年份": 2003, "版本": "3.5.1", "用途": "数据可视化", "描述": "Matplotlib是一个用于在Python中创建静态、动画和交互式可视化的库。" } ] ``` 🎉 恭喜!🎉 [<< 第 18 天](./18_regular_expressions_cn.md) | [第 20 天 >>](./20_python_package_manager_cn.md) ================================================ FILE: Chinese/20_python_package_manager_cn.md ================================================ # 30天Python编程挑战:第20天 - PIP - [第20天](#-第20天) - [Python PIP - Python包管理器](#python-pip---python包管理器) - [什么是PIP?](#什么是pip) - [安装PIP](#安装pip) - [使用pip安装包](#使用pip安装包) - [卸载包](#卸载包) - [包列表](#包列表) - [显示包信息](#显示包信息) - [PIP Freeze](#pip-freeze) - [从URL读取数据](#从url读取数据) - [创建包](#创建包) - [关于包的更多信息](#关于包的更多信息) - [练习:第20天](#练习第20天) # 📘 第20天 ## Python PIP - Python包管理器 ### 什么是PIP? PIP代表首选安装程序(Preferred installer program)。我们使用_pip_来安装不同的Python包。 包是一个Python模块,可以包含一个或多个模块或其他包。我们可以安装到应用程序中的模块或模块集合就是一个包。 在编程中,我们不必编写每个实用程序,而是安装包并将它们导入到我们的应用程序中。 ### 安装PIP 如果你还没有安装pip,让我们现在安装它。转到你的终端或命令提示符,复制并粘贴: ```sh asabeneh@Asabeneh:~$ pip install pip ``` 通过以下命令检查pip是否已安装: ```sh pip --version ``` ```py asabeneh@Asabeneh:~$ pip --version pip 21.1.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.9.6) ``` 如你所见,我正在使用pip 21.1.3版本,如果你看到的数字比这个稍低或稍高,说明你已经安装了pip。 让我们了解一下Python社区中用于不同目的的一些包。请注意,有很多可用于不同应用程序的包。 ### 使用pip安装包 让我们尝试安装_numpy_,即数值Python。它是机器学习和数据科学社区中最流行的包之一。 - NumPy是Python科学计算的基础包。它包含以下内容: - 强大的N维数组对象 - 复杂的(广播)函数 - 用于集成C/C++和Fortran代码的工具 - 有用的线性代数、傅里叶变换和随机数功能 ```sh asabeneh@Asabeneh:~$ pip install numpy ``` 让我们开始使用numpy。打开你的Python交互式shell,输入python,然后按如下方式导入numpy: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.version.version '1.20.1' >>> lst = [1, 2, 3,4, 5] >>> np_arr = numpy.array(lst) >>> np_arr array([1, 2, 3, 4, 5]) >>> len(np_arr) 5 >>> np_arr * 2 array([ 2, 4, 6, 8, 10]) >>> np_arr + 2 array([3, 4, 5, 6, 7]) >>> ``` Pandas是一个开源的、BSD许可的库,为Python编程语言提供高性能、易用的数据结构和数据分析工具。让我们安装numpy的"大兄弟"_pandas_: ```sh asabeneh@Asabeneh:~$ pip install pandas ``` ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pandas ``` 这一节不是关于numpy或pandas的,我们在这里尝试学习如何安装包以及如何导入它们。如果需要,我们将在其他章节讨论不同的包。 让我们导入一个Web浏览器模块,它可以帮助我们打开任何网站。我们不需要安装这个模块,它已经默认安装在Python 3中。例如,如果你想随时打开任意数量的网站,或者如果你想安排某些事情,可以使用这个_webbrowser_模块。 ```py import webbrowser # web浏览器模块用于打开网站 # 网址列表:Python url_lists = [ 'http://www.python.org', 'https://www.linkedin.com/in/asabeneh/', 'https://github.com/Asabeneh', 'https://twitter.com/Asabeneh', ] # 在不同的标签页中打开上面的网站列表 for url in url_lists: webbrowser.open_new_tab(url) ``` ### 卸载包 如果你不想保留已安装的包,可以使用以下命令删除它们。 ```sh pip uninstall packagename ``` ### 包列表 要查看我们机器上已安装的包,我们可以使用pip后跟list。 ```sh pip list ``` ### 显示包信息 要显示有关包的信息: ```sh pip show packagename ``` ```sh asabeneh@Asabeneh:~$ pip show pandas Name: pandas Version: 1.2.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: python-dateutil, pytz, numpy Required-by: ``` 如果我们想要更多的详细信息,只需添加--verbose ```sh asabeneh@Asabeneh:~$ pip show --verbose pandas Name: pandas Version: 1.2.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: numpy, pytz, python-dateutil Required-by: Metadata-Version: 2.1 Installer: pip Classifiers: Development Status :: 5 - Production/Stable Environment :: Console Operating System :: OS Independent Intended Audience :: Science/Research Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Cython Topic :: Scientific/Engineering Entry-points: [pandas_plotting_backends] matplotlib = pandas:plotting._matplotlib ``` ### PIP Freeze 生成已安装的Python包及其版本,输出适合在requirements文件中使用。requirements.txt文件是一个包含Python项目中所有已安装的Python包的文件。 ```sh asabeneh@Asabeneh:~$ pip freeze docutils==0.11 Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 ``` pip freeze给我们列出了使用的、已安装的包及其版本。我们将它与requirements.txt文件一起用于部署。 ### 从URL读取数据 到目前为止,你已经熟悉了如何读取或写入位于本地机器上的文件。有时,我们想要使用url从网站或API读取数据。 API代表应用程序编程接口。它是一种在服务器之间交换结构化数据的方式,主要是json数据。要打开网络连接,我们需要一个名为_requests_的包——它允许打开网络连接并实现CRUD(创建、读取、更新和删除)操作。在本节中,我们将只涵盖CRUD的读取或获取部分。 让我们安装_requests_: ```py asabeneh@Asabeneh:~$ pip install requests ``` 我们将在_requests_模块中看到_get_、_status_code_、_headers_、_text_和_json_方法: - _get()_:打开网络并从url获取数据——它返回一个响应对象 - _status_code_:在我们获取数据后,我们可以检查操作的状态(成功、错误等) - _headers_:检查头部类型 - _text_:从获取的响应对象中提取文本 - _json_:提取json数据 让我们从这个网站读取一个txt文件,https://www.w3.org/TR/PNG/iso_8859-1.txt。 ```py import requests # 导入请求模块 url = 'https://www.w3.org/TR/PNG/iso_8859-1.txt' # 来自网站的文本 response = requests.get(url) # 打开网络并获取数据 print(response) print(response.status_code) # 状态码,成功时为200 print(response.headers) # 获取响应的头部信息 print(response.text) # 获取文本数据 ``` 让我们读取一个API并得到一个json数据: ```py import requests url = 'https://restcountries.eu/rest/v2/all' # 包含关于250多个国家的信息的国家API response = requests.get(url) # 打开网络并获取数据 print(response) # 响应对象 print(response.status_code) # 状态码,成功时为200 countries = response.json() print(countries[:1]) # 我们只打印第一个国家信息,原始数据太大 ``` 我们用一个国家API示例获取了json数据。我们可以导入json模块,并使用json.loads(response.text)方法将文本转换为json格式。然而,我们也可以直接使用response.json()方法。 Let us see another example similar to the above but with a different API, world_bank_ethiopia data: 让我们看另一个类似于上面的例子,但使用不同的API,世界银行埃塞俄比亚数据: ```py import requests from pprint import pp # 导入pretty print,以美观地显示 url = 'http://api.worldbank.org/countries/et?format=json' # 埃塞俄比亚经济数据API response = requests.get(url) # 打开网络并获取数据 print(response) # 响应对象 print(response.status_code) # 状态码,成功时为200 # 让我们改变响应的JSON格式 ethiopia_data = response.json() pp(ethiopia_data) # 用pretty print打印数据 ``` ### 创建包 我们可以创建自己的包,上传到Python包管理器仓库,并从那里下载它。让我们创建一个非常简单的包来演示。创建一个名为mypackage的目录,在该目录中创建一个名为__init__.py的空文件和以下文件: ```py # mypackage/arithmetics.py def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ``` ```py # mypackage/greet.py def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ``` __init__.py在python 3.3及更高版本中并非绝对必要,但对于兼容性,最好加上。 现在,让我们使用刚刚创建的包: ```py from mypackage import arithmetics print(arithmetics.add_numbers(1, 2, 3, 5)) print(arithmetics.subtract(5, 3)) print(arithmetics.multiple(5, 3)) print(arithmetics.division(5, 3)) print(arithmetics.remainder(5, 3)) print(arithmetics.power(5, 3)) from mypackage import greet print(greet.greet_person('张', '三')) ``` ### 关于包的更多信息 - Python有许多不同目的的内置包和模块,但有些不包含在内置包中,我们需要安装它们。 - 有多种方法可以安装包,但建议使用pip。 - 使用 pip:pip是Python、PyPI和virtualenv推荐的安装和管理Python包的工具。 - 如何列出已安装的包: - pip list:列出机器中安装的所有包。 - 使用requirements.txt进行开发环境和生产环境: - 要生成已安装包的列表:pip freeze来本地生成已安装包的列表,以便用于开发环境和生产环境需求。 - 如何卸载包: - 要卸载,请使用pip:pip uninstall packagename。 - 另一种方法:pip uninstall -r requirements.txt卸载在requirements.txt中列出的所有包。 - 使用virtualenv: - virtualenv是一个工具,用于创建隔离的Python环境。它创建一个在自己的目录树中包含所有必要的可执行文件,以使用指定版本的Python运行Python项目所需的包。 - 原始的virtualenv工具可以通过 - pip install virtualenv - 来安装。 ## 练习:第20天 1. 阅读关于虚拟环境的更多信息,尝试创建虚拟环境并安装至少一个包 2. 使用一个国家API,获取所有国家信息,并找出前十个人口最多的国家 3. 从国家API数据中找出官方语言是英语(eng)的所有国家 4. 从国家API数据中获取数据,根据国家的面积找出前十个最大的国家 5. 从国家API数据中找出所有从新列出的国家,按他们的首都排序 🎉 恭喜!🎉 [<< 第 19 天](./19_file_handling_cn.md) | [第 21 天 >>](./21_classes_and_objects_cn.md) ================================================ FILE: Chinese/21_classes_and_objects_cn.md ================================================ # 30天Python编程挑战:第21天 - 类和对象 - [第21天](#-第21天) - [类和对象](#类和对象) - [创建类](#创建类) - [创建对象](#创建对象) - [类构造函数](#类构造函数) - [对象方法](#对象方法) - [对象默认方法](#对象默认方法) - [修改类默认值的方法](#修改类默认值的方法) - [继承](#继承) - [覆盖父类方法](#覆盖父类方法) - [💻 练习:第21天](#-练习第21天) - [练习:级别1](#练习级别1) - [练习:级别2](#练习级别2) - [练习:级别3](#练习级别3) # 📘 第21天 ## 类和对象 Python是一种面向对象的编程语言。在Python中,一切都是对象,都有其属性和方法。在程序中使用的数字、字符串、列表、字典、元组、集合等都是相应内置类的对象。我们创建类来创建对象。类就像一个对象构造器,或者说是创建对象的"蓝图"。我们实例化一个类来创建一个对象。类定义了对象的属性和行为,而对象则代表了类。 从这个挑战的开始,我们就一直在不知不觉地使用类和对象。Python程序中的每个元素都是某个类的对象。 让我们检查一下Python中的一切是否都是类: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> num = 10 >>> type(num) >>> string = 'string' >>> type(string) >>> boolean = True >>> type(boolean) >>> lst = [] >>> type(lst) >>> tpl = () >>> type(tpl) >>> set1 = set() >>> type(set1) >>> dct = {} >>> type(dct) ``` ### 创建类 要创建一个类,我们需要关键字**class**,后跟类名和冒号。类名应该使用**驼峰命名法(CamelCase)**。 ```sh # 语法 class 类名: 代码放在这里 ``` **示例:** ```py class Person: pass print(Person) ``` ```sh <__main__.Person object at 0x10804e510> ``` ### 创建对象 我们可以通过调用类来创建对象。 ```py p = Person() print(p) ``` ### 类构造函数 在上面的例子中,我们已经从Person类创建了一个对象。然而,没有构造函数的类在实际应用中并不真正有用。让我们使用构造函数使我们的类更有用。与Java或JavaScript中的构造函数一样,Python也有一个内置的**__init__**()构造函数。**__init__**构造函数有一个self参数,它是当前类实例的引用。 **示例:** ```py class Person: def __init__ (self, name): # self允许将参数附加到类 self.name = name p = Person('Asabeneh') print(p.name) print(p) ``` ```sh # 输出 Asabeneh <__main__.Person object at 0x2abf46907e80> ``` 让我们向构造函数添加更多参数。 ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.firstname) print(p.lastname) print(p.age) print(p.country) print(p.city) ``` ```sh # 输出 Asabeneh Yetayeh 250 Finland Helsinki ``` ### 对象方法 对象可以有方法。方法是属于对象的函数。 **示例:** ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname}今年{self.age}岁。他住在{self.country}的{self.city}。' p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.person_info()) ``` ```sh # 输出 Asabeneh Yetayeh今年250岁。他住在Finland的Helsinki。 ``` ### 对象默认方法 有时,你可能希望为对象方法提供默认值。如果我们为构造函数中的参数提供默认值,可以避免在不带参数调用或实例化类时出现错误。让我们看看这是什么样子: **示例:** ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname}今年{self.age}岁。他住在{self.country}的{self.city}。' p1 = Person() print(p1.person_info()) p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) ``` ```sh # 输出 Asabeneh Yetayeh今年250岁。他住在Finland的Helsinki。 John Doe今年30岁。他住在Nomanland的Noman city。 ``` ### 修改类默认值的方法 在下面的例子中,person类的所有构造函数参数都有默认值。此外,我们还有一个skills参数,可以通过方法访问。让我们创建一个add_skill方法,向skills列表添加技能。 ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city self.skills = [] def person_info(self): return f'{self.firstname} {self.lastname}今年{self.age}岁。他住在{self.country}的{self.city}。' def add_skill(self, skill): self.skills.append(skill) p1 = Person() print(p1.person_info()) p1.add_skill('HTML') p1.add_skill('CSS') p1.add_skill('JavaScript') p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) print(p1.skills) print(p2.skills) ``` ```sh # 输出 Asabeneh Yetayeh今年250岁。他住在Finland的Helsinki。 John Doe今年30岁。他住在Nomanland的Noman city。 ['HTML', 'CSS', 'JavaScript'] [] ``` ### 继承 继承允许我们定义一个继承父类所有功能的类。它使代码可重用。 ```py # 语法 class 子类名(父类名): 代码放在这里 ``` 让我们通过实际例子来看看继承的含义: ```py class Student(Person): pass s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh # 输出 Eyob Yetayeh今年30岁。他住在Finland的Helsinki。 ['JavaScript', 'React', 'Python'] Lidiya Teklemariam今年28岁。他住在Finland的Espoo。 ['Organizing', 'Marketing', 'Digital Marketing'] ``` 我们没有在Student类中调用任何方法,但我们能够访问来自Parent类的所有方法。Student类继承了Person类的__init__构造函数和person_info方法。如果我们想要向子类添加一个特定于子类的新方法,我们必须编写子类并在子类中创建新的方法。 ```py class Student(Person): def __init__ (self, firstname='Asabeneh', lastname='Yetayeh',age=250, country='Finland', city='Helsinki', gender='male'): self.gender = gender super().__init__(firstname, lastname,age, country, city) def person_info(self): gender = '他' if self.gender =='male' else '她' return f'{self.firstname} {self.lastname}今年{self.age}岁。{gender}住在{self.country}的{self.city}。' s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki','male') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo', 'female') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh # 输出 Eyob Yetayeh今年30岁。他住在Finland的Helsinki。 ['JavaScript', 'React', 'Python'] Lidiya Teklemariam今年28岁。她住在Finland的Espoo。 ['Organizing', 'Marketing', 'Digital Marketing'] ``` 我们可以使用super()函数或父类名Person来自动继承父类的方法和属性。在上面的例子中,我们覆盖了父类方法。子类的person_info方法有不同的实现,即使方法名称与父类相同。 ### 覆盖父类方法 如上所示,我们可以通过创建与父类方法名称相同的子类方法来覆盖父类方法。 ## 💻 练习:第21天 ### 练习:级别1 1. Python有一个名为_statistics_的模块,我们可以使用这个模块来计算统计数据。但是,让我们尝试开发一个可以计算均值、中位数、众数、标准差等统计数据的类。 ```py class Statistics: def __init__(self, data=[]): self.data = data def count(self): # 你自己的实现 pass def sum(self): # 你自己的实现 pass def min(self): # 你自己的实现 pass def max(self): # 你自己的实现 pass def range(self): # 你自己的实现 pass def mean(self): # 你自己的实现 pass def median(self): # 你自己的实现 pass def mode(self): # 你自己的实现 pass def standard_deviation(self): # 你自己的实现 pass def variance(self): # 你自己的实现 pass def frequency_distribution(self): # 你自己的实现 pass def describe(self): # 你自己的实现 pass ``` ```py # 测试代码 data = [31, 26, 34, 37, 27, 26, 32, 32, 26, 27, 27, 24, 32, 33, 27, 25, 26, 38, 37, 31, 34, 24, 33, 29, 26] statistics = Statistics(data) print('Count:', statistics.count()) # 25 print('Sum: ', statistics.sum()) # 730 print('Min: ', statistics.min()) # 24 print('Max: ', statistics.max()) # 38 print('Range: ', statistics.range()) # 14 print('Mean: ', statistics.mean()) # 29.2 print('Median: ', statistics.median()) # 27 print('Mode: ', statistics.mode()) # {'mode': 26, 'count': 5} print('Standard Deviation: ', statistics.standard_deviation()) # 4.2 print('Variance: ', statistics.variance()) # 17.5 print('Frequency Distribution: ', statistics.frequency_distribution()) # [(24, 2), (25, 1), (26, 5), (27, 4), (29, 1), (31, 2), (32, 3), (33, 2), (34, 2), (37, 2), (38, 1)] ``` ### 练习:级别2 1. 创建一个名为PersonAccount的类。它有firstname、lastname、incomes、expenses属性和添加收入、添加支出以及账户余额方法。 ### 练习:级别3 1. 以下是使用函数的方法。让我们将其转换为类 ```python def print_products(*args, **kwargs): for product in args: print(product) print(kwargs) for key in kwargs: print(f"{key}: {kwargs[key]}") print_products("apple", "banana", "orange", vegetable="tomato", juice="orange") ``` ```sh apple banana orange {'vegetable': 'tomato', 'juice': 'orange'} vegetable: tomato juice: orange ``` 1. 在一个名为PersonAccount的类中,我们有属性:firstname、lastname、incomes、expenses。设计一个类,用于计算一个人的净收入。 🎉 恭喜!🎉 [<< 第 20 天](./20_python_package_manager_cn.md) | [第 22 天 >>](./22_web_scraping_cn.md) ================================================ FILE: Chinese/22_web_scraping_cn.md ================================================ # 30天Python编程挑战:第22天 - 网页抓取 - [第22天](#-第22天) - [Python网页抓取](#python网页抓取) - [什么是网页抓取](#什么是网页抓取) - [💻 练习:第22天](#-练习第22天) # 📘 第22天 ## Python网页抓取 ### 什么是网页抓取 互联网充满了大量的数据,这些数据可以用于不同的目的。要收集这些数据,我们需要知道如何从网站上抓取数据。 网页抓取是从网站提取和收集数据,并将其存储在本地机器或数据库中的过程。 在本节中,我们将使用beautifulsoup和requests包来抓取数据。我们使用的是beautifulsoup 4版本。 要开始抓取网站,你需要_requests_、_beautifoulSoup4_和一个_网站_。 ```sh pip install requests pip install beautifulsoup4 ``` 要从网站抓取数据,需要基本了解HTML标签和CSS选择器。我们使用HTML标签、类或/和ID来定位网站上的内容。 让我们导入requests和BeautifulSoup模块: ```py import requests from bs4 import BeautifulSoup ``` 让我们声明一个url变量,用于我们要抓取的网站。 ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' # 让我们使用requests的get方法从url获取数据 response = requests.get(url) # 检查状态 status = response.status_code print(status) # 200表示获取成功 ``` ```sh 200 ``` 使用beautifulSoup解析页面内容: ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' response = requests.get(url) content = response.content # 我们从网站获取所有内容 soup = BeautifulSoup(content, 'html.parser') # beautiful soup将给我们一个解析的机会 print(soup.title) # UCI Machine Learning Repository: Data Sets print(soup.title.get_text()) # UCI Machine Learning Repository: Data Sets print(soup.body) # 给出网站上的整个页面 print(response.status_code) tables = soup.find_all('table', {'cellpadding':'3'}) # 我们定位cellpadding属性值为3的表格 # 我们可以使用id、class或HTML标签进行选择,有关更多信息,请查看beautifulsoup文档 table = tables[0] # 结果是一个列表,我们从中提取数据 for td in table.find('tr').find_all('td'): print(td.text) ``` 如果你运行这段代码,你会发现提取工作只完成了一半。你可以继续完成它,因为这是练习1的一部分。 参考[beautifulsoup文档](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#quick-start)获取更多信息。 🌕 你非常特别,你每天都在进步。你只剩下八天就要达到伟大的境界了。现在做一些练习来锻炼你的大脑和肌肉。 ## 💻 练习:第22天 1. 抓取以下网站并将数据存储为json文件(url = 'http://www.bu.edu/president/boston-university-facts-stats/')。 2. 提取此url中的表格(https://archive.ics.uci.edu/ml/datasets.php)并将其更改为json文件。 3. 抓取总统表并将数据存储为json(https://en.wikipedia.org/wiki/List_of_presidents_of_the_United_States)。这个表格结构不是很规整,抓取可能需要很长时间。 🎉 恭喜!🎉 [<< 第 21 天](./21_classes_and_objects_cn.md) | [第 23 天 >>](./23_virtual_environment_cn.md) ================================================ FILE: Chinese/23_virtual_environment_cn.md ================================================ # 30天Python编程挑战:第23天 - 虚拟环境 - [第23天](#-第23天) - [设置虚拟环境](#设置虚拟环境) - [💻 练习:第23天](#-练习第23天) # 📘 第23天 ## 设置虚拟环境 开始项目时,最好有一个虚拟环境。虚拟环境可以帮助我们创建一个隔离或独立的环境。这将有助于避免不同项目之间的依赖冲突。如果你在终端上输入pip freeze,你将看到计算机上安装的所有包。如果我们使用virtualenv,我们将只能访问特定于该项目的包。打开你的终端并安装virtualenv: ```sh asabeneh@Asabeneh:~$ pip install virtualenv ``` 在30DaysOfPython文件夹内创建一个flask_project文件夹。 安装virtualenv包后,进入项目文件夹并通过以下命令创建虚拟环境: 对于Mac/Linux: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ virtualenv venv ``` 对于Windows: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project>python -m venv venv ``` 我喜欢将新项目称为venv,但你可以随意命名。让我们使用ls(或Windows命令提示符的dir)命令检查venv是否已创建。 ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ls venv/ ``` 让我们通过在项目文件夹中编写以下命令来激活虚拟环境。 对于Mac/Linux: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ source venv/bin/activate ``` Windows上虚拟环境的激活可能因Windows PowerShell和git bash而异。 对于Windows PowerShell: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project> venv\Scripts\activate ``` 对于Windows Git bash: ```sh C:\Users\User\Documents\30DaysOfPython\flask_project> venv\Scripts\. activate ``` 输入激活命令后,你的项目目录将以venv开头。请参见下面的示例。 ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ``` 现在,让我们通过输入pip freeze来检查这个项目中可用的包。你不会看到任何包。 我们将做一个小型flask项目,所以让我们为这个项目安装flask包。 ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip install Flask ``` 现在,让我们输入pip freeze查看项目中已安装的包列表: ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 ``` 完成后,你应该使用_deactivate_来关闭活动项目。 ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ deactivate ``` 使用flask所需的模块已经安装好了。现在,你的项目目录已经准备好用于flask项目。你应该将venv包含在.gitignore文件中,以避免将其推送到GitHub。 ## 💻 练习:第23天 1. 根据上面给出的示例创建一个带有虚拟环境的项目目录。 🎉 恭喜!🎉 [<< 第 22 天](./22_web_scraping_cn.md) | [第 24 天 >>](./24_statistics_cn.md) ================================================ FILE: Chinese/24_statistics_cn.md ================================================ # 30天Python编程挑战:第24天 - 统计 - [第24天](#-第24天) - [Python进行统计分析](#python进行统计分析) - [统计学](#统计学) - [数据](#数据) - [统计模块](#统计模块) - [NumPy](#numpy) - [导入NumPy](#导入numpy) - [使用NumPy创建数组](#使用numpy创建数组) - [创建整型NumPy数组](#创建整型numpy数组) - [创建浮点型NumPy数组](#创建浮点型numpy数组) - [创建布尔型NumPy数组](#创建布尔型numpy数组) - [使用NumPy创建多维数组](#使用numpy创建多维数组) - [将NumPy数组转换为列表](#将numpy数组转换为列表) - [从元组创建NumPy数组](#从元组创建numpy数组) - [NumPy数组的形状](#numpy数组的形状) - [NumPy数组的数据类型](#numpy数组的数据类型) - [NumPy数组的大小](#numpy数组的大小) - [使用NumPy进行数学运算](#使用numpy进行数学运算) - [加法](#加法) # 📘 第24天 ## Python进行统计分析 ## 统计学 统计学是研究数据的_收集_、_组织_、_显示_、_分析_、_解释_和_呈现_的学科。 统计学是数学的一个分支,建议作为数据科学和机器学习的先决条件。统计学是一个非常广泛的领域,但在本节中,我们将只关注最相关的部分。 完成这个挑战后,你可以进入Web开发、数据分析、机器学习和数据科学的道路。无论你选择哪条路,在你的职业生涯中的某个时刻,你都会得到可能需要处理的数据。拥有一些统计知识将帮助你基于数据做出决策,正如他们所说的_数据会告诉我们_。 ## 数据 什么是数据?数据是为某种目的收集和翻译的任何字符集,通常用于分析。它可以是任何字符,包括文本和数字、图片、声音或视频。如果数据没有放在上下文中,对人类或计算机来说都没有任何意义。为了从数据中获取意义,我们需要使用不同的工具来处理数据。 数据分析、数据科学或机器学习的工作流程都是从数据开始的。数据可以由某些数据源提供,也可以创建。有结构化和非结构化数据。 数据可以以小型或大型格式存在。我们将获得的大多数数据类型已在文件处理部分中介绍。 ## 统计模块 Python的_statistics_模块提供了用于计算数值数据的数学统计的函数。该模块并不打算与第三方库如NumPy、SciPy或面向专业统计学家的专有全功能统计软件包(如Minitab、SAS和Matlab)竞争。它的目标是达到图形和科学计算器的水平。 # NumPy 在第一部分中,我们将Python定义为一种优秀的通用编程语言,但在其他流行库(如numpy、scipy、matplotlib、pandas等)的帮助下,它成为了一个强大的科学计算环境。 NumPy是Python中科学计算的核心库。它提供了高性能的多维数组对象和用于处理这些数组的工具。 到目前为止,我们一直在使用vscode,但从现在开始,我建议使用Jupyter Notebook。要访问jupyter notebook,让我们安装[anaconda](https://www.anaconda.com/)。如果你使用anaconda,大多数常用的包都已包含在内,如果你已安装anaconda,就不需要再安装这些包。 ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ pip install numpy ``` ## 导入NumPy 如果你喜欢[jupyter notebook](https://github.com/Asabeneh/data-science-for-everyone/blob/master/numpy/numpy.ipynb),可以使用它 ```py # 如何导入numpy import numpy as np # 如何检查numpy包的版本 print('numpy:', np.__version__) # 检查可用的方法 print(dir(np)) ``` ## 使用NumPy创建数组 ### 创建整型NumPy数组 ```py # 创建Python列表 python_list = [1,2,3,4,5] # 检查数据类型 print('Type:', type (python_list)) # # print(python_list) # [1, 2, 3, 4, 5] two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] print(two_dimensional_list) # [[0, 1, 2], [3, 4, 5], [6, 7, 8]] # 从Python列表创建NumPy(数值Python)数组 numpy_array_from_list = np.array(python_list) print(type (numpy_array_from_list)) # print(numpy_array_from_list) # array([1, 2, 3, 4, 5]) ``` ### 创建浮点型NumPy数组 使用浮点数据类型参数从列表创建浮点NumPy数组 ```py # Python列表 python_list = [1,2,3,4,5] numpy_array_from_list2 = np.array(python_list, dtype=float) print(numpy_array_from_list2) # array([1., 2., 3., 4., 5.]) ``` ### 创建布尔型NumPy数组 从列表创建布尔NumPy数组 ```py numpy_bool_array = np.array([0, 1, -1, 0, 0], dtype=bool) print(numpy_bool_array) # array([False, True, True, False, False]) ``` ### 使用NumPy创建多维数组 一个NumPy数组可能有一个或多个行和列 ```py two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] numpy_two_dimensional_list = np.array(two_dimensional_list) print(type (numpy_two_dimensional_list)) print(numpy_two_dimensional_list) ``` ```sh [[0 1 2] [3 4 5] [6 7 8]] ``` ### 将NumPy数组转换为列表 ```python # 我们总是可以使用tolist()将数组转换回Python列表。 np_to_list = numpy_array_from_list.tolist() print(type (np_to_list)) print('一维数组:', np_to_list) print('二维数组: ', numpy_two_dimensional_list.tolist()) ``` ```sh 一维数组: [1, 2, 3, 4, 5] 二维数组: [[0, 1, 2], [3, 4, 5], [6, 7, 8]] ``` ### 从元组创建NumPy数组 ```py # 从元组创建NumPy数组 # 在Python中创建元组 python_tuple = (1,2,3,4,5) print(type (python_tuple)) # print('python_tuple: ', python_tuple) # python_tuple: (1, 2, 3, 4, 5) numpy_array_from_tuple = np.array(python_tuple) print(type (numpy_array_from_tuple)) # print('numpy_array_from_tuple: ', numpy_array_from_tuple) # numpy_array_from_tuple: [1 2 3 4 5] ``` ### NumPy数组的形状 shape方法以元组形式提供数组的形状。第一个是行,第二个是列。如果数组只是一维的,它返回数组的大小。 ```py nums = np.array([1, 2, 3, 4, 5]) print(nums) print('nums的形状: ', nums.shape) print(numpy_two_dimensional_list) print('numpy_two_dimensional_list的形状: ', numpy_two_dimensional_list.shape) three_by_four_array = np.array([[0, 1, 2, 3], [4,5,6,7], [8,9,10, 11]]) print(three_by_four_array.shape) ``` ```sh [1 2 3 4 5] nums的形状: (5,) [[0 1 2] [3 4 5] [6 7 8]] numpy_two_dimensional_list的形状: (3, 3) (3, 4) ``` ### NumPy数组的数据类型 数据类型的类型:str, int, float, complex, bool, list, None ```py int_lists = [-3, -2, -1, 0, 1, 2,3] int_array = np.array(int_lists) float_array = np.array(int_lists, dtype=float) print(int_array) print(int_array.dtype) print(float_array) print(float_array.dtype) ``` ```sh [-3 -2 -1 0 1 2 3] int64 [-3. -2. -1. 0. 1. 2. 3.] float64 ``` ### NumPy数组的大小 在NumPy中,要知道NumPy数组列表中的项目数,我们使用size ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) two_dimensional_list = np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) print('大小:', numpy_array_from_list.size) # 5 print('大小:', two_dimensional_list.size) # 9 ``` ```sh 大小: 5 大小: 9 ``` ## 使用NumPy进行数学运算 NumPy数组与Python列表不完全相同。要对Python列表进行数学运算,我们必须遍历项目,但NumPy可以不通过循环就进行任何数学运算。 数学运算: - 加法 (+) - 减法 (-) - 乘法 (*) - 除法 (/) - 模数 (%) - 整除 (//) - 指数 (**) ### 加法 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('加法: ', numpy_array_from_list + 2) print('加法: ', np.add(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 加法: [3 4 5 6 7] 加法: [3 4 5 6 7] ``` ### 减法 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('减法: ', numpy_array_from_list - 2) print('减法: ', np.subtract(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 减法: [-1 0 1 2 3] 减法: [-1 0 1 2 3] ``` ### 乘法 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('乘法: ', numpy_array_from_list * 2) print('乘法: ', np.multiply(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 乘法: [ 2 4 6 8 10] 乘法: [ 2 4 6 8 10] ``` ### 除法 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('除法: ', numpy_array_from_list / 2) print('除法: ', np.divide(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 除法: [0.5 1. 1.5 2. 2.5] 除法: [0.5 1. 1.5 2. 2.5] ``` ### 模数 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('模数: ', numpy_array_from_list % 2) print('模数: ', np.mod(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 模数: [1 0 1 0 1] 模数: [1 0 1 0 1] ``` ### 整除 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('整除: ', numpy_array_from_list // 2) print('整除: ', np.floor_divide(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 整除: [0 1 1 2 2] 整除: [0 1 1 2 2] ``` ### 指数 ```py # 声明 numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('原始数组: ', numpy_array_from_list) print('指数: ', numpy_array_from_list ** 2) print('指数: ', np.power(numpy_array_from_list, 2)) ``` ```sh 原始数组: [1 2 3 4 5] 指数: [ 1 4 9 16 25] 指数: [ 1 4 9 16 25] ``` ## 检查数据类型 ```py numpy_int_arr = np.array([1, 2, 3, 4]) numpy_float_arr = np.array([1.1, 2.0, 3.2]) numpy_bool_arr = np.array([-3, -2, 0, 1, 2, 3], dtype='bool') print(numpy_int_arr.dtype) print(numpy_float_arr.dtype) print(numpy_bool_arr.dtype) ``` ```sh int64 float64 bool ``` ## 转换类型 我们可以使用astype将数据类型从一种类型转换为另一种类型。让我们将int类型转换为浮点数,浮点数转换为整数,整数转换为布尔型。 ```py numpy_int_arr = np.array([1, 2, 3, 4], dtype='float') numpy_int_arr.astype('int').dtype numpy_float_arr = np.array([1.1, 2.0, 3.2]) numpy_float_arr.astype('int').dtype numpy_int_arr = np.array([-3, -2, 0, 1, 2, 3]) numpy_int_arr.astype('bool').dtype ``` ```sh int64 int64 bool ``` ## 多维数组 NumPy的主要优点之一是处理多维数组。我们先构建多维数组。 ```py two_dimension_array = np.array([(1,2,3),(4,5,6), (7,8,9)]) print(type (two_dimension_array)) print(two_dimension_array) print('形状: ', two_dimension_array.shape) print('大小: ', two_dimension_array.size) print('数据类型: ', two_dimension_array.dtype) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] 形状: (3, 3) 大小: 9 数据类型: int64 ``` ### 从NumPy中获取项目 ```py # 二维数组 two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_row = two_dimension_array[0] second_row = two_dimension_array[1] third_row = two_dimension_array[2] print('第一行:', first_row) print('第二行:', second_row) print('第三行: ', third_row) ``` ```sh 第一行: [1 2 3] 第二行: [4 5 6] 第三行: [7 8 9] ``` 现在让我们获取每一行的第一项: ```py first_column= two_dimension_array[:,0] second_column = two_dimension_array[:,1] third_column = two_dimension_array[:,2] print('第一列:', first_column) print('第二列:', second_column) print('第三列: ', third_column) ``` ```sh 第一列: [1 4 7] 第二列: [2 5 8] 第三列: [3 6 9] ``` ## NumPy数组切片 切片NumPy数组与切片Python列表相似,只是它适用于两个维度(行和列)。让我们先看看如何从NumPy数组中切片项目。 ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) print('原始数组:', numpy_array_from_list) # 第一个参数代表:起始位置 # 第二个参数代表:停止位置 # 第三个参数代表:步长 print('第一个参数代表:起始位置') print('第二个参数代表:停止位置') print('第三个参数代表:步长') # 使用正index ten_first_items = numpy_array_from_list[0:10] print('前10项:', ten_first_items) first_five_items = numpy_array_from_list[:5] print('前5项:', first_five_items) last_five_items = numpy_array_from_list[5:] print('后5项:', last_five_items) # 使用负index last_five_items = numpy_array_from_list[-5:] print('后5项:', last_five_items) ``` ```sh 原始数组: [ 1 2 3 4 5 6 7 8 9 10] 第一个参数代表:起始位置 第二个参数代表:停止位置 第三个参数代表:步长 前10项: [ 1 2 3 4 5 6 7 8 9 10] 前5项: [1 2 3 4 5] 后5项: [ 6 7 8 9 10] 后5项: [ 6 7 8 9 10] ``` 现在,让我们通过设置步长来访问每个2个项目: ```py every_two_item = numpy_array_from_list[::2] print('每隔一项:', every_two_item) ``` ```sh 每隔一项: [1 3 5 7 9] ``` 让我们反转数组: ```py reversed_array = numpy_array_from_list[::-1] print('反转数组:', reversed_array) ``` ```sh 反转数组: [10 9 8 7 6 5 4 3 2 1] ``` 我们可以在NumPy二维数组上使用切片: ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) print(two_dimension_array) print(two_dimension_array[1, 1]) print(two_dimension_array[1, 1:3]) print(two_dimension_array[1:3, 1:3]) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] 5 [5 6] [[5 6] [8 9]] ``` ## NumPy连接数组 NumPy提供了连接数组的方法。 ```py first_array = np.array([1, 2, 3]) second_array = np.array([4, 5, 6]) third_array = np.array([7, 8, 9]) print('第一个数组:', first_array) print('第二个数组:', second_array) print('第三个数组:', third_array) ``` ```sh 第一个数组: [1 2 3] 第二个数组: [4 5 6] 第三个数组: [7 8 9] ``` ### 水平连接 ```py horizontal_concat = np.hstack((first_array, second_array, third_array)) print('水平连接:', horizontal_concat) ``` ```sh 水平连接: [1 2 3 4 5 6 7 8 9] ``` ### 垂直连接 ```py vertical_concat = np.vstack((first_array, second_array, third_array)) print('垂直连接:', vertical_concat) ``` ```sh 垂直连接: [[1 2 3] [4 5 6] [7 8 9]] ``` ## 常见NumPy函数 我们看看最常见的NumPy函数: ### 最小值、最大值、平均值、中位数和百分位数 ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) print('最小值:', numpy_array_from_list.min()) print('最大值:', numpy_array_from_list.max()) print('平均值:', numpy_array_from_list.mean()) ``` 🎉 恭喜!🎉 [<< 第 23 天](./23_virtual_environment_cn.md) | [第 25 天 >>](./25_pandas_cn.md) ================================================ FILE: Chinese/25_pandas_cn.md ================================================ # 30天Python编程挑战:第25天 - Pandas - [第25天](#-第25天) - [Pandas](#pandas) - [安装Pandas](#安装pandas) - [导入Pandas](#导入pandas) - [使用默认索引创建Pandas系列](#使用默认索引创建pandas系列) - [使用自定义索引创建Pandas系列](#使用自定义索引创建pandas系列) - [从字典创建Pandas系列](#从字典创建pandas系列) - [创建常量Pandas系列](#创建常量pandas系列) - [使用Linspace创建Pandas系列](#使用linspace创建pandas系列) - [数据框(DataFrames)](#数据框dataframes) - [从列表的列表创建数据框](#从列表的列表创建数据框) - [使用字典创建数据框](#使用字典创建数据框) - [从字典列表创建数据框](#从字典列表创建数据框) - [使用Pandas读取CSV文件](#使用pandas读取csv文件) - [数据探索](#数据探索) - [修改数据框](#修改数据框) - [创建数据框](#创建数据框) - [添加新列](#添加新列) - [修改列值](#修改列值) - [格式化数据框列](#格式化数据框列) - [检查列值的数据类型](#检查列值的数据类型) - [布尔索引](#布尔索引) - [练习:第25天](#练习第25天) # 📘 第25天 ## Pandas Pandas是一个开源的、高性能的、易于使用的Python编程语言数据结构和数据分析工具。 Pandas添加了设计用于处理表格数据的数据结构和工具,这些数据结构是*系列(Series)*和*数据框(Data Frames)*。 Pandas提供了用于数据操作的工具: - 重塑 - 合并 - 排序 - 切片 - 聚合 - 插补 如果你使用的是anaconda,则不必安装pandas。 ### 安装Pandas 对于Mac: ```py pip install conda conda install pandas ``` 对于Windows: ```py pip install conda pip install pandas ``` Pandas数据结构基于*系列(Series)*和*数据框(DataFrames)*。 *系列*是一个*列*,而数据框是由*系列*集合组成的*多维表*。为了创建pandas系列,我们应该使用numpy创建一维数组或Python列表。 让我们看一个系列的例子: 名称Pandas系列 ![pandas series](../images/pandas-series-1.png) 国家系列 ![pandas series](../images/pandas-series-2.png) 城市系列 ![pandas series](../images/pandas-series-3.png) 如你所见,pandas系列只是一列数据。如果我们想要有多列,我们使用数据框。下面的例子显示了pandas数据框。 让我们看一个pandas数据框的例子: ![Pandas data frame](../images/pandas-dataframe-1.png) 数据框是行和列的集合。看看下面的表格;它比上面的例子有更多的列: ![Pandas data frame](../images/pandas-dataframe-2.png) 接下来,我们将看到如何导入pandas以及如何使用pandas创建系列和数据框 ### 导入Pandas ```python import pandas as pd # 将pandas导入为pd import numpy as np # 将numpy导入为np ``` ### 使用默认索引创建Pandas系列 ```python nums = [1, 2, 3, 4,5] s = pd.Series(nums) print(s) ``` ```sh 0 1 1 2 2 3 3 4 4 5 dtype: int64 ``` ### 使用自定义索引创建Pandas系列 ```python nums = [1, 2, 3, 4, 5] s = pd.Series(nums, index=[1, 2, 3, 4, 5]) print(s) ``` ```sh 1 1 2 2 3 3 4 4 5 5 dtype: int64 ``` ```python fruits = ['Orange','Banana','Mango'] fruits = pd.Series(fruits, index=[1, 2, 3]) print(fruits) ``` ```sh 1 Orange 2 Banana 3 Mango dtype: object ``` ### 从字典创建Pandas系列 ```python dct = {'name':'Asabeneh','country':'Finland','city':'Helsinki'} ``` ```python s = pd.Series(dct) print(s) ``` ```sh name Asabeneh country Finland city Helsinki dtype: object ``` ### 创建常量Pandas系列 ```python s = pd.Series(10, index = [1, 2, 3]) print(s) ``` ```sh 1 10 2 10 3 10 dtype: int64 ``` ### 使用Linspace创建Pandas系列 ```python s = pd.Series(np.linspace(5, 20, 10)) # linspace(起始点, 终点, 项目数) print(s) ``` ```sh 0 5.000000 1 6.666667 2 8.333333 3 10.000000 4 11.666667 5 13.333333 6 15.000000 7 16.666667 8 18.333333 9 20.000000 dtype: float64 ``` ## 数据框(DataFrames) Pandas数据框可以以不同的方式创建: - 从列表的列表创建 - 从字典创建 - 从字典的列表创建 - 从CSV文件创建 ### 从列表的列表创建数据框 ```python data = [ ['Asabeneh', 'Finland', 'Helsinki'], ['David', 'UK', 'London'], ['John', 'Sweden', 'Stockholm'] ] df = pd.DataFrame(data, columns=['Name', 'Country', 'City']) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ### 使用字典创建数据框 ```python data = {'Name': ['Asabeneh', 'David', 'John'], 'Country':[ 'Finland', 'UK', 'Sweden'], 'City': ['Helsinki', 'London', 'Stockholm']} df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ### 从字典列表创建数据框 ```python data = [ {'Name': 'Asabeneh', 'Country': 'Finland', 'City': 'Helsinki'}, {'Name': 'David', 'Country': 'UK', 'City': 'London'}, {'Name': 'John', 'Country': 'Sweden', 'City': 'Stockholm'}] df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ## 使用Pandas读取CSV文件 让我们在数据目录中读取文件,将通过将文件路径作为参数传递给pd.read_csv()函数来读取weight-height.csv文件。让我们使用head()方法查看前五行。 ```python import pandas as pd df = pd.read_csv('./data/weight-height.csv') print(df.head()) # 默认为前五行 ``` ```sh Gender Height Weight 0 Male 73.847017 241.893563 1 Male 68.781904 162.310473 2 Male 74.110105 212.740856 3 Male 71.730978 220.042470 4 Male 69.881796 206.349801 ``` 让我们使用tail()方法查看最后五行: ```python print(df.tail()) # 最后五行 ``` ```sh Gender Height Weight 9995 Female 66.172652 136.777454 9996 Female 67.067155 170.867906 9997 Female 63.867992 128.475319 9998 Female 69.034243 163.852461 9999 Female 61.944246 113.649103 ``` ### 数据探索 让我们使用shape属性获取行和列的数量: ```python print(df.shape) # 行和列的数量 ``` ```sh (10000, 3) ``` 如你所见,该数据集有10000行和3列。让我们获取有关数据的更多信息: ```python print(df.columns) # 列名 print(df.head(10)) # 前10行 print(df.tail(10)) # 最后10行 print(df['Gender'].value_counts()) # 计算每个值有多少个 print(df.describe()) # 数据统计概要 ``` ```sh Index(['Gender', 'Height', 'Weight'], dtype='object') Gender Height Weight 0 Male 73.847017 241.893563 1 Male 68.781904 162.310473 2 Male 74.110105 212.740856 3 Male 71.730978 220.042470 4 Male 69.881796 206.349801 5 Male 68.767792 152.212156 6 Male 67.961960 183.927889 7 Male 68.563817 175.929316 8 Male 71.267570 196.028855 9 Male 72.040119 205.801386 Gender Height Weight 9990 Female 64.744846 139.725595 9991 Female 62.109532 132.451630 9992 Female 62.593008 130.727432 9993 Female 62.100222 131.220717 9994 Female 63.421888 133.330246 9995 Female 66.172652 136.777454 9996 Female 67.067155 170.867906 9997 Female 63.867992 128.475319 9998 Female 69.034243 163.852461 9999 Female 61.944246 113.649103 Gender Male 5000 Female 5000 Name: count, dtype: int64 Height Weight count 10000.000000 10000.000000 mean 66.367560 161.440357 std 3.847528 32.108439 min 54.263133 64.700127 25% 63.505620 135.818051 50% 66.318070 161.212928 75% 69.174262 187.169525 max 78.998742 269.989699 ``` ## 修改数据框 ### 创建数据框 首先,让我们使用前面学到的内容创建一个数据框: ```python # 导入pandas包 import pandas as pd # 导入numpy包 import numpy as np # 数据 data = [ {"Name": "张三", "Country":"中国", "City":"上海"}, {"Name": "李四", "Country":"中国", "City":"北京"}, {"Name": "王五", "Country":"中国", "City":"广州"}] # 创建一个数据框 df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 张三 中国 上海 1 李四 中国 北京 2 王五 中国 广州 ``` ### 添加新列 让我们向DataFrame添加权重列: ```python weights = [74, 78, 69] df['Weight'] = weights df ``` ```sh Name Country City Weight 0 张三 中国 上海 74 1 李四 中国 北京 78 2 王五 中国 广州 69 ``` 让我们添加一个高度列: ```python heights = [173, 175, 169] df['Height'] = heights df ``` ```sh Name Country City Weight Height 0 张三 中国 上海 74 173 1 李四 中国 北京 78 175 2 王五 中国 广州 69 169 ``` ### 修改列值 我们可以通过三种方式修改列: 1. 直接在列名中写入新数据: ```python df['Name'] = ['赵六', '钱七', '孙八'] df ``` ```sh Name Country City Weight Height 0 赵六 中国 上海 74 173 1 钱七 中国 北京 78 175 2 孙八 中国 广州 69 169 ``` 2. 通过索引进行修改: ```python df.loc[1, 'Name'] = '小七' df ``` ```sh Name Country City Weight Height 0 赵六 中国 上海 74 173 1 小七 中国 北京 78 175 2 孙八 中国 广州 69 169 ``` 通过iloc索引: ```python print('原始数据:\n', df) df.iloc[1, 0] = '阿七' print('修改后的数据:\n', df) ``` ```sh 原始数据: Name Country City Weight Height 0 赵六 中国 上海 74 173 1 小七 中国 北京 78 175 2 孙八 中国 广州 69 169 修改后的数据: Name Country City Weight Height 0 赵六 中国 上海 74 173 1 阿七 中国 北京 78 175 2 孙八 中国 广州 69 169 ``` ### 格式化数据框列 让我们使用格式进行修改。强大公式是BMI:体重(kg)/ 身高²(m)。让我们添加一个BMI列: ```python # 添加身高、体重和BMI列 df['BMI'] = np.round(df['Weight'] / ((df['Height'] * 0.01) ** 2), 2) # 保留两位小数 print(df) ``` ```sh Name Country City Weight Height BMI 0 赵六 中国 上海 74 173 24.73 1 阿七 中国 北京 78 175 25.47 2 孙八 中国 广州 69 169 24.16 ``` ## 检查列值的数据类型 我们可以使用dtypes属性检查DataFrame中列的数据类型: ```python print(df.dtypes) ``` ```sh Name object Country object City object Weight int64 Height int64 BMI float64 dtype: object ``` ### 布尔索引 布尔索引或布尔掩码允许您使用条件选择DataFrame中的特定行: ```python # 创建一个数据框 df = pd.DataFrame({ 'name': ['张三', '李四', '王五', '赵六'], 'country': ['中国', '美国', '英国', '西班牙'], 'age': [25, 15, 22, 28], '在职': [True, False, True, False] }) print(df) ``` ```sh name country age 在职 0 张三 中国 25 True 1 李四 美国 15 False 2 王五 英国 22 True 3 赵六 西班牙 28 False ``` 让我们筛选出年龄大于20岁且在职的人员: ```python print(df[(df['age'] > 20) & (df['在职'] == True)]) ``` ```sh name country age 在职 0 张三 中国 25 True 2 王五 英国 22 True ``` ## 练习:第25天 1. 阅读[hacker_news.csv](../data/hacker_news.csv)文件并获取前五行 2. 获取标题列 3. 获取行数、列数 4. 获取前十行和最后十行 5. 获取第二行和第四行从第二列到第四列的数据 6. 获取主题为Python的行 7. 获取Python主题行的数量 8. 获取投票数超过200的所有行 9. 按投票数排序数据框 10. 按投票数进行降序排序 11. 过滤掉Python主题并按票数排序 🎉 恭喜!🎉 [<< 第 24 天](./24_statistics_cn.md) | [第 26 天 >>](./26_python_web_cn.md) ================================================ FILE: Chinese/26_python_web_cn.md ================================================ # 30天Python编程挑战:第26天 - Python网络编程 - [第26天](#-第26天) - [Python网络编程](#python网络编程) - [Flask](#flask) - [文件夹结构](#文件夹结构) - [设置项目目录](#设置项目目录) - [创建路由](#创建路由) - [创建模板](#创建模板) - [Python脚本](#python脚本) - [导航](#导航) - [创建布局](#创建布局) - [提供静态文件](#提供静态文件) - [部署](#部署) - [创建Heroku账户](#创建heroku账户) - [登录Heroku](#登录heroku) - [创建requirements和Procfile](#创建requirements和procfile) - [将项目推送到Heroku](#将项目推送到heroku) - [练习:第26天](#练习第26天) # 📘 第26天 ## Python网络编程 Python是一种通用编程语言,可以用于多种场合。在本节中,我们将看到如何使用Python进行网络开发。Python有许多Web框架。Django和Flask是最流行的框架。今天,我们将学习如何使用Flask进行Web开发。 ### Flask Flask是用Python编写的Web开发框架。Flask使用Jinja2模板引擎。Flask也可以与其他现代前端库(如React)一起使用。 如果你还没有安装virtualenv包,请先安装它。虚拟环境将允许隔离项目依赖与本地机器依赖。 #### 文件夹结构 完成所有步骤后,你的项目文件结构应该如下所示: ```sh ├── Procfile ├── app.py ├── env │ ├── bin ├── requirements.txt ├── static │ └── css │ └── main.css └── templates ├── about.html ├── home.html ├── layout.html ├── post.html └── result.html ``` ### 设置项目目录 按照以下步骤开始使用Flask。 步骤1:使用以下命令安装virtualenv。 ```sh pip install virtualenv ``` 步骤2: ```sh asabeneh@Asabeneh:~/Desktop$ mkdir python_for_web asabeneh@Asabeneh:~/Desktop$ cd python_for_web/ asabeneh@Asabeneh:~/Desktop/python_for_web$ virtualenv venv asabeneh@Asabeneh:~/Desktop/python_for_web$ source venv/bin/activate (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install Flask (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` 我们创建了一个名为python_for_web的项目目录。在项目中,我们创建了一个虚拟环境*venv*,它可以是任何名称,但我喜欢称它为_venv_。然后我们激活了虚拟环境。我们使用pip freeze检查项目目录中安装的包。pip freeze的结果是空的,因为还没有安装包。 现在,让我们在项目目录中创建app.py文件并编写以下代码。app.py文件将是项目中的主文件。以下代码包含flask模块和os模块。 ### 创建路由 主页路由。 ```py # 导入flask from flask import Flask import os # 导入操作系统模块 app = Flask(__name__) @app.route('/') # 这个装饰器创建主页路由 def home (): return '

欢迎

' @app.route('/about') def about(): return '

关于我们

' if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 要运行flask应用程序,在主flask应用程序目录中输入python app.py。 运行_python app.py_后,检查本地主机5000端口。 让我们添加额外的路由。 创建关于路由 ```py # 导入flask from flask import Flask import os # 导入操作系统模块 app = Flask(__name__) @app.route('/') # 这个装饰器创建主页路由 def home (): return '

欢迎

' @app.route('/about') def about(): return '

关于我们

' if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 现在,我们在上面的代码中添加了关于路由。如果我们想渲染HTML文件而不是字符串呢?使用*render_template*函数可以渲染HTML文件。让我们在项目目录中创建一个名为templates的文件夹,并在其中创建home.html和about.html。让我们也从flask导入*render_template*函数。 ### 创建模板 在templates文件夹内创建HTML文件。 home.html ```html 主页

欢迎回家

``` about.html ```html 关于

关于我们

``` ### Python脚本 app.py ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 app = Flask(__name__) @app.route('/') # 这个装饰器创建主页路由 def home (): return render_template('home.html') @app.route('/about') def about(): return render_template('about.html') if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 正如你所看到的,为了访问不同的页面或进行导航,我们需要一个导航。让我们为每个页面添加一个链接,或者创建一个我们用于每个页面的布局。 ### 导航 ```html ``` 现在,我们可以使用上面的链接在页面之间导航。让我们创建一个额外的页面来处理表单数据。你可以给它取任何名字,我喜欢称它为post.html。 我们可以使用Jinja2模板引擎向HTML文件注入数据。 ```py # 导入flask from flask import Flask, render_template, request, redirect, url_for import os # 导入操作系统模块 app = Flask(__name__) @app.route('/') # 这个装饰器创建主页路由 def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30天Python编程挑战' return render_template('home.html', techs=techs, name=name, title='主页') @app.route('/about') def about(): name = '30天Python编程挑战' return render_template('about.html', name=name, title='关于我们') @app.route('/post') def post(): name = '编程语言文章' path = request.path return render_template('post.html', name=name, path=path, title='文章') if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` home.html ```html {{title}}

欢迎回到{{name}}

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
``` about.html ```html {{title}}

关于{{name}}

``` post.html ```html {{title}}

{{name}}

当前路径: {{path}}

``` 现在,让我们添加一个接收表单数据的路由。我们使用POST方法,因为我们将收到表单数据。 ```py # 导入flask from flask import Flask, render_template, request, redirect, url_for import os # 导入操作系统模块 app = Flask(__name__) @app.route('/') # 这个装饰器创建主页路由 def home(): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30天Python编程挑战' return render_template('home.html', techs=techs, name=name, title='主页') @app.route('/about') def about(): name = '30天Python编程挑战' return render_template('about.html', name=name, title='关于我们') @app.route('/post') def post(): name = '文章' return render_template('post.html', name=name, title='文章') @app.route('/result', methods=['POST']) def result(): first_name = request.form['first_name'] last_name = request.form['last_name'] old_job = request.form['old_job'] current_job = request.form['current_job'] country = request.form['country'] print(first_name, last_name, old_job, current_job, country) result_data = { 'first_name':first_name, 'last_name':last_name, 'old_job': old_job, 'current_job': current_job, 'country':country } return render_template('result.html', result_data = result_data, title= '结果') if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` result.html ```html {{title}}

表单数据

  • 第一名字: {{result_data.first_name}}
  • 姓氏: {{result_data.last_name}}
  • 旧工作: {{result_data.old_job}}
  • 当前工作: {{result_data.current_job}}
  • 国家: {{result_data.country}}
``` 在现实世界中,我们不会在所有页面中重复HTML代码。而是创建一个布局并将其继承到其他文件中。让我们使用继承(模板)。现在,我们需要创建的不是三个不同的文件,而是一个名为layout.html的布局文件。然后其他文件将继承它。 ### 创建布局 layout.html ```html {% if title %} 30天Python - {{ title}} {% else %} 30天Python {% endif %}
{% block content %} {% endblock %}
``` 在上面的布局中,我们创建了一个可以被所有继承布局的页面使用的公共布局。在布局内部,我们可以看到导航链接。我们使用{% block content %}{% endblock %}标记以允许子模板添加内容。 home.html ```html {% extends 'layout.html' %} {% block content %}

欢迎回到{{name}}

这个项目是通过使用以下技术构建的: Flask, Python and HTML CSS

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
{% endblock %} ``` about.html ```html {% extends 'layout.html' %} {% block content %}

关于{{name}}

这个挑战是一个30天编程挑战,旨在帮助你学习Python编程语言,通过每天解决一个Python问题。

{% endblock %} ``` post.html ```html {% extends 'layout.html' %} {% block content %}

{{name}}

{{path}}

{% endblock %} ``` result.html ```html {% extends 'layout.html' %} {% block content %}

表单数据

  • 第一名字: {{result_data.first_name}}
  • 姓氏: {{result_data.last_name}}
  • 旧工作: {{result_data.old_job}}
  • 当前工作: {{result_data.current_job}}
  • 国家: {{result_data.country}}
{% endblock %} ``` #### 提供静态文件 以下是main.css文件,我们将把它放在static/css目录中: ```css /* === GENERAL === */ body { margin: 0; padding: 0; font-family: "Lato", sans-serif; background-color: #f0f8ea; } .container { max-width: 80%; margin: auto; padding: 30px; } ul { list-style-type: none; padding: 0; } .tech { color: #5bbc2e; } /* === HEADER === */ header { background-color: #5bbc2e; } .menu-container { display: flex; justify-content: space-between; padding: 20px 30px; } .brand-name { color: white; font-weight: 800; font-size: 24px; } .nav-lists { display: flex; } .nav-list { margin-right: 15px; } .nav-link { text-decoration: none; color: white; font-weight: 300; } /* === FORM === */ form { margin: 30px 0; border: 1px solid #ddd; padding: 30px; border-radius: 10px; } form > div { margin-bottom: 15px; } input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; outline: 0; font-size: 16px; box-sizing: border-box; margin-top: 5px; } button { padding: 12px 24px; border: 0; background-color: #5bbc2e; color: white; border-radius: 10px; font-size: 16px; outline: 0; cursor: pointer; } button:hover { background-color: #4b9c25; } ``` ### 部署 #### 创建Heroku账户 Heroku提供了一个免费的托管服务。如果你想要部署一个应用程序,你应该有一个Heroku账户。 #### 登录Heroku ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku login heroku: Press any key to open up the browser to login or q to exit: Opening browser to https://cli-auth.heroku.com/auth/cli/browser/ec0972d5-d8c6-4adf-b004-a42a22dd09a8 Logging in... done Logged in as asabeneh@gmail.com asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` #### 创建requirements和Procfile 在部署应用程序之前,我们需要告诉Heroku哪些依赖包需要安装,以及如何运行应用程序。Heroku使用requirements.txt文件获取应用程序依赖包的信息。使用pip freeze命令列出所有依赖包及其版本,并将其写入requirements.txt。 ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt ``` Procfile告诉Heroku如何运行应用程序。在本例中,我们使用Gunicorn作为WSGI HTTP服务器,用于运行Python Web应用程序。我们需要将Gunicorn添加到我们的依赖包中。 ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install gunicorn asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt ``` 现在,让我们创建一个Procfile,并添加以下内容: ```sh web: gunicorn app:app ``` #### 将项目推送到Heroku ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku create 30-days-of-python-app Creating ⬢ 30-days-of-python-app... done https://30-days-of-python-app.herokuapp.com/ | https://git.heroku.com/30-days-of-python-app.git asabeneh@Asabeneh:~/Desktop/python_for_web$ git init Initialized empty Git repository in /home/asabeneh/Desktop/python_for_web/.git/ asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku git:remote -a 30-days-of-python-app set git remote heroku to https://git.heroku.com/30-days-of-python-app.git asabeneh@Asabeneh:~/Desktop/python_for_web$ echo -e "venv\n.vscode" > .gitignore asabeneh@Asabeneh:~/Desktop/python_for_web$ git add . asabeneh@Asabeneh:~/Desktop/python_for_web$ git commit -m "first python web app" [master (root-commit) 9dfcc6a] first python web app 9 files changed, 403 insertions(+) create mode 100644 .gitignore create mode 100644 Procfile create mode 100644 app.py create mode 100644 requirements.txt create mode 100644 static/css/main.css create mode 100644 templates/about.html create mode 100644 templates/home.html create mode 100644 templates/layout.html create mode 100644 templates/post.html create mode 100644 templates/result.html asabeneh@Asabeneh:~/Desktop/python_for_web$ git push heroku master Enumerating objects: 14, done. Counting objects: 100% (14/14), done. Delta compression using up to 2 threads Compressing objects: 100% (12/12), done. Writing objects: 100% (14/14), 6.08 KiB | 1.52 MiB/s, done. Total 14 (delta 2), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source: remote: remote: -----> Python app detected remote: -----> Installing python-3.6.10 remote: -----> Installing pip remote: -----> Installing dependencies with Pipenv 2018.5.18… remote: Installing dependencies from Pipfile.lock (872ae5)… remote: -----> Installing SQLite3 remote: -----> $ python manage.py collectstatic --noinput remote: Traceback (most recent call last): remote: File "manage.py", line 10, in remote: from app import app remote: ModuleNotFoundError: No module named 'app' remote: remote: ! Error while running '$ python manage.py collectstatic --noinput'. remote: See traceback above for details. remote: remote: You may need to update application code to resolve this error. remote: Or, you can disable collectstatic for this application: remote: remote: $ heroku config:set DISABLE_COLLECTSTATIC=1 remote: remote: https://devcenter.heroku.com/articles/django-assets remote: -----> Discovering process types remote: Procfile declares types -> web remote: remote: -----> Compressing... remote: Done: 55.7M remote: -----> Launching... remote: Released v3 remote: https://30-days-of-python-app.herokuapp.com/ deployed to Heroku remote: remote: Verifying deploy... done. To https://git.heroku.com/30-days-of-python-app.git * [new branch] master -> master asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` 如你所见,我们已经成功地创建了第一个网络应用程序、对其进行部署,并将其托管在Heroku上。您可以使用此[链接](https://30-days-of-python-app.herokuapp.com/)尝试本应用程序。 事不宜迟,让我们做一些练习,巩固所学到的知识。 ## 练习:第26天 1. 创建一个名为"成绩计算器"的Flask应用程序。用户可以输入他们的分数、科目名称,然后应用程序应根据分数显示不同的消息: - 如果分数≥90,显示"优秀!你的[科目]成绩是[分数]"。 - 如果80≤分数<90,显示"很好!你的[科目]成绩是[分数]"。 - 如果70≤分数<80,显示"一般!你的[科目]成绩是[分数]"。 - 如果60≤分数<70,显示"及格!你的[科目]成绩是[分数]"。 - 如果分数<60,显示"你需要更加努力!你的[科目]成绩是[分数]"。 2. 创建一个"体重指数计算器"应用程序,计算体重指数(BMI),公式为体重(kg)/(身高(m)²)。根据BMI值显示不同的健康状态: - BMI<18.5:"体重过轻" - 18.5≤BMI<24.9:"健康体重" - 25≤BMI<29.9:"超重" - BMI≥30:"肥胖" 3. 创建一个博客应用程序,用户可以添加、编辑和删除博客文章。 4. 创建一个"任务管理器"应用程序,用户可以添加、查看和删除任务。 🎉 恭喜!🎉 [<< 第 25 天](./25_pandas_cn.md) | [第 27 天 >>](./27_python_with_mongodb_cn.md) ================================================ FILE: Chinese/27_python_with_mongodb_cn.md ================================================ # 30天Python编程挑战:第27天 - Python与MongoDB - [第27天](#-第27天) - [Python与MongoDB](#python与mongodb) - [MongoDB](#mongodb) - [SQL与NoSQL的比较](#sql与nosql的比较) - [获取连接字符串(MongoDB URI)](#获取连接字符串mongodb-uri) - [将Flask应用程序连接到MongoDB集群](#将flask应用程序连接到mongodb集群) - [创建数据库和集合](#创建数据库和集合) - [向集合中插入多个文档](#向集合中插入多个文档) - [MongoDB查找](#mongodb查找) - [使用查询进行查找](#使用查询进行查找) - [使用修饰符的查询查找](#使用修饰符的查询查找) - [限制文档数量](#限制文档数量) - [使用排序进行查找](#使用排序进行查找) - [使用查询进行更新](#使用查询进行更新) - [删除文档](#删除文档) - [删除集合](#删除集合) - [💻 练习:第27天](#-练习第27天) # 📘 第27天 # Python与MongoDB Python是一种后端技术,可以与不同的数据库应用程序连接。它可以连接到SQL和NoSQL数据库。在本节中,我们将Python与MongoDB数据库连接,MongoDB是一种NoSQL数据库。 ## MongoDB MongoDB是一种NoSQL数据库。MongoDB以类似JSON的文档形式存储数据,这使得MongoDB非常灵活和可扩展。让我们看看SQL和NoSQL数据库的不同术语。下表将展示SQL与NoSQL数据库之间的区别。 ### SQL与NoSQL的比较 ![SQL与NoSQL](../images/mongoDB/sql-vs-nosql.png) 在本节中,我们将重点关注NoSQL数据库MongoDB。通过点击注册按钮,然后在下一页点击注册,让我们在[mongoDB](https://www.mongodb.com/)上注册。 ![MongoDB注册页面](../images/mongoDB/mongodb-signup-page.png) 完成表格并点击继续 ![MongoDB注册](../images/mongoDB/mongodb-register.png) 选择免费计划 ![MongoDB免费计划](../images/mongoDB/mongodb-free.png) 选择最近的免费区域,并为你的集群命名。 ![MongoDB集群名称](../images/mongoDB/mongodb-cluster-name.png) 现在,一个免费的沙箱已创建 ![MongoDB沙箱](../images/mongoDB/mongodb-sandbox.png) 允许所有本地主机访问 ![MongoDB允许IP访问](../images/mongoDB/mongodb-allow-ip-access.png) 添加用户和密码 ![MongoDB添加用户](../images/mongoDB/mongodb-add-user.png) 创建MongoDB URI链接 ![MongoDB创建URI](../images/mongoDB/mongodb-create-uri.png) 选择Python 3.6或更高版本的驱动程序 ![MongoDB Python驱动程序](../images/mongoDB/mongodb-python-driver.png) ### 获取连接字符串(MongoDB URI) 复制连接字符串链接,你将获得类似这样的内容: ```sh mongodb+srv://asabeneh:@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` 不要担心这个URL,它是连接你的应用程序与mongoDB的一种方式。 让我们用你添加用户时使用的密码替换密码占位符。 **示例:** ```sh mongodb+srv://asabeneh:123123123@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` 现在,我已经替换了所有内容,密码是123123123,数据库名称是*thirty_days_python*。这只是一个示例,你的密码必须比示例密码更强。 Python需要mongoDB驱动程序才能访问mongoDB数据库。我们将使用_pymongo_和_dnspython_来连接我们的应用程序与mongoDB基础。在你的项目目录中安装pymongo和dnspython。 ```sh pip install pymongo dnspython ``` 要使用mongodb+srv://URI,必须安装"dnspython"模块。dnspython是用于Python的DNS工具包。它支持几乎所有记录类型。 ### 将Flask应用程序连接到MongoDB集群 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 当我们运行上面的代码时,我们会得到默认的mongoDB数据库。 ```sh ['admin', 'local'] ``` ### 创建数据库和集合 让我们创建一个数据库,如果数据库和集合在mongoDB中不存在,它们将被创建。让我们创建一个名为*thirty_days_of_python*的数据库和*students*集合。 创建数据库的方法: ```sh db = client.name_of_databse # 我们可以这样创建数据库,或者使用第二种方式 db = client['name_of_database'] ``` ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) # 创建数据库 db = client.thirty_days_of_python # 创建students集合并插入文档 db.students.insert_one({'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250}) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 在创建数据库后,我们还创建了一个students集合,并使用*insert_one()*方法插入了一个文档。 现在,数据库*thirty_days_of_python*和*students*集合已经创建,并且文档已经插入。 检查你的mongoDB集群,你将看到数据库和集合。在集合内部,将有一个文档。 ```sh ['thirty_days_of_python', 'admin', 'local'] ``` 如果你在mongoDB集群上看到这个,这意味着你已经成功创建了一个数据库和一个集合。 ![创建数据库和集合](../images/mongoDB/mongodb-creating_database.png) 如果你看到上图,文档已经创建,并带有一个长ID作为主键。每次我们创建一个文档,mongoDB都会为它创建一个唯一的ID。 ### 向集合中插入多个文档 *insert_one()*方法一次插入一个项目,如果我们想一次插入多个文档,我们可以使用*insert_many()*方法或for循环。 我们可以使用for循环一次插入多个文档。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) students = [ {'name':'David','country':'UK','city':'London','age':34}, {'name':'John','country':'Sweden','city':'Stockholm','age':28}, {'name':'Sami','country':'Finland','city':'Helsinki','age':25}, ] for student in students: db.students.insert_one(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### MongoDB查找 *find()*和*findOne()*方法是在mongoDB数据库集合中查找数据的常用方法。它类似于MySQL数据库中的SELECT语句。 让我们使用_find_one()_方法来获取数据库集合中的一个文档。 - \*find_one({"\_id": ObjectId("id"}): 如果没有提供id,则获取第一次出现的文档 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 student = db.students.find_one() print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Helsinki', 'city': 'Helsinki', 'age': 250} ``` 上面的查询返回第一个条目,但我们可以使用特定的\_id来定位特定的文档。让我们做一个例子,使用David的id来获取David对象。 '\_id':ObjectId('5df68a23f106fe2d315bbc8c') ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 from bson.objectid import ObjectId # id对象 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 student = db.students.find_one({'_id':ObjectId('5df68a23f106fe2d315bbc8c')}) print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` 我们已经看到如何使用上面的例子来使用_find_one()_。让我们进一步了解_find()_ - _find()_: 如果我们不传递查询对象,返回集合中的所有出现。该对象是pymongo.cursor对象。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 students = db.students.find() for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 我们可以通过在_find({}, {})_中传递第二个对象来指定要返回的字段。0表示不包含,1表示包含,但我们不能混合使用0和1,除了\_id。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 students = db.students.find({}, {"_id":0, "name": 1, "country":1}) # 0表示不包含,1表示包含 for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'name': 'Asabeneh', 'country': 'Finland'} {'name': 'David', 'country': 'UK'} {'name': 'John', 'country': 'Sweden'} {'name': 'Sami', 'country': 'Finland'} ``` ### 使用查询进行查找 在mongoDB中,find接受一个查询对象。我们可以传递一个查询对象,我们可以过滤我们想要过滤的文档。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = { "country":"Finland" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 带有修饰符的查询 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = { "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### 使用修饰符的查询查找 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = { "country":"Finland", "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 带有修饰符的查询 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = {"age":{"$lt":30}} students = db.students.find(query) for student in students: print(student) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### 限制文档数量 我们可以使用_limit()_方法来限制我们返回的文档数量。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 db.students.find().limit(3) ``` ### 使用排序进行查找 默认情况下,排序是升序的。我们可以通过添加-1参数将排序更改为降序。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 students = db.students.find().sort('name') for student in students: print(student) students = db.students.find().sort('name',-1) for student in students: print(student) students = db.students.find().sort('age') for student in students: print(student) students = db.students.find().sort('age',-1) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 升序 ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 降序 ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ### 使用查询进行更新 我们将使用*update_one()*方法来更新一个项目。它接受两个对象,一个是查询,另一个是新对象。 第一个人,Asabeneh得到了一个非常不合理的年龄。让我们更新Asabeneh的年龄。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = {'age':250} new_value = {'$set':{'age':38}} db.students.update_one(query, new_value) # 让我们检查结果,看看年龄是否被修改 for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 当我们想要一次更新多个文档时,我们使用*upate_many()*方法。 ### 删除文档 方法*delete_one()*删除一个文档。*delete_one()*方法接受一个查询对象参数。它只删除第一次出现的文档。 让我们从集合中删除一个John。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 query = {'name':'John'} db.students.delete_one(query) for student in db.students.find(): print(student) # 让我们检查结果,看看年龄是否被修改 for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # 部署时我们使用环境变量 # 使其同时适用于生产和开发环境 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` 如你所见,John已经从集合中删除。 当我们想要删除多个文档时,我们使用*delete_many()*方法,它接受一个查询对象。如果我们将一个空的查询对象传递给*delete_many({})*,它将删除集合中的所有文档。 ### 删除集合 使用_drop()_方法,我们可以从数据库中删除一个集合。 ```py # 导入flask from flask import Flask, render_template import os # 导入操作系统模块 import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 db.students.drop() ``` 现在,我们已经从数据库中删除了students集合。 ## 💻 练习:第27天 🎉 恭喜!🎉 [<< 第 26 天](./26_python_web_cn.md) | [第 28 天 >>](./28_API_cn.md) ================================================ FILE: Chinese/28_API_cn.md ================================================ # 30天Python编程挑战:第28天 - API - [第28天](#-第28天) - [应用程序编程接口(API)](#应用程序编程接口api) - [API](#api) - [构建API](#构建api) - [HTTP(超文本传输协议)](#http超文本传输协议) - [HTTP的结构](#http的结构) - [初始请求行(状态行)](#初始请求行状态行) - [初始响应行(状态行)](#初始响应行状态行) - [头字段](#头字段) - [消息体](#消息体) - [请求方法](#请求方法) - [💻 练习:第28天](#-练习第28天) # 📘 第28天 # 应用程序编程接口(API) ## API API是应用程序编程接口(Application Programming Interface)的缩写。我们在本节中将介绍的API类型是Web API。 Web API是定义好的接口,通过这些接口在企业和使用其资产的应用程序之间进行交互,这也是一种服务级别协议(SLA),用于指定功能提供者并为其API用户公开服务路径或URL。 在Web开发的上下文中,API被定义为一组规范,如超文本传输协议(HTTP)请求消息,以及响应消息结构的定义,通常采用XML或JavaScript对象表示法(JSON)格式。 Web API已经从基于简单对象访问协议(SOAP)的Web服务和面向服务的架构(SOA)转向更直接的表征状态转移(REST)风格的Web资源。 社交媒体服务和Web API已经允许Web社区在社区和不同平台之间共享内容和数据。 使用API,在一个地方创建的内容可以动态地在Web上的多个位置发布和更新。 例如,Twitter的REST API允许开发人员访问核心Twitter数据,而搜索API提供了开发人员与Twitter搜索和趋势数据互动的方法。 许多应用程序提供API端点。一些API的例子,如国家[API](https://restcountries.eu/rest/v2/all),[猫品种API](https://api.thecatapi.com/v1/breeds)。 在本节中,我们将介绍一个RESTful API,它使用HTTP请求方法来GET、PUT、POST和DELETE数据。 ## 构建API RESTful API是一种应用程序编程接口(API),使用HTTP请求来GET、PUT、POST和DELETE数据。在前几节中,我们学习了Python、Flask和MongoDB。我们将利用我们获得的知识,使用Python Flask和MongoDB数据库开发一个RESTful API。每个具有CRUD(创建、读取、更新、删除)操作的应用程序都有一个API,用于从数据库创建数据、获取数据、更新数据或删除数据。 要构建API,了解HTTP协议和HTTP请求、响应周期是很好的。 ## HTTP(超文本传输协议) HTTP是客户端和服务器之间建立的通信协议。在这种情况下,客户端是浏览器,服务器是你访问数据的地方。HTTP是一种网络协议,用于传递资源,这些资源可以是万维网上的文件,无论是HTML文件、图像文件、查询结果、脚本或其他文件类型。 浏览器是HTTP客户端,因为它向HTTP服务器(Web服务器)发送请求,而HTTP服务器再向客户端发送响应。 ## HTTP的结构 HTTP使用客户端-服务器模型。HTTP客户端打开一个连接并向HTTP服务器发送请求消息,HTTP服务器返回响应消息,即请求的资源。当请求响应周期完成时,服务器关闭连接。 ![HTTP请求响应周期](../images/http_request_response_cycle.png) 请求和响应消息的格式类似。两种消息都有 - 一个初始行 - 零个或多个头行 - 一个空行(即单独的CRLF) - 一个可选的消息体(例如文件、查询数据或查询输出) 让我们通过导航此站点来看一个请求和响应消息的示例:https://thirtydaysofpython-v1-final.herokuapp.com/ 。这个网站已部署在Heroku免费dyno上,在某些月份可能由于高请求量而无法工作。支持这项工作可以让服务器始终运行。 ![请求和响应头](../images/request_response_header.png) ## 初始请求行(状态行) 初始请求行与响应不同。 请求行有三个部分,用空格分隔: - 方法名(GET、POST、HEAD) - 请求资源的路径 - 使用的HTTP版本。例如 GET / HTTP/1.1 GET是最常见的HTTP方法,用于获取或读取资源,而POST是常见的请求方法,用于创建资源。 ### 初始响应行(状态行) 初始响应行,称为状态行,也有三个用空格分隔的部分: - HTTP版本 - 响应状态码,给出请求的结果,以及描述状态码的原因。状态行的例子有: HTTP/1.0 200 OK 或者 HTTP/1.0 404 Not Found 注意: 最常见的状态码是: 200 OK:请求成功,并且生成的资源(例如文件或脚本输出)在消息体中返回。 500 服务器错误 完整的HTTP状态码列表可以在[这里](https://httpstatuses.com/)找到。也可以在[这里](https://httpstatusdogs.com/)找到。 ### 头字段 正如你在上面的截图中看到的,头行提供了有关请求或响应的信息,或者有关在消息体中发送的对象的信息。 ```sh GET / HTTP/1.1 Host: thirtydaysofpython-v1-final.herokuapp.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 Sec-Fetch-User: ?1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: navigate Referer: https://thirtydaysofpython-v1-final.herokuapp.com/post Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.9,fi-FI;q=0.8,fi;q=0.7,en-CA;q=0.6,en-US;q=0.5,fr;q=0.4 ``` ### 消息体 HTTP消息可能在头行之后发送数据体。在响应中,这是请求的资源返回给客户端的地方(消息体最常用的用途),或者如果出现错误,这里可能是解释性文本。在请求中,这是用户输入的数据或上传的文件发送到服务器的地方。 如果HTTP消息包含一个消息体,通常在消息中有描述该消息体的头行。特别是: Content-Type: 头给出消息体中数据的MIME类型(text/html,application/json,text/plain,text/css,image/gif)。 Content-Length: 头给出消息体中的字节数。 ### 请求方法 GET、POST、PUT和DELETE是我们将实现API或CRUD操作应用程序的HTTP请求方法。 1. GET:GET方法用于使用给定的URI从给定服务器检索和获取信息。使用GET的请求应该只检索数据,而不应该对数据有任何其他影响。 2. POST:POST请求用于创建数据并将数据发送到服务器,例如使用HTML表单创建新帖子、上传文件等。 3. PUT:用上传的内容替换目标资源的所有当前表示,我们使用它来修改或更新数据。 4. DELETE:删除数据 ## 💻 练习:第28天 1. 阅读有关API和HTTP的资料 🎉 恭喜!🎉 [<< 第 27 天](./27_python_with_mongodb_cn.md) | [第 29 天 >>](./29_building_API_cn.md) ================================================ FILE: Chinese/29_building_API_cn.md ================================================ # 30天Python编程挑战:第29天 - 构建API - [第29天](#第29天) - [构建API](#构建api) - [API的结构](#api的结构) - [使用GET获取数据](#使用get获取数据) - [通过ID获取文档](#通过id获取文档) - [使用POST创建数据](#使用post创建数据) - [使用PUT更新](#使用put更新) - [使用Delete删除文档](#使用delete删除文档) - [💻 练习:第29天](#-练习第29天) ## 第29天 ## 构建API 在本节中,我们将介绍一个RESTful API,它使用HTTP请求方法来GET、PUT、POST和DELETE数据。 RESTful API是一种应用程序编程接口(API),使用HTTP请求来GET、PUT、POST和DELETE数据。在前几节中,我们学习了Python、Flask和MongoDB。我们将利用我们获得的知识,使用Python Flask和MongoDB开发一个RESTful API。每个具有CRUD(创建、读取、更新、删除)操作的应用程序都有一个API,用于从数据库创建数据、获取数据、更新数据或删除数据。 浏览器只能处理GET请求。因此,我们必须有一个工具,可以帮助我们处理所有请求方法(GET、POST、PUT、DELETE)。 API示例: - 国家API:https://restcountries.eu/rest/v2/all - 猫品种API:https://api.thecatapi.com/v1/breeds [Postman](https://www.getpostman.com/)是API开发领域非常流行的工具。所以,如果你想完成本节内容,你需要[下载Postman](https://www.getpostman.com/)。Postman的替代品是[Insomnia](https://insomnia.rest/download)。 ![Postman](../images/postman.png) ### API的结构 API端点是一个可以帮助检索、创建、更新或删除资源的URL。结构如下所示: 示例: https://api.twitter.com/1.1/lists/members.json 返回指定列表的成员。只有当经过身份验证的用户拥有指定列表时,才会显示私人列表成员。 公司名称后跟版本,然后是API的目的。 方法: HTTP方法和URL API使用以下HTTP方法进行对象操作: ```sh GET 用于对象检索 POST 用于对象创建和对象操作 PUT 用于对象更新 DELETE 用于对象删除 ``` 让我们构建一个收集关于30DaysOfPython学生信息的API。我们将收集姓名、国家、城市、出生日期、技能和个人简介。 为了实现这个API,我们将使用: - Postman - Python - Flask - MongoDB ### 使用GET获取数据 在这一步中,让我们使用虚拟数据并将其作为json返回。为了将其作为json返回,我们将使用json模块和Response模块。 ```py # 导入flask from flask import Flask, Response import json app = Flask(__name__) @app.route('/api/v1.0/students', methods = ['GET']) def students (): student_list = [ { 'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'skills':['HTML', 'CSS','JavaScript','Python'] }, { 'name':'David', 'country':'UK', 'city':'London', 'skills':['Python','MongoDB'] }, { 'name':'John', 'country':'Sweden', 'city':'Stockholm', 'skills':['Java','C#'] } ] return Response(json.dumps(student_list), mimetype='application/json') if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 当你在浏览器上请求http://localhost:5000/api/v1.0/students URL时,你将获得以下内容: ![在浏览器上的GET](../images/get_on_browser.png) 当你在Postman上请求http://localhost:5000/api/v1.0/students URL时,你将获得以下内容: ![在Postman上的GET](../images/get_on_postman.png) 我们不再显示虚拟数据,而是将Flask应用程序与MongoDB连接,并从MongoDB数据库获取数据。 ```py # 导入flask from flask import Flask, Response import json import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` 通过连接Flask,我们可以从thirty_days_of_python数据库中获取学生集合数据。 ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8c" }, "name": "David", "country": "UK", "city": "London", "age": 34 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8e" }, "name": "Sami", "country": "Finland", "city": "Helsinki", "age": 25 } ] ``` ### 通过ID获取文档 我们可以使用ID访问单个文档,让我们使用ID访问Asabeneh。 http://localhost:5000/api/v1.0/students/5df68a21f106fe2d315bbc8b ```py # 导入flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 } ] ``` ### 使用POST创建数据 我们使用POST请求方法创建数据 ```py # 导入flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return ; def update_student (id): if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### 使用PUT更新 ```py # 导入flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # 这个装饰器创建主页路由 def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return def update_student (id): if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### 使用Delete删除文档 ```py # 导入flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # 访问数据库 @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # 这个装饰器创建主页路由 def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return ; @app.route('/api/v1.0/students/', methods = ['DELETE']) def delete_student (id): db.students.delete_one({"_id":ObjectId(id)}) return if __name__ == '__main__': # 部署时使用 # 使其在生产和开发环境中都能工作 port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ## 💻 练习:第29天 1. 实现上述示例并开发[这个](https://thirtydayofpython-api.herokuapp.com/) 🎉 恭喜!🎉 [<< 第 28 天](./28_API_cn.md) | [第 30 天 >>](./30_conclusions_cn.md) ================================================ FILE: Chinese/30_conclusions_cn.md ================================================ # 30天Python编程挑战:第30天 - 总结 - [第30天](#第30天) - [总结](#总结) - [感言](#感言) # 第30天 ## 总结 在准备这些材料的过程中,我学到了很多,你们也激励我做得更多。恭喜你达到这个水平。如果你完成了所有的练习和项目,现在你有能力走向数据分析、数据科学、机器学习或网络开发的道路。[支持作者提供更多教育材料](https://www.paypal.com/paypalme/asabeneh)。 ## 感言 现在是时候表达你对作者和30天Python挑战的想法了。你可以在这个[链接](https://www.asabeneh.com/testimonials)上留下你的感言。 提供反馈: http://thirtydayofpython-api.herokuapp.com/feedback 🎉 恭喜!🎉 [<< 第 29 天](./29_building_API_cn.md) ================================================ FILE: Chinese/README.md ================================================ # 🐍 30 天 Python | # 天数 | 主题 | | ------ | :--------------------------------------------------------------------------------------: | | 01 | [介绍](./readme.md) | | 02 | [变量,内置函数](./02_variables_builtin_functions.md) | | 03 | [运算符](./03_operators.md) | | 04 | [字符串](./04_strings.md) | | 05 | [列表](./05_lists.md) | | 06 | [元组](./06_tuples.md) | | 07 | [集合](./07_sets.md) | | 08 | [字典](./08_dictionaries.md) | | 09 | [条件](./09_conditionals.md) | | 10 | [循环](./10_loops.md) | | 11 | [函数](./11_functions.md) | | 12 | [模块](./12_modules.md) | | 13 | [列表解析](./13_list_comprehension.md) | | 14 | [高阶函数](./14_higher_order_functions.md) | | 15 | [类型错误](./15_python_type_errors.md) | | 16 | [Python 日期时间](./16_python_datetime.md) | | 17 | [异常处理](./17_exception_handling.md) | | 18 | [正则表达式](./18_regular_expressions.md) | | 19 | [文件处理](./19_file_handling.md) | | 20 | [包管理器](./20_python_package_manager.md) | | 21 | [类和对象](./21_classes_and_objects.md) | | 22 | [网页抓取](./22_web_scraping.md) | | 23 | [虚拟环境](./23_virtual_environment.md) | | 24 | [统计](./24_statistics.md) | | 25 | [Pandas](./25_pandas.md) | | 26 | [Python 网页](./26_python_web.md) | | 27 | [Python 与 MongoDB](./27_python_with_mongodb.md) | | 28 | [API](./28_API.md) | | 29 | [构建 API](./29_building_API.md) | | 30 | [结论](./30_conclusions.md) | 🧡🧡🧡 快乐编码 🧡🧡🧡
帮助 作者 创作更多教育材料
Paypal Logo

30 天 Python:第 1 天 - 介绍

Twitter Follow 作者: Asabeneh Yetayeh
第二版:2021 年 7 月
[第 2 天 >>](./02_variables_builtin_functions.md) ![30DaysOfPython](.././images/30DaysOfPython_banner3@2x.png) - [🐍 30 天 Python](#-30-天-python) - [📘 第 1 天](#-第-1-天) - [欢迎!](#欢迎) - [介绍](#介绍) - [为什么选择 Python?](#为什么选择-python) - [环境设置](#环境设置) - [安装 Python](#安装-python) - [Python Shell](#python-shell) - [安装 Visual Studio Code](#安装-visual-studio-code) - [如何使用 Visual Studio Code](#如何使用-visual-studio-code) - [Python 基础](#python-基础) - [Python 语法](#python-语法) - [Python 缩进](#python-缩进) - [注释](#注释) - [示例:单行注释](#示例单行注释) - [示例:多行注释,称为文档字符串](#示例多行注释称为文档字符串) - [数据类型](#数据类型) - [数字](#数字) - [字符串](#字符串) - [布尔值](#布尔值) - [列表](#列表) - [字典](#字典) - [元组](#元组) - [集合](#集合) - [检查数据类型](#检查数据类型) - [Python 文件](#python-文件) - [💻 练习 - 第 1 天](#-练习---第-1-天) - [练习:等级 1](#练习等级-1) - [练习:等级 2](#练习等级-2) - [练习:等级 3](#练习等级-3) # 📘 第 1 天 ## 欢迎! **恭喜** 你决定参加 _30 天 Python_ 编程挑战。在这个挑战中,你将学习成为一名 Python 程序员所需的一切以及所有编程概念。挑战结束时,你将获得 _30DaysOfPython_ 编程挑战证书。 如果你想积极参与挑战,可以加入 Telegram 群组 [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython)。 ## 介绍 Python 是一种高级编程语言,适用于通用编程。它是一种开源、解释性和面向对象的编程语言。Python 由荷兰程序员 Guido van Rossum 创建。编程语言 Python 的名称来源于英国喜剧系列 _Monty Python's Flying Circus_。第一个版本于 1991 年 2 月 20 日发布。这个 30 天的 Python 挑战将帮助你逐步学习最新版本的 Python,Python 3。每一天都有不同的主题,包含易于理解的解释、现实世界的示例、大量的实际练习和项目。 本挑战适合初学者和希望学习 Python 编程语言的专业人士。完成挑战可能需要 30 到 100 天,积极参与 Telegram 群组的成员更有可能完成挑战。 本挑战易于阅读,最初以通俗英语编写,并翻译成中文,既具有吸引力、激励性,又具有很高的挑战性。你需要投入大量时间来完成这个挑战。如果你是通过观看学习效果更好的人,可以观看视频教程,访问 Washera YouTube 频道 你可以从 [Python 对绝对初学者的视频](https://youtu.be/OCCWZheOesI) 开始。订阅频道,在 YouTube 视频中评论你的问题,并积极主动,作者最终会注意到你。 作者喜欢听取你对挑战的意见,分享文章并反馈你对 30DaysOfPython 挑战的看法。你可以在此处留下对文章的反馈:[link](https://www.asabeneh.com/testimonials) ## 为什么选择 Python? 它是一种非常接近人类语言的编程语言,语法简单,因此易于学习和使用。 Python 被各行各业和公司(包括 Google)使用。它被用于开发 Web 应用程序、桌面应用程序、系统管理和机器学习库。Python 在数据科学和机器学习社区中被广泛采用。希望这足以说服你开始学习 Python。 ## 环境设置 ### 安装 Python 要运行用 Python 编写的脚本,你需要安装 Python。访问 [Python 下载页面](https://www.python.org/)。 如果你是 Windows 用户。点击红色圈出的按钮。 [![在 Windows 上安装](.././images/installing_on_windows.png)](https://www.python.org/) 如果你是 MacOS 用户。点击红色圈出的按钮。 [![在 MacOS 上安装](.././images/installing_on_macOS.png)](https://www.python.org/) 要检查是否安装了 Python,请在设备的终端中输入以下命令。 ```shell python --version ``` ![Python Version](../images/python_versio.png) 如你所见,在终端中,我当前使用的版本是 Python 3.7.5。你的 Python 版本可能与我的不同,但应为 3.6 或更高版本。如果你能看到 Python 版本,很好。Python 已安装在你的机器上。继续下一部分。 ### Python Shell Python 是一种解释型脚本语言,因此不需要编译。这意味着它逐行执行代码。Python 附带一个 Python Shell (Python 交互式 Shell),也称为 REPL (Read Eval Print Loop)。它用于执行单个 Python 命令并获得结果。 Python Shell 等待用户的 Python 代码。当输入代码时,它会解释并显示结果。 打开终端或命令提示符 (cmd) 并输入: ```shell python ``` ![Python Scripting Shell](../images/opening_python_shell.png) Python 交互式 Shell 已打开,等待你在该符号 >>> 旁边编写 Python 代码(Python 脚本)。编写第一个脚本并点击 Enter。 让我们在 Python 脚本 Shell 中编写第一个脚本。 ![Python script on Python shell](../images/adding_on_python_shell.png) 非常好,你已经在 Python 交互式 Shell 中编写了第一个 Python 脚本。如何关闭 Python 交互式 Shell? 要关闭 Shell,请在该符号 >>> 旁边输入命令 **exit()** 并按 Enter。 ![Exit from python shell](../images/exit_from_shell.png) 现在你知道如何打开 Python 交互式 Shell 以及如何退出它。 Python 将在你编写 Python 可理解的脚本时提供结果;否则,它将返回错误。让我们故意犯一个错误,看看 Python 返回什么。 ![Invalid Syntax Error](../images/invalid_syntax_error.png) 如你所见,返回的错误表明 Python 非常智能,它知道我们犯了语法错误:Syntax Error: Invalid Syntax。在 Python 中使用 x 作为乘法是语法错误,因为 (x) 不是 Python 中的有效语法。我们用星号 (\*) 来表示乘法而不是 (x)。返回的错误明确显示了需要修正的地方。 识别和删除程序中的错误的过程称为调试。让我们通过将 \* 替换为 x 来调试它。 ![Fixing Syntax Error](../images/fixing_syntax_error.png) 我们的错误已修复,代码已执行,并得到了我们期望的结果。作为程序员,你每天都会看到这种类型的错误。了解如何调试是很重要的。为了擅长调试,你必须了解所遇到的错误类型。你可能会遇到的 Python 错误类型有 _SyntaxError_, _IndexError_, _NameError_, _ModuleNotFoundError_, _KeyError_, _ImportError_, _AttributeError_, _TypeError_, _ValueError_, _ZeroDivisionError_ 等等。我们将在后面的部分详细了解不同类型的 Python 错误! 让我们更多地练习如何使用 Python 交互式 Shell。转到终端或命令提示符并输入单词 python。 ![Python Scripting Shell](../images/opening_python_shell.png) Python 交互式 Shell 已打开。让我们做一些基本的数学运算(加法、减法、乘法、除法、取模、指数运算)。 在编写任何 Python 代码之前,让我们做一些数学运算: - 2 + 3 是 5 - 3 - 2 是 1 - 3 \* 2 是 6 - 3 / 2 是 1.5 - 3 \*_ 2 相当于 3 _ 3 在 Python 中,我们有以下附加运算: - 3 % 2 = 1 => 这意味着找到余数或(除法的模数) - 3 // 2 = 1 => 这意味着删除除法的余数 让我们将上述数学表达式转换为 Python 代码。已打开 Python Shell,让我们在 Shell 的开头编写一个注释。 A _comment_ 是代码中未被 Python 执行的一部分,注释被 Python 解释器忽略。因此,我们可以在代码中留下某些文本以提高其可读性。Python 不执行注释部分。Python 中的注释以井号 (#) 符号开头。 这就是你在 Python 中编写注释的方式: ```python # 注释以井号开头 # 这是一个python注释,因为它以(#)符号开头 ``` ![Maths on python shell](../images/maths_on_python_shell.png) 在进入下一部分之前,让我们更多地练习 Python 交互式 Shell。通过在 Shell 中输入 _exit()_ 关闭已打开的 Shell,然后再次打开它,让我们练习如何在 Python Shell 中编写文本。 ![Writing String on python shell](./images/writing_string_on_shell.png) ### 安装 Visual Studio Code Python 交互式 Shell 非常适合测试小的脚本代码,但对于大型项目来说并不适用。在实际的工作环境中,开发人员使用不同的代码编辑器来编写代码。在这个 30 天的 Python 编程挑战中,我们将使用 Visual Studio Code。Visual Studio Code 是一个非常流行的开源文本编辑器。我是 vscode 的粉丝,并推荐下载 Visual Studio Code,但如果你喜欢其他编辑器,可以随意使用。 [![Visual Studio Code](../images/vscode.png)](https://code.visualstudio.com/) 如果你已安装 Visual Studio Code,让我们看看如何使用它。 如果你喜欢视频教程,你可以观看安装和配置 Visual Studio Code 以用于 Python 的[视频教程](https://www.youtube.com/watch?v=bn7Cx4z-vSo) #### 如何使用 Visual Studio Code 通过双击 Visual Studio 图标打开 Visual Studio Code。打开后,你会看到类似的界面。尝试与标注的图标进行交互。 ![Visual studio Code](../images/vscode_ui.png) 在桌面上创建一个名为 30DaysOfPython 的文件夹。然后使用 Visual Studio Code 打开它。 ![Opening Project on Visual studio](../images/how_to_open_project_on_vscode.png) ![Opening a project](../images/opening_project.png) 打开后,你会看到在 30DaysOfPython 项目目录中创建文件和文件夹的快捷方式。如下所示,我创建了第一个文件 helloworld.py。你也可以这样做。 ![Creating a python file](../images/helloworld.png) 经过长时间的编码,你想关闭你的代码编辑器,对吗?这是你关闭已打开项目的方法。 ![Closing project](../images/closing_opened_project.png) 恭喜你,完成了开发环境的设置。让我们开始编码。 ## Python 基础 ### Python 语法 Python 脚本可以在 Python 交互式 Shell 或代码编辑器中编写。Python 文件的扩展名为 .py。 ### Python 缩进 缩进是文本中的空白。在许多语言中,缩进用于提高代码的可读性,但 Python 使用缩进来创建代码块。在其他编程语言中,使用大括号来创建代码块,而不是缩进。在 Python 中编写代码时,一个常见的错误是缩进错误。 ![Indentation Error](../images/indentation.png) ### 注释 注释对于提高代码的可读性和在代码中留下注释非常重要。Python 不执行代码中的注释部分。 在 Python 中,任何以井号 (#) 开头的文本都是注释。 # 示例:单行注释 ```shell # 这是第一个注释 # 这是第二个注释 # Python 正在吞噬世界 ``` # 示例:多行注释,称为文档字符串 三重引号可以用于多行注释,如果它没有被分配给变量。 ```shell """这是多行注释 多行注释占用多行。 Python 正在吞噬世界 """ ``` ### 数据类型 Python 中有多种数据类型。让我们从最常见的开始。不同的数据类型将在其他部分详细讨论。现在,让我们浏览一下不同的数据类型并熟悉它们。你现在不需要有明确的理解。 #### 数字 - 整数:它被认为是整数(负数、零和正数) 示例: ... -3, -2, -1, 0, 1, 2, 3 ... - 浮点数:小数 示例: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - 复数 示例: 1 + j, 2 + 4j #### 字符串 一串字符组成的文本,使用单引号或双引号表示。如果字符串超过一行,可以使用三引号。 **例子:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### 布尔值 布尔值是 True 或 False。T 和 F 必须大写。 **例子:** ```python True # 灯是开的吗?如果是开着的,那么值是 True False # 灯是开的吗?如果是关着的,那么值是 False ``` #### 列表 列表是一个有序的集合,可以存储不同类型的数据。类似于 JavaScript 中的数组。 **例子:** ```py [0, 1, 2, 3, 4, 5] # 所有都是相同数据类型 - 数字列表 ['Banana', 'Orange', 'Mango', 'Avocado'] # 所有都是相同数据类型 - 字符串列表(水果) ['Finland','Estonia', 'Sweden','Norway'] # 所有都是相同数据类型 - 字符串列表(国家) ['Banana', 10, False, 9.81] # 列表中的不同数据类型 - 字符串、整数、布尔值和浮点数 ``` #### 字典 Python 字典对象是以键值对格式存储的无序集合。 **例子:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### 元组 元组是一个有序的集合,类似于列表,但元组一旦创建就不能修改。它们是不可变的。 **例子:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # 名字 ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # 行星 ``` #### 集合 集合是类似于列表和元组的集合数据类型。与列表和元组不同,集合不是一个有序的集合。就像在数学中一样,Python 中的集合只存储唯一的项目。 在后面的部分,我们将详细介绍每种 Python 数据类型。 **例子:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # 集合中的顺序不重要 ``` ### 检查数据类型 要检查某个数据/变量的数据类型,我们使用 **type** 函数。在以下终端中,你将看到不同的 Python 数据类型: ![Checking Data types](../images/checking_data_types.png) ### Python 文件 首先打开你的项目文件夹,30DaysOfPython。如果你没有这个文件夹,创建一个名为 30DaysOfPython 的文件夹。在这个文件夹内,创建一个名为 helloworld.py 的文件。现在,让我们在 Visual Studio Code 中做我们在 Python 交互式 Shell 中所做的事情。 Python 交互式 Shell 在不使用 **print** 的情况下打印,但在 Visual Studio Code 中,为了查看我们的结果,我们应该使用内置函数 _print()_。_print()_ 内置函数接受一个或多个参数,如下所示 _print('arument1', 'argument2', 'argument3')_。请参见以下示例。 **例子:** ​ 文件名是 helloworld.py ```py # 第 1 天 - 30DaysOfPython 挑战 print(2 + 3) # 加法(+) print(3 - 1) # 减法(-) print(2 * 3) # 乘法(*) print(3 / 2) # 除法(/) print(3 ** 2) # 指数(**) print(3 % 2) # 取模(%) print(3 // 2) # 整除(//) # 检查数据类型 print(type(10)) # 整数 print(type(3.14)) # 浮点数 print(type(1 + 3j)) # 复数 print(type('Asabeneh')) # 字符串 print(type([1, 2, 3])) # 列表 print(type({'name':'Asabeneh'})) # 字典 print(type({9.8, 3.14, 2.7})) # 集合 print(type((9.8, 3.14, 2.7))) # 元组 ``` 要运行 Python 文件,请查看下图。你可以通过在 Visual Studio Code 中点击绿色按钮或在终端中输入 _python helloworld.py_ 来运行 Python 文件。 ![Running python script](../images/running_python_script.png) 🌕 你很棒。你刚刚完成了第 1 天的挑战,你正在迈向伟大。现在做一些练习来锻练你的大脑和肌肉。 ## 💻 练习 - 第 1 天 ### 练习:等级 1 1. 检查你使用的 Python 版本 2. 打开 Python 交互式 Shell 并执行以下操作。操作数是 3 和 4。 - 加法(+) - 减法(-) - 乘法(\*) - 取模(%) - 除法(/) - 指数(\*\*) - 整除(//) 3. 在 Python 交互式 Shell 中编写字符串。字符串如下: - 你的名字 - 你的姓氏 - 你的国家 - 我正在享受 30 天的 Python 4. 检查以下数据的数据类型: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - 你的名字 - 你的姓氏 - 你的国家 ### 练习:等级 2 1. 在 30DaysOfPython 文件夹中创建一个名为 day*1 的文件夹。在 day_1 文件夹中,创建一个名为 helloworld.py 的 Python 文件,并重复问题 1、2、3 和 4。记住在处理 Python 文件时使用 \_print()*。导航到你保存文件的目录,并运行它。 ### 练习:等级 3 1. 为不同的 Python 数据类型编写一个示例,如数字(整数、浮点数、复数)、字符串、布尔值、列表、元组、集合和字典。 2. 找到 (2, 3) 和 (10, 8) 之间的 [欧几里得距离](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance)。 🎉 恭喜 ! 🎉 [第 2 天 >>](./02_variables_builtin_functions.md) ================================================ FILE: Korean/02_Day_Variables_builtin_functions/02_variables_builtin_functions.md ================================================

30 Days Of Python: Day 2 - 변수, 내장 함수

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 1](../readme.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ![30DaysOfPython](../../images/30DaysOfPython_banner3@2x.png) - [📘 Day 2](#-day-2) - [내장 함수](#내장-함수) - [변수](#변수) - [한 줄로 여러개의 변수 선언](#한-줄로-여러개의-변수-선언) - [자료형](#자료형) - [자료형 확인 및 형변환](#자료형-확인-및-형변환) - [숫자](#숫자) - [💻 Exercises - Day 2](#-exercises---day-2) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) # 📘 Day 2 ## 내장 함수 파이썬에는 수많은 내장 함수가 있습니다. 내장 함수는 전역에서 사용 가능하고 그건 importing 이나 configuring없이 내장 함수를 사용 가능하다는 뜻입니다. 다음은 가장 자주 사용되는 파이썬 내장함수들 중 몇가지입니다: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_, and _dir()_. 밑의 표에서 [파이썬 공식문서](https://docs.python.org/3.9/library/functions.html) 에 쓰여진 파이썬 내장 함수의 전체 목록을 볼 수 있습니다. ![Built-in Functions](../../images/builtin-functions.png) 파이썬 쉘을 열고 가장 자주 사용되는 내장 함수를 사용해봅시다. ![Built-in functions](../../images/builtin-functions_practice.png) 다른 내장 함수를 사용해 더 연습해봅시다. ![Help and Dir Built in Functions](../../images/help_and_dir_builtin.png) 위의 터미널에서 볼 수 있듯이, 파이썬에는 reserved word가 있습니다. reserved word는 변수나 함수를 선언할때 사용되지 않습니다. 변수에 관해서는 다음 장에서 다룰것입니다. 이제 당신은 내장 함수에 익숙해졌을 것이라 믿습니다. 한번 더 내장 함수의 연습을 하고 다음 장으로 넘어갑시다. ![Min Max Sum](../../images/builtin-functional-final.png) ## 변수 변수는 컴퓨터 메모리에 정보를 저장합니다. Mnemonic 변수는 많은 프로그래밍 언어에서 사용하도록 권장됩니다. Mnemonic 변수는 쉽게 기억하고 연관지을 수 있는 변수 이름입니다. 한 변수는 정보가 저장되어있는 메모리 주소를 참조합니다. 변수 이름을 지정할 때는 시작 부분의 숫자, 특수 문자, 하이픈을 사용할 수 없습니다. 변수는 짧은 이름(예: x, y, z)을 가질 수 있지만 더 변수에 대한 설명을 담은 이름(이름, 성, 나이, 국가)을 사용하는 것을 추천합니다. 파이썬 변수 이름 규칙 - 변수 이름은 문자 또는 밑줄 문자로 시작해야 합니다 - 변수 이름은 숫자로 시작할 수 없습니다 - 변수 이름에는 알파벳과 숫자와 밑줄(A-z, 0-9 및 \_)만 사용할 수 있습니다 - 변수 이름은 대소문자를 구분합니다(firstname, Firstname, FirstName, FIRSTNAME은 서로 다른 변수) 사용가능한 변수 이름들을 살펴봅시다 ```shell firstname lastname age country city first_name last_name capital_city _if # reserved word를 변수 이름으로 사용하고 싶은 경우 year_2021 year2021 current_year_2021 birth_year num1 num2 ``` 사용할 수 없는 변수 이름들 ```shell first-name first@name first$name num-1 1num ``` 우리는 많은 파이썬 개발자들이 채택한 표준 파이썬 변수 명명 방식을 사용할 것입니다. 파이썬 개발자들은 스네이크 케이스(snake_case) 변수 명명 규칙을 사용합니다. 우리는 두 개 이상의 단어를 포함하는 변수에 대해 각 단어 뒤에 밑줄 문자를 사용합니다(예: first_name, last_name, engine_rotation_speed). 아래 예제는 변수의 표준 명명 예제이며, 변수 이름이 둘 이상의 단어일 경우 밑줄이 필요합니다. 변수에 특정 데이터 유형을 할당할 때 이를 변수 선언이라고 합니다. 예를 들어 아래 예제에서 내 이름은 first_name 변수에 할당됩니다. 등호 기호는 할당 연산자입니다. 할당은 변수에 데이터를 저장하는 것을 의미합니다. 파이썬에서 등호 기호는 수학에서의 등호가 아닙니다. _Example:_ ```py # Variables in Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` 내장 함수인 _print()_ 와 _len()_ 을 사용해봅시다. Print 함수는 인자의 수에 제한이 없습니다. 인자는 함수 괄호 안에 넣어 전달할 수 있는 값입니다. 아래 예제를 봅시다. **Example:** ```py print('Hello, World!') # Hello, World! 라는 글이 하나의 인자입니다 print('Hello',',', 'World','!') # 여러개의 인자를 받을 수 있습니다, 네개의 인자가 넘겨졌습니다 print(len('Hello, World!')) # 하나의 인자만을 받습니다 ``` 위에서 정의된 변수들을 찍어보고 길이를 찾아봅시다: **Example:** ```py # 변수에 저장된 값 찍기 print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### 한 줄로 여러개의 변수 선언 하나의 줄에서 여러개의 변수를 선언할 수도 있습니다: **Example:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` 내장 함수 _input()_ 을 사용해 사용자의 입력 받기. 사용자로부터 받은 정보를 first_name과 age 변수에 할당해봅시다. **Example:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## 자료형 파이썬에는 몇 가지 자료형이 있습니다. 자료형을 식별하기 위해 내장 함수 _type()_ 을 사용합니다. 서로 다른 자료형을 잘 이해하는 데 집중해 주시기를 부탁드립니다. 프로그래밍에서 모든것은 자료형과 관련이 있습니다. 처음에 자료형을 소개했지만 모든 주제가 자료형과 관련이 있기 때문에 다시 나옵니다. 자료형에 대해서는 각 섹션에서 자세히 설명하겠습니다. ## 자료형 확인 및 형변환 - 자료형 확인: 특정 정보/변수의 자료형을 확인하기위해 우리는 _type()_ 을 사용합니다 **Example:** ```py # 다양한 파이썬 자료형 # 다양한 자료형의 변수들을 선언해 봅시다. first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, 제 실제 나이가 아닙니다, 걱정마세요 # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - 형변환: 하나의 자료형을 다른 자료형으로 변환합니다. _int()_, _float()_, _str()_, _list_, _set_ 를 사용합니다. 산술 연산을 수행할 때 문자열 숫자들을 먼저 int 나 float로 변환해야 합니다. 그렇지 않으면 오류가 반환됩니다. 만약 숫자를 문자열과 결합한다면, 그 숫자는 먼저 문자열로 변환되어야 합니다. 결합에 대해서는 String 섹션에서 설명하겠습니다. **Example:** ```py # int to float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # float to int gravity = 9.81 print(int(gravity)) # 9 # int to str num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # str to int or float num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # str to list first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## 숫자 파이썬의 숫자 자료형: 1. Integers: 정수(음수, 0 , 양수) 예: ... -3, -2, -1, 0, 1, 2, 3 ... 2. 부동 소수점 숫자(10진수) 예: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... 3. 복소수 예: 1 + j, 2 + 4j, 1 - 1j 🌕 당신은 정말 멋집니다. 여러분은 이제 막 2일차 도전을 마쳤고 위대함으로 가는 길에 두 걸음 앞서 있습니다. 이제 여러분의 뇌와 근육을 위한 운동을 하세요. ## 💻 Exercises - Day 2 ### Exercises: Level 1 1. 30DaysOfPython 내에 day_2라는 폴더를 생성하세요. 그 폴더 내에 variables.py 라는 파일을 생성하세요. 2. 'Day 2: 30 Days of python programming'이라는 파이썬 주석을 작성합니다. 3. first name 변수를 선언하고 변수에 값을 할당합니다. 4. last name 변수를 선언하고 변수에 값을 할당합니다. 5. full name 변수를 선언하고 변수에 값을 할당합니다. 6. country 변수를 선언하고 값을 할당합니다. 7. city 변수를 선언하고 값을 할당합니다. 8. age 변수를 선언하고 값을 할당합니다. 9. year 변수를 선언하고 값을 할당합니다. 10. is_married 변수를 선언하고 값을 할당합니다. 11. is_true 변수를 선언하고 값을 할당합니다. 12. is_light_on 변수를 선언하고 값을 할당합니다. 13. 한 줄에 여러개의 변수를 선언합니다. ### Exercises: Level 2 1. Check the data type of all your variables using type() built-in function 1. Using the _len()_ built-in function, find the length of your first name 1. Compare the length of your first name and your last name 1. Declare 5 as num_one and 4 as num_two 1. Add num_one and num_two and assign the value to a variable total 2. Subtract num_two from num_one and assign the value to a variable diff 3. Multiply num_two and num_one and assign the value to a variable product 4. Divide num_one by num_two and assign the value to a variable division 5. Use modulus division to find num_two divided by num_one and assign the value to a variable remainder 6. Calculate num_one to the power of num_two and assign the value to a variable exp 7. Find floor division of num_one by num_two and assign the value to a variable floor_division 1. The radius of a circle is 30 meters. 1. Calculate the area of a circle and assign the value to a variable name of _area_of_circle_ 2. Calculate the circumference of a circle and assign the value to a variable name of _circum_of_circle_ 3. Take radius as user input and calculate the area. 1. Use the built-in input function to get first name, last name, country and age from a user and store the value to their corresponding variable names 1. Run help('keywords') in Python shell or in your file to check for the Python reserved words or keywords 1. type() 내장 함수를 사용하여 모든 변수의 자료형을 확인합니다. 1. _len()_ 내장 함수를 사용하여 당신의 first name 의 길이를 찾습니다. 1. 당신의 first name 과 last name 의 길이를 비교합니다. 1. 5를 num_1로, 4를 num_2로 선언합니다. 1. num_one과 num_two를 더하고 그 값을 변수 total 에 할당합니다. 2. num_1에서 num_2를 빼고 그 값을 변수 diff 에 할당합니다. 3. num_two와 num_one을 곱하여 그 값을 변수 product 에 할당합니다. 4. num_one을 num_two로 나누고 그 값을 변수 division 에 할당합니다. 5. 나머지 연산을 사용하여 num_two를 num_one으로 나눈 값을 찾고 변수 remainder 에 할당합니다. 6. num_one을 num_two의 거듭제곱으로 계산하고 그 값을 변수 exp 에 할당합니다. 7. num_one을 num_two로 나누고 소숫값은 버린 정수 값을 구하고 변수 floor_division 에 값을 할당합니다. 1. 원의 반지름은 30미터입니다. 1. 원의 면적을 계산하여 _area_of_circle_ 이라는 이름의 변수에 값을 할당합니다. 2. 원의 둘레를 계산하여 _circum_of_circum_ 이라는 이름의 변수에 값을 할당합니다. 3. 반경을 사용자 입력으로 받아서 면적을 계산합니다. 1. 내장 함수 input을 사용하여 사용자로부터 이름, 성, 국가 및 나이를 얻고 해당 변수 이름에 값을 저장합니다. 1. Python 셸 또는 파일에서 help('keywords')을 실행하여 파이썬의 reserved words 또는 키워드를 확인합니다. 🎉 축하합니다 ! 🎉 [<< Day 1](../readme.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ================================================ FILE: Korean/04_strings_ko.md ================================================

30 Days Of Python: Day 4 - Strings

Twitter Follow

Author: Asabeneh Yetayeh
Second Edition: July, 2021

[<< Day 3](../03_Day_Operators/03_operators.md) | [Day 5 >>](../05_Day_Lists/05_lists.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Day 4](#day-4) - [문자열](#strings) - [문자열 만들기](#문자열-만들기) - [문자열 연결](#문자열-연결) - [문자열의 이스케이프 시퀀스](#문자열의-이스케이프-시퀀스) - [문자열 포매팅](#문자열-포매팅) - [올드 스타일 문자열 포매팅(% 연산자)](#올드-스타일-문자열-포매팅%-연산자) - [새로운 스타일 문자열 포매팅(str.format)](#새로운-스타일-문자열-포매팅str.format) - [문자열 Interpolation / f-Strings (Python 3.6+)](#string-interpolation--f-strings-python-36) - [문자 시퀀스로서의 Python 문자열](#문자-시퀀스로서의-Python-문자열) - [언패킹 문자](#언패킹-문자) - [인덱스로 문자열의 문자에 액세스](#인덱스로-문자열의-문자에-액세스) - [파이썬 문자열 슬라이싱](#파이썬-문자열-슬라이싱) - [문자열 리버스](#문자열-리버스) - [슬라이싱하는 동안 문자 건너뛰기](#슬라이싱하는-동안-문자-건너뛰기) - [문자열 메서드](#문자열-메서드) - [💻 Exercises - Day 4](#-exercises---day-4) # Day 4 ## 문자열 텍스트는 문자열 데이터 유형입니다. 텍스트로 작성된 모든 데이터 유형은 문자열입니다. 작은따옴표, 큰따옴표 또는 삼중따옴표 아래의 모든 데이터는 문자열입니다. 문자열 데이터 유형을 처리하기 위한 다양한 문자열 메서드와 내장 함수가 있습니다. 문자열의 길이를 확인하려면 len() 메서드를 사용하십시오. ### 문자열 만들기 ```py letter = 'P' # A string could be a single character or a bunch of texts print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # String could be made using a single or double quote,"Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of Python Challenge" print(sentence) ``` 여러 줄 문자열은 세 개의 작은따옴표(''') 또는 세 개의 큰따옴표(""")를 사용하여 생성됩니다. 아래 예를 참조하십시오. ```py multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # Another way of doing the same thing multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) ``` ### 문자열 연결 문자열을 함께 연결할 수 있습니다. 문자열을 병합하거나 연결하는 것을 연결이라고 합니다. 아래 예를 참조하십시오. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # Checking the length of a string using len() built-in function print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 16 ``` ### 문자열의 이스케이프 시퀀스 Python 및 기타 프로그래밍 언어에서 \ 다음에 오는 문자는 이스케이프 시퀀스입니다. 가장 일반적인 이스케이프 문자를 살펴보겠습니다. - \n: 새로운 라인 - \t: 탭은(8칸)을 의미합니다. - \\: 백슬래시 - \': 작은따옴표(') - \": 큰따옴표(") 이제 위의 이스케이프 시퀀스를 예제와 함께 사용하는 방법을 살펴보겠습니다. ```py print('I hope everyone is enjoying the Python Challenge.\nAre you ?') # line break print('Days\tTopics\tExercises') # adding tab space or 4 spaces print('Day 1\t3\t5') print('Day 2\t3\t5') print('Day 3\t3\t5') print('Day 4\t3\t5') print('This is a backslash symbol (\\)') # To write a backslash print('In every programming language it starts with \"Hello, World!\"') # to write a double quote inside a single quote # output I hope every one is enjoying the Python Challenge. Are you ? Days Topics Exercises Day 1 5 5 Day 2 6 20 Day 3 5 23 Day 4 1 35 This is a backslash symbol (\) In every programming language it starts with "Hello, World!" ``` ### 문자열 포매팅 #### 올드 스타일 문자열 형식화(% 연산자) Python에는 문자열 형식을 지정하는 여러 가지 방법이 있습니다. 이 섹션에서는 그 중 일부를 다룰 것입니다. "%" 연산자는 "인수 지정자", "%s"와 같은 특수 기호와 함께 일반 텍스트를 포함하는 형식 문자열과 함께 "튜플"(고정 크기 목록)로 묶인 변수 세트의 형식을 지정하는 데 사용됩니다. , "%d", "%f", "%. 자릿수 f". - %s - 문자열(또는 숫자와 같은 문자열 표현이 있는 모든 객체) - %d - 정수 - %f - 부동 소수점 숫자 - "%. number of digits f" - 정밀도가 고정된 부동 소수점 숫자 ```py # Strings only first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am %s %s. I teach %s' %(first_name, last_name, language) print(formated_string) # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of circle with a radius %d is %.2f.' %(radius, area) # 2 refers the 2 significant digits after the point python_libraries = ['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas'] formated_string = 'The following are python libraries:%s' % (python_libraries) print(formated_string) # "The following are python libraries:['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas']" ``` #### 새로운스타일 문자열 형식화(str.format) 이 형식은 Python 버전 3에서 도입되었습니다. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am {} {}. I teach {}'.format(first_name, last_name, language) print(formated_string) a = 4 b = 3 print('{} + {} = {}'.format(a, b, a + b)) print('{} - {} = {}'.format(a, b, a - b)) print('{} * {} = {}'.format(a, b, a * b)) print('{} / {} = {:.2f}'.format(a, b, a / b)) # limits it to two digits after decimal print('{} % {} = {}'.format(a, b, a % b)) print('{} // {} = {}'.format(a, b, a // b)) print('{} ** {} = {}'.format(a, b, a ** b)) # output 4 + 3 = 7 4 - 3 = 1 4 * 3 = 12 4 / 3 = 1.33 4 % 3 = 1 4 // 3 = 1 4 ** 3 = 64 # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of a circle with a radius {} is {:.2f}.'.format(radius, area) # 2 digits after decimal print(formated_string) ``` #### 문자열 Interpolation / f-Strings (Python 3.6+) 또 다른 새로운 문자열 형식화는 문자열 보간법인 f-문자열입니다. 문자열은 f로 시작하고 해당 위치에 데이터를 주입할 수 있습니다. ```py a = 4 b = 3 print(f'{a} + {b} = {a +b}') print(f'{a} - {b} = {a - b}') print(f'{a} * {b} = {a * b}') print(f'{a} / {b} = {a / b:.2f}') print(f'{a} % {b} = {a % b}') print(f'{a} // {b} = {a // b}') print(f'{a} ** {b} = {a ** b}') ``` ### 문자 시퀀스로서의 Python 문자열 Python 문자열은 문자 시퀀스이며, 기본 액세스 방법을 다른 Python 순서 객체 시퀀스(목록 및 튜플)와 공유합니다. 문자열(및 모든 시퀀스의 개별 멤버)에서 단일 문자를 추출하는 가장 간단한 방법은 해당 변수로 압축을 푸는 것입니다. #### 언패킹 문자 ``` language = 'Python' a,b,c,d,e,f = language # unpacking sequence characters into variables print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n ``` #### 인덱스로 문자열의 문자에 액세스 프로그래밍에서 카운팅은 0부터 시작합니다. 따라서 문자열의 첫 번째 문자는 인덱스가 0이고 문자열의 마지막 문자는 문자열의 길이에서 1을 뺀 값입니다. ![String index](../images/string_index.png) ```py language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n ``` 오른쪽 끝에서 시작하려면 음수 인덱싱을 사용할 수 있습니다. -1은 마지막 인덱스입니다. ```py language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o ``` #### 파이썬 문자열 슬라이싱 파이썬에서는 문자열을 하위 문자열로 슬라이스할 수 있습니다. ```py language = 'Python' first_three = language[0:3] # starts at zero index and up to 3 but not include 3 print(first_three) #Pyt last_three = language[3:6] print(last_three) # hon # Another way last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon ``` #### 문자열 리버스 파이썬에서 문자열을 쉽게 뒤집을 수 있습니다. ```py greeting = 'Hello, World!' print(greeting[::-1]) # !dlroW ,olleH ``` #### 슬라이싱하는 동안 문자 건너뛰기 슬라이스 메소드에 단계 인수를 전달하여 슬라이스하는 동안 문자를 건너뛸 수 있습니다. ```py language = 'Python' pto = language[0:6:2] # print(pto) # Pto ``` ### 문자열 메서드 문자열을 형식화할 수 있는 많은 문자열 메서드가 있습니다. 다음 예제에서 일부 문자열 메서드를 참조하십시오. - capitalize(): 문자열의 첫 번째 문자를 대문자로 변환 ```py challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' ``` - count(): 문자열에서 하위 문자열의 발생을 반환합니다. count(substring, start=.., end=..). 시작은 카운트를 위한 시작 인덱싱이고 끝은 카운트할 마지막 인덱스입니다. ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1, print(challenge.count('th')) # 2` ``` - endswith(): 문자열이 지정된 끝으로 끝나는지 확인합니다. ```py challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False ``` - expandtabs(): 탭 문자를 공백으로 바꿉니다. 기본 탭 크기는 8입니다. 탭 크기 인수를 사용합니다. ```py challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' ``` - find(): 하위 문자열이 처음 나타나는 인덱스를 반환합니다. 찾을 수 없으면 -1을 반환합니다. ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1, print(challenge.count('th')) # 2` ``` - rfind(): 하위 문자열이 마지막으로 나타나는 인덱스를 반환합니다. 찾을 수 없으면 -1을 반환합니다. ```py challenge = 'thirty days of python' print(challenge.rfind('y')) # 5 print(challenge.rfind('th')) # 1 ``` - format(): 문자열을 더 나은 출력으로 포맷합니다.
문자열 형식에 대한 자세한 내용은 이 [링크](https://www.programiz.com/python-programming/methods/string/format) 를 확인하세요. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' age = 250 job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I am {} years old. I live in {}.'.format(first_name, last_name, age, job, country) print(sentence) # I am Asabeneh Yetayeh. I am 250 years old. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi * radius ** 2 result = 'The area of a circle with radius {} is {}'.format(str(radius), str(area)) print(result) # The area of a circle with radius 10 is 314 ``` - index(): 하위 문자열의 가장 낮은 색인을 반환하고 추가 인수는 시작 및 끝 색인을 나타냅니다(기본값 0 및 문자열 길이 - 1). 하위 문자열을 찾을 수 없으면 valueError가 발생합니다. ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.index(sub_string)) # 7 print(challenge.index(sub_string, 9)) # error ``` - rindex(): 하위 문자열의 가장 높은 색인을 반환합니다. 추가 인수는 시작 및 끝 색인을 나타냅니다(기본값 0 및 문자열 길이 - 1). ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.rindex(sub_string)) # 8 print(challenge.rindex(sub_string, 9)) # error ``` - isalnum(): 영숫자 확인 ```py challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False, space is not an alphanumeric character challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False ``` - isalpha(): 모든 문자열 요소가 알파벳 문자(az 및 AZ)인지 확인합니다. ```py challenge = 'thirty days of python' print(challenge.isalpha()) # False, space is once again excluded challenge = 'ThirtyDaysPython' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False ``` - isdecimal(): 문자열의 모든 문자가 십진수(0-9)인지 확인합니다. ```py challenge = 'thirty days of python' print(challenge.isdecimal()) # False challenge = '123' print(challenge.isdecimal()) # True challenge = '\u00B2' print(challenge.isdigit()) # False challenge = '12 3' print(challenge.isdecimal()) # False, space not allowed ``` - isdigit(): 문자열의 모든 문자가 숫자인지 확인합니다(숫자는 0-9 및 일부 다른 유니코드 문자). ```py challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.isdigit()) # True challenge = '\u00B2' print(challenge.isdigit()) # True ``` - isnumeric(): 문자열의 모든 문자가 숫자인지 또는 숫자와 관련된 것인지 확인합니다(isdigit()와 마찬가지로 ½과 같은 더 많은 기호를 허용합니다). ```py num = '10' print(num.isnumeric()) # True num = '\u00BD' # ½ print(num.isnumeric()) # True num = '10.5' print(num.isnumeric()) # False ``` - isidentifier(): 유효한 식별자를 확인합니다. 문자열이 유효한 변수 이름인지 확인합니다. ```py challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, because it starts with a number challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True ``` - islower(): 문자열의 모든 알파벳 문자가 소문자인지 확인 ```py challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False ``` - islower(): 문자열의 모든 알파벳 문자가 소문자인지 확인 ```py challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True ``` - join(): 연결된 문자열을 반환합니다. ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = ' '.join(web_tech) print(result) # 'HTML CSS JavaScript React' ``` ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '# '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' ``` - strip(): 문자열의 시작과 끝에서 시작하여 주어진 모든 문자를 제거합니다. ```py challenge = 'thirty days of pythoonnn' print(challenge.strip('noth')) # 'irty days of py' ``` - replace(): 하위 문자열을 주어진 문자열로 대체합니다. ```py challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' ``` - split(): 주어진 문자열 또는 공백을 구분 기호로 사용하여 문자열을 분할합니다. ```py challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] challenge = 'thirty, days, of, python' print(challenge.split(', ')) # ['thirty', 'days', 'of', 'python'] ``` - title(): 제목 케이스 문자열을 반환합니다. ```py challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python ``` - swapcase(): 모든 대문자를 소문자로, 모든 소문자를 대문자로 변환 ```py challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON ``` - startswith(): 문자열이 지정된 문자열로 시작하는지 확인 ```py challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False ``` 🌕 당신은 특별한 사람이고 놀라운 잠재력을 가지고 있습니다. 당신은 방금 4일 차 도전을 완료했고 당신은 위대함을 향한 당신의 길에 4걸음 남았습니다. 이제 뇌와 근육을 위한 몇 가지 훈련을 하십시오. ## 💻 Exercises - Day 4 1. 문자열 'Thirty', 'Days', 'Of', 'Python'을 단일 문자열 'Thirty Days Of Python'에 연결합니다. 2. 문자열 'Coding', 'For' , 'All'을 단일 문자열 'Coding For All'에 연결합니다. 3. company라는 변수를 선언하고 초기 값 "Coding For All"에 할당합니다. 4. *print()* 를 사용하여 회사 변수를 인쇄합니다. 5. *len()* 메서드와 *print()* 를 사용하여 회사 문자열의 길이를 인쇄합니다. 6. *upper()* 메서드를 사용하여 모든 문자를 대문자로 변경합니다. 7. *lower()* 메서드를 사용하여 모든 문자를 소문자로 변경합니다. 8. 문자열 *Coding For All* 의 값을 형식화하려면 capitalize(), title(), swapcase() 메소드를 사용하십시오. 9. *Coding For All* 문자열의 첫 번째 단어를 잘라냅니다. 10. Index, find 또는 기타 방법을 사용하여 *Coding For All* 문자열에 단어 Coding이 포함되어 있는지 확인합니다. 11. 문자열 'Coding For All'의 코딩이라는 단어를 Python으로 바꿉니다. 12. replace 메서드 또는 기타 메서드를 사용하여 모두를 위한 Python을 모두를 위한 Python으로 변경합니다. 13. 공백을 구분 기호로 사용하여 문자열 'Coding For All'을 분할합니다(split()). 14. "Facebook, Google, Microsoft, Apple, IBM, Oracle, Amazon"은 쉼표에서 문자열을 나눕니다. 15. 문자열 *Coding For All* 에서 인덱스 0에 있는 문자는 무엇입니까? 16. 문자열 *Coding For All* 에서 인덱스 0에 있는 문자는 무엇입니까? 17. "Coding For All" 문자열에서 인덱스 10에 있는 문자는 무엇입니까? 18. 'Python For Everyone'이라는 이름의 약어 또는 약어를 만듭니다. 19. 'Coding For All'이라는 이름의 약어 또는 약어를 만듭니다. 20. Index를 사용하여 Coding For All에서 C가 처음 나타나는 위치를 결정합니다. 21. Index를 사용하여 Coding For All에서 F가 처음 나타나는 위치를 결정합니다. 22. Coding For All People에서 l이 마지막으로 나타나는 위치를 결정하려면 rfind를 사용하십시오. 23. 색인 또는 찾기를 사용하여 다음 문장에서 'because'라는 단어가 처음 나타나는 위치를 찾습니다. 24. 색인 또는 찾기를 사용하여 다음 문장에서 'because'라는 단어가 처음 나타나는 위치를 찾습니다. 25. 색인 또는 찾기를 사용하여 다음 문장에서 'because'라는 단어가 처음 나타나는 위치를 찾습니다. 26. 색인 또는 찾기를 사용하여 다음 문장에서 'because'라는 단어가 처음 나타나는 위치를 찾습니다. 27. 다음 문장에서 'because because because'라는 구문을 잘라냅니다. 28. 'Coding For All'은 하위 문자열 *Coding* 으로 시작합니까? 29. 'Coding For All'은 하위 문자열 *코딩* 으로 끝납니까? 30. ' Coding For All ' , 주어진 문자열에서 왼쪽 및 오른쪽 후행 공백을 제거합니다. 31. 다음 변수 중 isidentifier() 메서드를 사용할 때 True를 반환하는 변수는 무엇입니까? - 30DaysOfPython - thirty_days_of_python 32. 다음 목록에는 일부 파이썬 라이브러리의 이름이 포함되어 있습니다: ['Django', 'Flask', 'Bottle', 'Pyramid', 'Falcon']. 공백 문자열이 있는 해시로 목록에 가입하십시오. 33. 새 줄 이스케이프 시퀀스를 사용하여 다음 문장을 구분합니다. ```py I am enjoying this challenge. I just wonder what is next. ``` 34. 새 줄 이스케이프 시퀀스를 사용하여 다음 문장을 구분합니다. ```py Name Age Country City Asabeneh 250 Finland Helsinki ``` 35. 문자열 형식 지정 방법을 사용하여 다음을 표시합니다: ```sh radius = 10 area = 3.14 * radius ** 2 The area of a circle with radius 10 is 314 meters square. ``` 1. 문자열 형식화 방법을 사용하여 다음을 작성하십시오: ```sh 8 + 6 = 14 8 - 6 = 2 8 * 6 = 48 8 / 6 = 1.33 8 % 6 = 2 8 // 6 = 1 8 ** 6 = 262144 ``` 🎉 축하합니다! 🎉 [<< Day 3](../03_Day_Operators/03_operators.md) | [Day 5 >>](../05_Day_Lists/05_lists.md) ================================================ FILE: Korean/05_Day_Lists/05_lists.md ================================================

30 Days Of Python: Day 5 - Lists

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July - 2021
[<< Day 4](../04_Day_Strings/04_strings.md) | [Day 6 >>](../06_Day_Tuples/06_tuples.md) ![30DaysOfPython](../../images/30DaysOfPython_banner3@2x.png) - [Day 5](#day-5) - [Lists](#lists) - [How to Create a List](#how-to-create-a-list) - [Accessing List Items Using Positive Indexing](#accessing-list-items-using-positive-indexing) - [Accessing List Items Using Negative Indexing](#accessing-list-items-using-negative-indexing) - [Unpacking List Items](#unpacking-list-items) - [Slicing Items from a List](#slicing-items-from-a-list) - [Modifying Lists](#modifying-lists) - [Checking Items in a List](#checking-items-in-a-list) - [Adding Items to a List](#adding-items-to-a-list) - [Inserting Items into a List](#inserting-items-into-a-list) - [Removing Items from a List](#removing-items-from-a-list) - [Removing Items Using Pop](#removing-items-using-pop) - [Removing Items Using Del](#removing-items-using-del) - [Clearing List Items](#clearing-list-items) - [Copying a List](#copying-a-list) - [Joining Lists](#joining-lists) - [Counting Items in a List](#counting-items-in-a-list) - [Finding Index of an Item](#finding-index-of-an-item) - [Reversing a List](#reversing-a-list) - [Sorting List Items](#sorting-list-items) - [💻 Exercises: Day 5](#-exercises-day-5) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) # Day 5 ## Lists 파이썬에는 네 가지 컬렉션 자료형이 있습니다. - List: 정렬되고 변경 가능(수정 가능)한 컬렉션입니다. 중복 값을 허용합니다. - Tuple: 정렬되고 변경 불가능하거나 수정 불가능한(불변) 컬렉션입니다. 중복 값을 허용합니다. - Set: 순서가 지정되지 않고 인덱스가 없고 수정할 수 없는 컬렉션이지만 새 아이템을 추가할 수 있습니다. 중복 값은 허용되지 않습니다. - Dictionary: 정렬되지 않고 변경 가능(수정 가능)하며 인덱스가 있는 컬렉션입니다. 중복 값이 없습니다. 리스트는 정렬되고 수정(변경) 가능한 다양한 자료형의 컬렉션입니다. 목록은 비어 있거나 다른 자료형 아이템을 가질 수 있습니다. ### How to Create a List 파이썬에서 리스트는 두가지 방법으로 생성할 수 있습니다: - list 내장 함수를 사용 ```py # syntax lst = list() ``` ```py empty_list = list() # 이건 빈 리스트 입니다, 리스트 안에 아무 값도 없습니다 print(len(empty_list)) # 0 ``` - 대괄호 사용, [] ```py # syntax lst = [] ``` ```py empty_list = [] # 이건 빈 리스트 입니다, 리스트 안에 아무 값도 없습니다 print(len(empty_list)) # 0 ``` 초기 값이 있는 리스트입니다. _len()_ 을 사용하여 리스트의 길이를 찾습니다. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] # list of fruits vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] # list of vegetables animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # list of animal products web_techs = ['HTML', 'CSS', 'JS', 'React','Redux', 'Node', 'MongDB'] # list of web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # Print the lists and its length print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:',animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Countries:', countries) print('Number of countries:', len(countries)) ``` ```sh output Fruits: ['banana', 'orange', 'mango', 'lemon'] Number of fruits: 4 Vegetables: ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] Number of vegetables: 5 Animal products: ['milk', 'meat', 'butter', 'yoghurt'] Number of animal products: 4 Web technologies: ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] Number of web technologies: 7 Countries: ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] Number of countries: 5 ``` - 리스트는 서로 다른 자료형의 아이템을 가질 수 있습니다. ```py lst = ['Asabeneh', 250, True, {'country':'Finland', 'city':'Helsinki'}] # 다른 자료형을 가진 리스트 ``` ### Accessing List Items Using Positive Indexing 인덱스를 사용하여 리스트의 각 아이템에 액세스합니다. 리스트 인덱스는 0부터 시작합니다. 아래 그림은 인덱스가 시작되는 위치를 명확하게 보여줍니다. ![List index](../../images/list_index.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # 인덱스를 사용해 첫번째 아이템에 접근합니다 print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] ``` ### Accessing List Items Using Negative Indexing 음수 인덱스는 끝에서 시작하는 것을 의미하며 -1은 마지막 아이템을, -2는 마지막에서 두번쨰 아이템을 의미합니다. ![List negative indexing](../../images/list_negative_indexing.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[-4] last_fruit = fruits[-1] second_last = fruits[-2] print(first_fruit) # banana print(last_fruit) # lemon print(second_last) # mango ``` ### Unpacking List Items ```py lst = ['item','item2','item3', 'item4', 'item5'] first_item, second_item, third_item, *rest = lst print(first_item) # item1 print(second_item) # item2 print(third_item) # item3 print(rest) # ['item4', 'item5'] ``` ```py # First Example fruits = ['banana', 'orange', 'mango', 'lemon','lime','apple'] first_fruit, second_fruit, third_fruit, *rest = lst print(first_fruit) # banana print(second_fruit) # orange print(third_fruit) # mango print(rest) # ['lemon','lime','apple'] # Second Example about unpacking list first, second, third,*rest, tenth = [1,2,3,4,5,6,7,8,9,10] print(first) # 1 print(second) # 2 print(third) # 3 print(rest) # [4,5,6,7,8,9] print(tenth) # 10 # Third Example about unpacking list countries = ['Germany', 'France','Belgium','Sweden','Denmark','Finland','Norway','Iceland','Estonia'] gr, fr, bg, sw, *scandic, es = countries print(gr) print(fr) print(bg) print(sw) print(scandic) print(es) ``` ### Slicing Items from a List - 양수 인덱싱: start, end 및 step을 지정하여 양수 인덱스 범위를 지정할 수 있습니다. 반환 값은 새 리스트가 됩니다. (start의 디폴트값 = 0, end = len(lst) - 1 (마지막 아이템), step = 1) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # 모든 fruits를 반환합니다 # 이것또한 위와 같은 값을 반환합니다 all_fruits = fruits[0:] # 우리가 어디서 멈출 지 설정하지 않으면, 모든 것을 포함합니다 orange_and_mango = fruits[1:3] # 첫번째 인덱스를 포함하지 않습니다 orange_mango_lemon = fruits[1:] orange_and_lemon = fruits[::2] # 여기서 세번째 인자인 step을 사용했습니다. 모든 두번째 아이템을 포함합니다 - ['banana', 'mango'] ``` - 음수 인덱싱: start, end 및 step을 지정하여 음수 인덱스의 범위를 지정할 수 있습니다. 반환 값은 새 리스트가 됩니다. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # 모든 fruits를 반환합니다 orange_and_mango = fruits[-3:-1] # 마지막 인덱스를 포함하지 않습니다,['orange', 'mango'] orange_mango_lemon = fruits[-3:] # 이것은 -3 부터 시작하여 끝까지의 값을 줍니다,['orange', 'mango', 'lemon'] reverse_fruits = fruits[::-1] # 음수의 step은 리스트를 역순으로 가집니다,['lemon', 'mango', 'orange', 'banana'] ``` ### Modifying Lists 리스트는 변경 가능하거나 수정 가능한 순서가 있는 아이템들의 컬렉션입니다. 과일 리스트를 수정해봅시다. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) - 1 fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ``` ### Checking Items in a List *in* 연산자를 사용하여 아이템이 리스트의 구성원인지 확인합니다. 아래 예시를 봅시다. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False ``` ### Adding Items to a List 기존 리스트의 끝에 아이템을 추가하려면 *append()* 메서드를 사용합니다. ```py # syntax lst = list() lst.append(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] fruits.append('lime') # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime'] print(fruits) ``` ### Inserting Items into a List *insert()* 메서드를 사용하여 목록의 지정된 인덱스에 하나의 아이템을 삽입할 수 있습니다. 다른 아이템들은 오른쪽으로 이동한다는 것에 주의합시다. *insert()* 메서드는 인덱스와 삽입할 아이템이라는 두 가지 인자를 가집니다. ```py # syntax lst = ['item1', 'item2'] lst.insert(index, item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # orange와 mango 사이에 apple을 삽입 print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] fruits.insert(3, 'lime') # ['banana', 'orange', 'apple', 'lime', 'mango', 'lemon'] print(fruits) ``` ### Removing Items from a List remove 메서드는 리스트에서 지정된 아이템을 삭제합니다. ```py # syntax lst = ['item1', 'item2'] lst.remove(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'banana'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon', 'banana'] - 이 메서드는 리스트에서 첫번째로 존재하는 아이템을 삭제합니다 fruits.remove('lemon') print(fruits) # ['orange', 'mango', 'banana'] ``` ### Removing Items Using Pop *pop()* 메서드는 지정된 인덱스를 제거합니다(또는 인덱스가 지정되지 않은 경우 마지막 아이템): ```py # syntax lst = ['item1', 'item2'] lst.pop() # 마지막 아이템 lst.pop(index) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.pop() print(fruits) # ['banana', 'orange', 'mango'] fruits.pop(0) print(fruits) # ['orange', 'mango'] ``` ### Removing Items Using Del *del* 키워드는 지정된 인덱스를 삭제하며 인덱스 범위 내의 아이템을 삭제하는 데도 사용할 수 있습니다. 또한 리스트를 완전히 삭제할 수도 있습니다. ```py # syntax lst = ['item1', 'item2'] del lst[index] # 하니의 아이템 del lst # 리스트를 완전히 삭제 ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[1] print(fruits) # ['orange', 'lemon', 'kiwi', 'lime'] del fruits[1:3] # 이것은 주어진 인덱스 사이의 아이템을 삭제합니다, 그러므로 인덱스가 3인 아이템은 삭제되지 않습니다! print(fruits) # ['orange', 'lime'] del fruits print(fruits) # NameError: name 'fruits' is not defined 가 발생해야합니다 ``` ### Clearing List Items *clear()* 메서드를 사용해 리스트 비우기: ```py # syntax lst = ['item1', 'item2'] lst.clear() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] ``` ### Copying a List 다음의 방법으로 새 변수에 재할당하여 리스트를 복사할 수 있습니다:list2 = list1. 이제 list2는 list1의 참조이며, list2에서 변경한 내용은 원본 list1도 수정합니다. 하지만 원본을 수정하고 싶지 않고 다른 사본을 갖고 싶어하는 경우가 많습니다. 위의 문제를 피하는 한 가지 방법은 _copy()_ 를 사용하는 것입니다. ```py # syntax lst = ['item1', 'item2'] lst_copy = lst.copy() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] ``` ### Joining Lists 파이썬에서 두 개 이상의 목록을 결합하거나 연결하는 방법은 여러 가지가 있습니다. - 플러스 연산자 (+) ```py # syntax list3 = list1 + list2 ``` ```py positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers = [-5,-4,-3,-2,-1] integers = negative_numbers + zero + positive_numbers print(integers) # [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables ) # ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` - extend() 메서드를 사용하여 연결 *extend()* 메서드를 사용하면 리스트에 리스트를 추가할 수 있습니다. 아래 예를 참조합시다. ```py # syntax list1 = ['item1', 'item2'] list2 = ['item3', 'item4', 'item5'] list1.extend(list2) ``` ```py num1 = [0, 1, 2, 3] num2= [4, 5, 6] num1.extend(num2) print('Numbers:', num1) # Numbers: [0, 1, 2, 3, 4, 5, 6] negative_numbers = [-5,-4,-3,-2,-1] positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) # Integers: [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits ) # Fruits and vegetables: ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` ### Counting Items in a List *count()* 메서드는 리스트에 아이템이 나타나는 횟수를 반환합니다: ```py # syntax lst = ['item1', 'item2'] lst.count(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 ``` ### Finding Index of an Item *index()* 메서드는 리스트에 있는 아이템의 인덱스를 반환합니다: ```py # syntax lst = ['item1', 'item2'] lst.index(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # 2, 처음 만난 것 ``` ### Reversing a List *reverse()* 메서드는 리스트의 순서를 거꾸로 합니다. ```py # syntax lst = ['item1', 'item2'] lst.reverse() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits) # ['lemon', 'mango', 'orange', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages) # [24, 25, 24, 26, 25, 24, 19, 22] ``` ### Sorting List Items 리스트를 정렬하려면 _sort()_ 메서드 또는 _sorted()_ 내장 함수를 사용할 수 있습니다. _sort()_ 메서드는 리스트 아이템을 오름차순으로 정렬하고 원래 리스트를 수정합니다. 만약 _sort()_ 메서드의 reverse의 인자가 true라면, 그것은 목록을 내림차순으로 배열할 것입니다. - sort(): 이 메서드는 원래 리스트를 수정합니다 ```py # syntax lst = ['item1', 'item2'] lst.sort() # 오름차순 lst.sort(reverse=True) # 내림차순 ``` **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) # 알파벳순으로 정렬, ['banana', 'lemon', 'mango', 'orange'] fruits.sort(reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) # [19, 22, 24, 24, 24, 25, 25, 26] ages.sort(reverse=True) print(ages) # [26, 25, 25, 24, 24, 24, 22, 19] ``` sorted(): 원래 리스트를 수정하지 않고 정렬된 리스트를 반환합니다 **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(sorted(fruits)) # ['banana', 'lemon', 'mango', 'orange'] # 역순 fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits,reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ``` 🌕 당신은 성실하고 이미 많은 것을 성취했습니다. 여러분은 이제 막 5일차 도전을 마쳤고 위대함을 향한 5걸음 앞에 있습니다. 이제 여러분의 뇌와 근육을 위한 운동을 하세요. ## 💻 Exercises: Day 5 ### Exercises: Level 1 1. 빈 리스트를 선언합니다 2. 5개 이상의 아이템을 갖는 리스트를 선언합니다 3. 당신의 리스트의 길이를 알아봅니다 4. 리스트의 첫번째, 중간의, 마지막 아이템을 얻어봅니다 5. mixed_data_types 라는 리스트를 선언하고, 당신의 이름, 나이, 키, 결혼 여부, 주소를 넣어봅시다 6. it_companies 라는 이름의 목록 변수를 선언하고 초기 값에 Facebook, Google, Microsoft, Apple, IBM, Oracle 및 Amazon을 할당합니다 7. _print()_ 를 사용하여 리스트를 프린트 합니다 8. 리스트에 있는 기업 수를 프린트 합니다 9. 첫번째, 중간, 마지막 기업을 프린트 합니다 10. 기업 중 하나를 수정하고 리스트를 프린트 합니다 11. it_companies 에 하나의 IT 기업을 추가합니다 12. 회사 리스트 중간에 IT 기업을 추가합니다 13. it_companies 이름 중 하나를 대문자로 변경합니다 (IBM 제외!) 14. '#;  ' 라는 문자열로 it_companies 에 연결합니다 15. it_companies 리스트에 특정 기업이 존재하는 지 확인합니다 16. sort() 메서드를 사용해 리스트를 정렬합니다 17. reverse() 메서드를 사용하여 리스트를 내림차순으로 반전합니다 18. 리스트에서 처음 3개의 기업을 잘라냅니다 19. 리스트에서 마지막 3개의 기업을 잘라냅니다 20. 리스트에서 중간의 IT 기업 또는 기업들을 잘라냅니다 21. 리스트에서 첫번째 IT 기업을 삭제합니다 22. 리스트에서 중간의 IT 기업 또는 기업들을 삭제합니다 23. 리스트에서 마지막 IT 기업을 삭제합니다 24. 리스트에서 모든 IT 기업을 삭제합니다 25. IT 기업 리스트를 완전히 제거합니다 26. 다음 리스트를 연결합니다: ```py front_end = ['HTML', 'CSS', 'JS', 'React', 'Redux'] back_end = ['Node','Express', 'MongoDB'] ``` 27. 26번 문제의 리스트를 연결한 후, 연결된 리스트를 복사해 full_stack 변수에 할당합니다. 그리고 Python, SQL, Redux를 삽입합니다. ### Exercises: Level 2 1. 다음은 10명의 학생의 나이 리스트입니다: ```sh ages = [19, 22, 19, 24, 20, 25, 26, 24, 25, 24] ``` - 리스트를 정렬하고 최소값 및 최대값 찾습니다 - 리스트에 최소값 및 최대값을 다시 추가합니다 - 나이의 중위값을 찾습니다(중간 아이템 하나 또는 중간 아이템 두 개를 2로 나눈 값) - 평균 나이를 구합니다(모든 아이템의 합을 개수로 나눈 값) - 나이의 범위를 구합니다(최대값 빼기 최소값) - (최소값 - 평균)과 (최대값 - 평균)의 값을 비교하고 _abs()_ 메서드를 사용합니다. 1. [국가 목록](https://github.com/Asabeneh/30-Days-Of-Python/tree/master/data/countries.py) 에서 중간 국가를 찾습니다. 1. 국가 리스트를 두개의 리스트로 나눕니다. 짝수라면 두개의 리스트의 크기가 갖게, 아니라면 앞의 리스트가 하나의 국가를 더 갖도록 합니다. 1. ['China', 'Russia', 'USA', 'Finland', 'Sweden', 'Norway', 'Denmark']. 앞의 세개 국가와 나머지를 scandic countries로 unpack합니다. 🎉 CONGRATULATIONS ! 🎉 [<< Day 4](../04_Day_Strings/04_strings.md) | [Day 6 >>](../06_Day_Tuples/06_tuples.md) ================================================ FILE: Korean/07_sets_ko.md ================================================

30 Days Of Python: Day 7 - Sets

Twitter Follow

Author: Asabeneh Yetayeh
Second Edition: July, 2021

[<< Day 6](../06_Day_Tuples/06_tuples.md) | [Day 8 >>](../08_Day_Dictionaries/08_dictionaries.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 7](#-day-7) - [Sets](#sets) - [세트 만들기](#세트-만들기) - [세트의 길이 구하기](#세트의-길이-구하기) - [세트의 항목에 액세스](#세트의-항목에-엑세스) - [항목 확인](#항목-확인) - [세트에 항목 추가](#세트에-항목-추가) - [세트에서 항목 제거](#세트에서-항목-제거) - [세트의 항목 지우기](#세트의-항목-지우기) - [세트 삭제](#세트-삭제) - [목록을 집합으로 변환](#목록을-집합으로-변환) - [집합 결합](#집합-결합) - [교차 항목 찾기](#교차-항목-찾기) - [하위 집합 및 수퍼 집합 확인](#하위-집합-및-수퍼-집합-확인) - [두 세트 간의 차이 확인](#두-세트-간의-차이-확인) - [두 집합 간의 대칭적 차이 찾기](#두-집합-간의-대칭적-차이-찾기) - [집합 결합](#집합-결합) - [💻 Exercises: Day 7](#-exercises-day-7) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 7 ## Sets 세트는 항목의 모음입니다. 초등학교 또는 고등학교 수학 수업으로 돌아가겠습니다. 집합의 수학 정의는 Python에서도 적용될 수 있습니다. 집합은 순서가 지정되지 않고 인덱싱되지 않은 개별 요소의 모음입니다. Python에서 집합은 고유한 항목을 저장하는 데 사용되며 집합 간에 *합집합* , *교차* , *차이* , *대칭적 차이* , *하위 집합* , *상위 집합* 및 *분리 집합* 을 찾을 수 있습니다. ### 세트 만들기 중괄호 {}를 사용하여 세트 또는 *set()* 내장 함수를 생성합니다. - 빈 세트 만들기 ```py # syntax st = {} # or st = set() ``` - 초기 항목으로 세트 만들기 ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} ``` **예시:** ```py # syntax fruits = {'banana', 'orange', 'mango', 'lemon'} ``` ### 세트의 길이 구하기 **len()** 메서드를 사용하여 집합의 길이를 찾습니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} len(set) ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} len(fruits) ``` ### 세트의 항목에 액세스 루프를 사용하여 항목에 액세스합니다. 우리는 루프 섹션에서 이것을 볼 것입니다 ### 항목 확인 목록에 항목이 있는지 확인하기 위해 멤버십 연산자 *에서* 사용합니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} print("Does set st contain item3? ", 'item3' in st) # Does set st contain item3? True ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} print('mango' in fruits ) # True ``` ### 세트에 항목 추가 세트가 생성되면 항목을 변경할 수 없으며 항목을 추가할 수도 있습니다. - *add()* 를 사용하여 하나의 항목 추가 ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.add('item5') ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.add('lime') ``` - *update()* 를 사용하여 여러 항목 추가 *update()* 를 사용하면 세트에 여러 항목을 추가할 수 있습니다. *update()* 는 목록 인수를 사용합니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.update(['item5','item6','item7']) ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = ('tomato', 'potato', 'cabbage','onion', 'carrot') fruits.update(vegetables) ``` ### 세트에서 항목 제거 *remove()* 메서드를 사용하여 집합에서 항목을 제거할 수 있습니다. 항목을 찾을 수 없으면 *remove()* 메서드는 오류를 발생시키므로 해당 항목이 주어진 집합에 있는지 확인하는 것이 좋습니다. 그러나, *discard()* 메서드는 오류를 발생시키지 않습니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.remove('item2') ``` pop() 메서드는 목록에서 임의의 항목을 제거하고 제거된 항목을 반환합니다. **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.pop() # removes a random item from the set ``` 제거된 항목에 관심이 있는 경우. ```py fruits = {'banana', 'orange', 'mango', 'lemon'} removed_item = fruits.pop() ``` ### 세트의 항목 지우기 세트를 지우거나 비우려면 *clear* 메소드를 사용합니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.clear() ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.clear() print(fruits) # set() ``` ### 세트 삭제 세트 자체를 삭제하려면 *del* 연산자를 사용합니다. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} del st ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} del fruits ``` ### 목록을 집합으로 변환 리스트를 세트로, 세트를 리스트로 변환할 수 있습니다. 목록을 세트로 변환하면 중복 항목이 제거되고 고유한 항목만 예약됩니다. ```py # syntax lst = ['item1', 'item2', 'item3', 'item4', 'item1'] st = set(lst) # {'item2', 'item4', 'item1', 'item3'} - the order is random, because sets in general are unordered ``` **예시:** ```py fruits = ['banana', 'orange', 'mango', 'lemon','orange', 'banana'] fruits = set(fruits) # {'mango', 'lemon', 'banana', 'orange'} ``` ### 집합 결합 *union()* 또는 *update()* 메서드를 사용하여 두 집합을 결합할 수 있습니다. - Union 이 메서드는 새 집합을 반환합니다. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st3 = st1.union(st2) ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} print(fruits.union(vegetables)) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` - 업데이트 이 메서드는 주어진 집합에 집합을 삽입합니다. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st1.update(st2) # st2 contents are added to st1 ``` **예시:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} fruits.update(vegetables) print(fruits) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` ### 교차 항목 찾기 Intersection은 두 집합 모두에 있는 항목 집합을 반환합니다. 예를 참조하십시오 ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} ``` **예시:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.intersection(even_numbers) # {0, 2, 4, 6, 8, 10} python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.intersection(dragon) # {'o', 'n'} ``` ### 하위 집합 및 수퍼 집합 확인 집합은 다른 집합의 하위 집합 또는 상위 집합일 수 있습니다. - Subset: *issubset()* - Super set: *issuperset* ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.issubset(st1) # True st1.issuperset(st2) # True ``` **예시:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.issubset(even_numbers) # False, because it is a super set whole_numbers.issuperset(even_numbers) # True python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.issubset(dragon) # False ``` ### 두 세트 간의 차이 확인 두 집합 간의 차이를 반환합니다. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.difference(st1) # set() st1.difference(st2) # {'item1', 'item4'} => st1\st2 ``` **예시:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.difference(even_numbers) # {1, 3, 5, 7, 9} python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.difference(dragon) # {'p', 'y', 't'} - the result is unordered (characteristic of sets) dragon.difference(python) # {'d', 'r', 'a', 'g'} ``` ### 두 집합 간의 대칭적 차이 찾기 두 집합 간의 대칭 차이를 반환합니다. 수학적으로 두 세트에 있는 항목을 제외하고 두 세트의 모든 항목을 포함하는 세트를 리턴한다는 의미입니다. (A\B) ∪ (B\A) ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} # it means (A\B)∪(B\A) st2.symmetric_difference(st1) # {'item1', 'item4'} ``` **예시:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} some_numbers = {1, 2, 3, 4, 5} whole_numbers.symmetric_difference(some_numbers) # {0, 6, 7, 8, 9, 10} python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.symmetric_difference(dragon) # {'r', 't', 'p', 'y', 'g', 'a', 'd', 'h'} ``` ### 집합 결합 두 세트에 공통 항목이 없으면 분리 세트라고 합니다. *isdisjoint()* 메서드를 사용하여 두 집합이 결합인지 분리인지 확인할 수 있습니다. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.isdisjoint(st1) # False ``` **예시:** ```py even_numbers = {0, 2, 4 ,6, 8} even_numbers = {1, 3, 5, 7, 9} even_numbers.isdisjoint(odd_numbers) # True, because no common item python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.isdisjoint(dragon) # False, there are common items {'o', 'n'} ``` 🌕 당신은 떠오르는 별입니다. 당신은 방금 7일차 챌린지를 완료했으며 위대함을 향한 당신의 길에 7걸음 앞서 있습니다. 이제 뇌와 근육을 위한 몇 가지 훈련을 하십시오. ## 💻 Exercises: Day 7 ```py # sets it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} A = {19, 22, 24, 20, 25, 26} B = {19, 22, 20, 25, 26, 24, 28, 27} age = [22, 19, 24, 25, 26, 24, 25, 24] ``` ### Exercises: Level 1 1. 집합 it_companies의 길이 찾기 2. it_companies에 'Twitter' 추가 3. it_companies 집합에 여러 IT 회사를 한 번에 삽입 4. it_companies 집합에서 회사 중 하나를 제거합니다. 5. 제거하다와 버리다의 차이점은 무엇인가요? ### Exercises: Level 2 1. A와 B를 결합 2. 교차 항목 찾기 3. A는 B의 부분집합 4. A와 B는 서로소 집합입니다. 5. A는 B와, B는 A와 조인 6. A와 B의 대칭 차이는 무엇입니까 7. 세트를 완전히 삭제 ### Exercises: Level 3 1. 연령을 세트로 변환하고 목록의 길이와 세트의 길이를 비교합니다. 어느 것이 더 큽니까? 2. 문자열, 목록, 튜플 및 집합과 같은 데이터 유형의 차이점을 설명하십시오. 3. *저는 교사이고 사람들에게 영감을 주고 가르치는 것을 좋아합니다.* 문장에 사용된 독특한 단어는 몇 개입니까? 분할 방법을 사용하고 고유한 단어를 가져오도록 설정합니다. 🎉 축하합니다! 🎉 [<< 6일차](../06_Day_Tuples/06_tuples.md) | [8일차 >>](../08_Day_Dictionaries/08_dictionaries.md) ================================================ FILE: Korean/08_Day_Dictionaries/08_dictionaries.md ================================================

30 Days Of Python: Day 8 - Dictionaries

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md) ![30DaysOfPython](../../images/30DaysOfPython_banner3@2x.png) - [📘 Day 8](#-day-8) - [Dictionaries](#dictionaries) - [Creating a Dictionary](#creating-a-dictionary) - [Dictionary Length](#dictionary-length) - [Accessing Dictionary Items](#accessing-dictionary-items) - [Adding Items to a Dictionary](#adding-items-to-a-dictionary) - [Modifying Items in a Dictionary](#modifying-items-in-a-dictionary) - [Checking Keys in a Dictionary](#checking-keys-in-a-dictionary) - [Removing Key and Value Pairs from a Dictionary](#removing-key-and-value-pairs-from-a-dictionary) - [Changing Dictionary to a List of Items](#changing-dictionary-to-a-list-of-items) - [Clearing a Dictionary](#clearing-a-dictionary) - [Deleting a Dictionary](#deleting-a-dictionary) - [Copy a Dictionary](#copy-a-dictionary) - [Getting Dictionary Keys as a List](#getting-dictionary-keys-as-a-list) - [Getting Dictionary Values as a List](#getting-dictionary-values-as-a-list) - [💻 Exercises: Day 8](#-exercises-day-8) # 📘 Day 8 ## Dictionaries Dictionary는 순서가 없는 수정(변형) 가능한 쌍(키: 값)의 자료형의 컬렉션입니다. ### Creating a Dictionary Dictionary를 만들려면 중괄호 {} 또는 *dict()* 내장 함수를 사용합니다. ```py # syntax empty_dict = {} # Dictionary with data values dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` 상단의 Dictionary는 값이 어떤 자료형일 수도 있다는 것을 보여줍니다:string, boolean, list, tuple, set 또는 dictionary. ### Dictionary Length dictionary 내 'key: value' 쌍의 개수를 확인합니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(len(dct)) # 4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(len(person)) # 7 ``` ### Accessing Dictionary Items 키의 이름을 통해 딕셔너리 아이템에 접근할 수 있습니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct['key1']) # value1 print(dct['key4']) # value4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person['first_name']) # Asabeneh print(person['country']) # Finland print(person['skills']) # ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person['skills'][0]) # JavaScript print(person['address']['street']) # Space street print(person['city']) # Error ``` 존재하지 않는 키의 이름으로 아이템에 접근할 경우 에러가 발생할 수 있습니다. 이 에러를 피하기위해 우리는 우선 키가 존재하는지 확인해야합니다. 또는 _get_ 메서드를 사용할수 있습니다. get 메서드는 키가 존재하지 않을 경우, NoneType object 자료형인 None을 반환합니다. ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person.get('first_name')) # Asabeneh print(person.get('country')) # Finland print(person.get('skills')) #['HTML','CSS','JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person.get('city')) # None ``` ### Adding Items to a Dictionary 딕셔너리에 새로운 키와 값의 쌍을 추가할 수 있습니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key5'] = 'value5' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['job_title'] = 'Instructor' person['skills'].append('HTML') print(person) ``` ### Modifying Items in a Dictionary 딕셔너리의 아이템을 수정할 수 있습니다 ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key1'] = 'value-one' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['first_name'] = 'Eyob' person['age'] = 252 ``` ### Checking Keys in a Dictionary 딕셔너리에 키가 존재하는 지 확인하기 위해 _in_ 연산자를 사용합니다 ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print('key2' in dct) # True print('key5' in dct) # False ``` ### Removing Key and Value Pairs from a Dictionary - _pop(key)_: 특정 키 이름을 가진 아이템을 삭제합니다 - _popitem()_: 마지막 아이템을 삭제합니다 - _del_: 특정 키 이름을 가진 아이템을 삭제합니다 ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.pop('key1') # removes key1 item dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.popitem() # removes the last item del dct['key2'] # removes key2 item ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person.pop('first_name') # Removes the firstname item person.popitem() # Removes the address item del person['is_married'] # Removes the is_married item ``` ### Changing Dictionary to a List of Items _items()_ 메서드는 딕셔너리를 튜플의 리스트로 변환합니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.items()) # dict_items([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3'), ('key4', 'value4')]) ``` ### Clearing a Dictionary 딕셔너리 내의 아이템을 원하지 않는다면 _clear()_ 메서드를 사용해 비울 수 있습니다 ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.clear()) # None ``` ### Deleting a Dictionary 딕셔너리를 사용하지않는다면 완전히 지울 수 있습니다 ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} del dct ``` ### Copy a Dictionary _copy()_ 메서드를 통해 딕셔너리를 복사할 수 있습니다. copy를 사용해 원래 딕셔너리의 변화를 막을 수 있습니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct_copy = dct.copy() # {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` ### Getting Dictionary Keys as a List _keys()_ 메서드는 하나의 딕셔너리의 모든 키를 리스트로 줍니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} keys = dct.keys() print(keys) # dict_keys(['key1', 'key2', 'key3', 'key4']) ``` ### Getting Dictionary Values as a List _values_ 메서드는 하나의 딕셔너리의 모든 값을 리스트로 줍니다. ```py # syntax dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} values = dct.values() print(values) # dict_values(['value1', 'value2', 'value3', 'value4']) ``` 🌕 당신은 정말 놀라워요. 이제, 여러분은 사전의 힘으로 완전히 충전되어 있습니다. 여러분은 이제 막 8일째의 도전을 마쳤고 위대함을 향해 8보 전진했습니다. 이제 여러분의 뇌와 근육을 위한 운동을 하세요. ## 💻 Exercises: Day 8 1. dog라는 이름의 빈 딕셔너리를 생성합니다 2. dog 딕셔너리에 name, color, breed, legs, age 를 추가합니다 3. student 딕셔너리를 생성하고 first_name, last_name, gender, age, marital status, skills, country, city 와 address 를 키로 추가합니다 4. student 딕셔너리의 길이를 얻습니다 5. skills 의 값을 얻고 자료형을 확인합니다, list 여야 합니다 6. 한개나 두개를 추가해 skills의 값을 수정합니다 7. 딕셔너리의 키를 리스트로 얻습니다 8. 딕셔너리의 값을 리스트로 얻습니다 9. _items()_ 메서드를 이용해 튜플의 리스트로 딕셔너리를 바꿉니다 10. 딕셔너리의 아이템중 하나를 삭제합니다 11. 딕셔너리 중 하나를 삭제합니다 🎉 CONGRATULATIONS ! 🎉 [<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md) ================================================ FILE: Korean/10_loops_ko.md ================================================

30 Days Of Python: Day 10 - Loops

Twitter Follow

Author: Asabeneh Yetayeh
Second Edition: July, 2021

[<< Day 9](../09_Day_Conditionals/09_conditionals.md) | [Day 11 >>](../11_Day_Functions/11_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Day 10](#-day-10) - [Loops](#loops) - [While 루프](#while-루프) - [Break 과 Continue - Part 1](#break-과-continue---part-1) - [For 루프](#for-루프) - [Break 과 Continue - Part 2](#break-과-continue---part-2) - [범위 기능](#범위-기능) - [중첩 For 루프](#중첩-for-루프) - [For Else](#for-else) - [Pass](#pass) - [💻 Exercises: Day 10](#-exercises-day-10) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # 📘 Day 10 ## Loops 인생은 일상으로 가득 차 있습니다. 프로그래밍에서 우리는 또한 많은 반복 작업을 수행합니다. 반복 작업을 처리하기 위해 프로그래밍 언어는 루프를 사용합니다. Python 프로그래밍 언어는 또한 다음 유형의 두 루프를 제공합니다. 1. while loop 2. for loop ### While 루프 우리는 while 루프를 만들기 위해 예약어 *while* 을 사용합니다. 주어진 조건이 만족될 때까지 문 블록을 반복적으로 실행하는 데 사용됩니다. 조건이 거짓이 되면 루프 뒤의 코드 행이 계속 실행됩니다. ```py # syntax while condition: code goes here ``` **예시:** ```py count = 0 while count < 5: print(count) count = count + 1 #prints from 0 to 4 ``` 위의 while 루프에서 count가 5일 때 조건이 false가 됩니다. 이때 루프가 중지됩니다. 조건이 더 이상 참이 아닐 때 코드 블록을 실행하고 싶다면 *else* 를 사용할 수 있습니다. ```py # syntax while condition: code goes here else: code goes here ``` **예시:** ```py count = 0 while count < 5: print(count) count = count + 1 #prints from 0 to 4 ``` 위의 루프 조건은 count가 5이고 루프가 중지되고 실행이 else 문을 시작하면 거짓이 됩니다. 결과적으로 5가 인쇄됩니다. ### Break 과 Continue - Part 1 - 중단: 루프에서 벗어나거나 중단하고 싶을 때 중단을 사용합니다. ```py # syntax while condition: code goes here if another_condition: break ``` **예시:** ```py count = 0 while count < 5: print(count) count = count + 1 if count == 3: break ``` 위의 while 루프는 0, 1, 2만 인쇄하지만 3에 도달하면 중지합니다. - 계속: continue 문을 사용하면 현재 반복을 건너뛰고 다음을 계속할 수 있습니다. ```py # syntax while condition: code goes here if another_condition: continue ``` **예시:** ```py count = 0 while count < 5: if count == 3: continue print(count) count = count + 1 ``` 위의 while 루프는 0, 1, 2 및 4만 인쇄합니다(3을 건너뜁니다). ### For 루프 *for* 키워드는 다른 프로그래밍 언어와 유사하지만 구문이 약간 다른 for 루프를 만드는 데 사용됩니다. 루프는 시퀀스(즉, 목록, 튜플, 사전, 집합 또는 문자열)를 반복하는 데 사용됩니다. - For loop with list ```py # syntax for iterator in lst: code goes here ``` **예시:** ```py numbers = [0, 1, 2, 3, 4, 5] for number in numbers: # number is temporary name to refer to the list's items, valid only inside this loop print(number) # the numbers will be printed line by line, from 0 to 5 ``` - For loop with string ```py # syntax for iterator in string: code goes here ``` **예시:** ```py language = 'Python' for letter in language: print(letter) for i in range(len(language)): print(language[i]) ``` - For loop with tuple ```py # syntax for iterator in tpl: code goes here ``` **예시:** ```py numbers = (0, 1, 2, 3, 4, 5) for number in numbers: print(number) ``` - 사전을 사용한 For 루프 사전을 통한 루프는 사전의 키를 제공합니다. ```py # syntax for iterator in dct: code goes here ``` **예시:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } for key in person: print(key) for key, value in person.items(): print(key, value) # this way we get both keys and values printed out ``` - Loops in set ```py # syntax for iterator in st: code goes here ``` **예시:** ```py it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} for company in it_companies: print(company) ``` ### Break 과 Continue - Part 2 짧은 알림: *중단* : 루프가 완료되기 전에 중단하고 싶을 때 중단을 사용합니다. ```py # syntax for iterator in sequence: code goes here if condition: break ``` **예시:** ```py numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: break ``` 위의 예에서 루프는 3에 도달하면 중지됩니다. 계속: 루프 반복에서 일부 단계를 건너뛰고 싶을 때 계속을 사용합니다. ```py # syntax for iterator in sequence: code goes here if condition: continue ``` **예시:** ```py numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: continue print('Next number should be ', number + 1) if number != 5 else print("loop's end") # for short hand conditions need both if and else statements print('outside the loop') ``` 위의 예에서 숫자가 3이면 조건 *다음* 단계(루프 내부)를 건너뛰고 반복이 남아 있으면 루프 실행이 계속됩니다. ### 범위 기능 *range()* 함수는 숫자 목록에 사용됩니다. *범위(시작, 끝, 단계)* 는 시작, 종료 및 증분의 세 가지 매개변수를 사용합니다. 기본적으로 0부터 시작하고 증분은 1입니다. 범위 시퀀스에는 최소 1개의 인수(종료)가 필요합니다. 범위를 사용하여 시퀀스 만들기 ```py lst = list(range(11)) print(lst) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] st = set(range(1, 11)) # 2 arguments indicate start and end of the sequence, step set to default 1 print(st) # {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} lst = list(range(0,11,2)) print(lst) # [0, 2, 4, 6, 8, 10] st = set(range(0,11,2)) print(st) # {0, 2, 4, 6, 8, 10} ``` ```py # syntax for iterator in range(start, end, step): ``` **예시:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 ``` ### 중첩 For 루프 루프 안에 루프를 작성할 수 있습니다. ```py # syntax for x in y: for t in x: print(t) ``` **예시:** ```py person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_marred': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } for key in person: if key == 'skills': for skill in person['skills']: print(skill) ``` ### For Else 루프가 끝날 때 메시지를 실행하려면 else를 사용합니다. ```py # syntax for iterator in range(start, end, step): do something else: print('The loop ended') ``` **예시:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 else: print('The loop stops at', number) ``` ### Pass Python에서 when 문이 필요하지만(세미콜론 뒤에) 코드를 실행하는 것을 좋아하지 않으므로 오류를 피하기 위해 *pass* 라는 단어를 쓸 수 있습니다. 또한 향후 진술을 위해 자리 표시자로 사용할 수 있습니다. **예시:** ```py for number in range(6): pass ``` 🌕 당신은 큰 이정표를 세웠고, 당신은 멈출 수 없습니다. 계속하세요! 10일차 챌린지를 방금 완료했으며 위대함을 향한 10단계를 앞두고 있습니다. 이제 뇌와 근육을 위한 몇 가지 운동을 하십시오. ## 💻 Exercises: Day 10 ### Exercises: Level 1 1. for 루프를 사용하여 0에서 10까지 반복하고 while 루프를 사용하여 동일한 작업을 수행합니다. 2. for 루프를 사용하여 10에서 0까지 반복하고 while 루프를 사용하여 동일한 작업을 수행합니다. 3. print()를 7번 호출하는 루프를 작성하여 다음 삼각형을 출력합니다. ```py # ## ### #### ##### ###### ####### ``` 4. 중첩 루프를 사용하여 다음을 만듭니다. ```sh # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ``` 5. 다음 패턴을 인쇄합니다. ```sh 0 x 0 = 0 1 x 1 = 1 2 x 2 = 4 3 x 3 = 9 4 x 4 = 16 5 x 5 = 25 6 x 6 = 36 7 x 7 = 49 8 x 8 = 64 9 x 9 = 81 10 x 10 = 100 ``` 6. for 루프를 사용하여 ['Python', 'Numpy','Pandas','Django', 'Flask'] 목록을 반복하고 항목을 출력합니다. 7. for 루프를 사용하여 0에서 100까지 반복하고 짝수만 출력 8. for 루프를 사용하여 0에서 100까지 반복하고 홀수만 출력 ### Exercises: Level 2 1. for 루프를 사용하여 0에서 100까지 반복하고 모든 숫자의 합계를 인쇄합니다. ```sh The sum of all numbers is 5050. ``` 1. for 루프를 사용하여 0에서 100까지 반복하고 모든 짝수의 합과 모든 승산의 합을 인쇄합니다. ```sh The sum of all evens is 2550. And the sum of all odds is 2500. ``` ### Exercises: Level 3 1. 데이터 폴더로 이동하여 [countries.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) 파일을 사용합니다. 국가를 순환하고 단어 *land* 를 포함하는 모든 국가를 추출합니다. 2. 이것은 과일 목록입니다. ['banana', 'orange', 'mango', 'lemon'] 루프를 사용하여 순서를 뒤집습니다. 3. 데이터 폴더로 이동하여 [countries_data.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) 파일을 사용합니다. 1. 데이터의 총 언어 수는 얼마입니까? 2. 데이터에서 가장 많이 사용되는 10개 언어 찾기 3. 세계에서 인구가 가장 많은 10개 국가 찾기 🎉 축하합니다! 🎉 [<< Day 9](../09_Day_Conditionals/09_conditionals.md) | [Day 11 >>](../11_Day_Functions/11_functions.md) ================================================ FILE: Korean/readme_ko.md ================================================ # 🐍 30 Days Of Python |# Day | Topics | |------|:---------------------------------------------------------:| | 01 | [Introduction](./readme_ko.md)| | 02 | [Variables, Built-in Functions](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md)| | 03 | [Operators](../03_Day_Operators/03_operators.md)| | 04 | [Strings](../04_Day_Strings/04_strings.md)| | 05 | [Lists](../05_Day_Lists/05_lists.md)| | 06 | [Tuples](../06_Day_Tuples/06_tuples.md)| | 07 | [Sets](../07_Day_Sets/07_sets.md)| | 08 | [Dictionaries](../08_Day_Dictionaries/08_dictionaries.md)| | 09 | [Conditionals](../09_Day_Conditionals/09_conditionals.md)| | 10 | [Loops](../10_Day_Loops/10_loops.md)| | 11 | [Functions](../11_Day_Functions/11_functions.md)| | 12 | [Modules](../12_Day_Modules/12_modules.md)| | 13 | [List Comprehension](../13_Day_List_comprehension/13_list_comprehension.md)| | 14 | [Higher Order Functions](../14_Day_Higher_order_functions/14_higher_order_functions.md)| | 15 | [Python Type Errors](../15_Day_Python_type_errors/15_python_type_errors.md)| | 16 | [Python Date time](../16_Day_Python_date_time/16_python_datetime.md) | | 17 | [Exception Handling](../17_Day_Exception_handling/17_exception_handling.md)| | 18 | [Regular Expressions](../18_Day_Regular_expressions/18_regular_expressions.md)| | 19 | [File Handling](../19_Day_File_handling/19_file_handling.md)| | 20 | [Python Package Manager](../20_Day_Python_package_manager/20_python_package_manager.md)| | 21 | [Classes and Objects](../21_Day_Classes_and_objects/21_classes_and_objects.md)| | 22 | [Web Scraping](../22_Day_Web_scraping/22_web_scraping.md)| | 23 | [Virtual Environment](../23_Day_Virtual_environment/23_virtual_environment.md)| | 24 | [Statistics](../24_Day_Statistics/24_statistics.md)| | 25 | [Pandas](../25_Day_Pandas/25_pandas.md)| | 26 | [Python web](../26_Day_Python_web/26_python_web.md)| | 27 | [Python with MongoDB](../27_Day_Python_with_mongodb/27_python_with_mongodb.md)| | 28 | [API](../28_Day_API/28_API.md)| | 29 | [Building API](../29_Day_Building_API/29_building_API.md)| | 30 | [Conclusions](../30_Day_Conclusions/30_conclusions.md)| 🧡🧡🧡 HAPPY CODING 🧡🧡🧡
Support the author to create more educational materials
Paypal Logo

30 Days Of Python: Day 1 - Introduction

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[Day 2 >>](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [🐍 30 Days Of Python](#-30-days-of-python) - [📘 Day 1](#-day-1) - [환영합니다](#환영합니다) - [소개](#소개) - [왜 Python이느냐?](#왜-python이느냐?) - [환경 설정](#환경-설정) - [Python 설치](#python-설치) - [Python 셸](#python-셸) - [Visual Studio Code 설치](#visual-studio-code-설치) - [visual studio code를 사용하기](#visual-studio-code를-사용하기) - [Python 기본](#python-기본) - [Python 구문](#python-구문) - [Python 들여쓰기](#python-들여쓰기) - [주석](#주석) - [데이터 타입](#데이터-타입) - [Number](#number) - [String](#string) - [Booleans](#booleans) - [List](#list) - [Dictionary](#dictionary) - [Tuple](#tuple) - [Set](#set) - [데이터 타입 체크](#데이터-타입-체크) - [Python 파일](#python-파일) - [💻 Exercises - Day 1](#-exercises---day-1) - [Exercise: Level 1](#exercise-level-1) - [Exercise: Level 2](#exercise-level-2) - [Exercise: Level 3](#exercise-level-3) # 📘 Day 1 ## 환영합니다 _30 days of Python_에 참여하기로 결정하신 것을 **축하드립니다**. 이 챌린지에서는 Python 프로그래머가 되기 위해 필요한 모든 것과 프로그래밍의 전체 개념을 배우게 됩니다. 챌린지가 끝나면 _30DaysOfPython_프로그래밍 챌린지 인증서를 받게 됩니다. 챌린지에 적극적으로 참여하고 싶다면 [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython) 텔레그램 그룹에 가입할 수 있습니다. ## 소개 Python은 범용 프로그래밍을 위한 고급 프로그래밍 언어입니다. 오픈 소스, 인터프리터, 객체 지향 프로그래밍 언어입니다. Python은 네덜란드 프로그래머 Guido van Rossum이 만들었습니다. Python 프로그래밍 언어의 이름은 영국 스케치 코미디 시리즈 *Month Python's Flying Circus* 에서 파생되었습니다. 첫 번째 버전은 1991년 2월 20일에 출시되었습니다. 이 30일간의 Python 챌린지는 최신 버전의 Python인 Python 3를 차근차근 배울 수 있도록 도와줄 것입니다. 주제는 30일로 나뉘며, 매일 이해하기 쉬운 설명, 실제 사례, 많은 실습 및 프로젝트가 포함된 여러 주제가 포함됩니다. 이 챌린지는 Python 프로그래밍 언어를 배우고자 하는 초보자와 전문가를 위해 고안되었습니다. 챌린지를 완료하는 데 30~100일이 소요될 수 있으며 텔레그램 그룹에 적극적으로 참여하는 사람들이 챌린지를 완료할 확률이 높습니다. 시각적 학습자이거나 동영상을 선호하는 경우 이 [완전 초보를 위한 Python 동영상](https://www.youtube.com/watch?v=11OYpBrhdyM)으로 시작할 수 있습니다. ## 왜 Python이느냐? 인간의 언어에 매우 가깝고 배우기 쉽고 사용하기 쉬운 프로그래밍 언어입니다. Python은 다양한 산업 및 회사(Google 포함)에서 사용됩니다. 웹 응용 프로그램, 데스크톱 응용 프로그램, 시스템 관리 및 기계 학습 라이브러리를 개발하는 데 사용되었습니다. Python은 데이터 과학 및 기계 학습 커뮤니티에서 널리 사용되는 언어입니다. 이것이 Python 학습을 시작하도록 설득하기에 충분하기를 바랍니다. Python은 세상을 지배하고 있으니 지배 당하기 전에 Python을 지배하십시오. ## 환경 설정 ### Python 설치 Python 스크립트를 실행하려면 Python을 설치해야 합니다. Python을 [다운로드](https://www.python.org/)합시다. Windows 사용자인 경우. 빨간색 동그라미 친 버튼을 클릭합니다. macOS 사용자인 경우. 빨간색 동그라미 친 버튼을 클릭합니다. [![Windows에서 설치](../images/installing_on_windows.png)](https://www.python.org/) Python이 설치되어 있는지 확인하려면 장치 터미널에 다음 명령을 작성하십시오. ```shell python --version ``` ![Python Version](../images/python_versio.png) 터미널에서 보시다시피 저는 현재 _Python 3.7.5_ 버전을 사용하고 있습니다. 귀하의 Python 버전은 내 버전과 다를 수 있지만 3.6 이상이어야 합니다. Python 버전을 볼 수 있다면 잘한 것입니다. 이제 컴퓨터에 Python이 설치되었습니다. 다음 섹션으로 계속 진행하십시오. ### Python 셸 Python은 해석된 스크립팅 언어이므로 컴파일할 필요가 없습니다. 코드를 한 줄씩 실행한다는 의미입니다. Python은 _Python Shell(Python Interactive Shell)_과 함께 제공됩니다. 단일 Python 명령을 실행하고 결과를 얻는 데 사용됩니다. Python Shell은 사용자의 Python 코드를 기다립니다. 코드를 입력하면 코드를 해석하여 다음 줄에 결과를 표시합니다. 터미널이나 명령 프롬프트(cmd)를 열고 쓰기: ```shell python ``` ![Python Scripting Shell](../images/opening_python_shell.png) Python 대화형 셸이 열리고 Python 코드(Python 스크립트)를 작성하기를 기다립니다. 기호 >>> 옆에 Python 스크립트를 작성하고 Enter를 누릅니다. Python 스크립팅 셸에서 첫 번째 스크립트를 작성해 보겠습니다. ![Python script on Python shell](../images/adding_on_python_shell.png) 훌륭합니다. Python 대화형 셸에서 첫 번째 Python 스크립트를 작성했습니다. Python 대화형 셸을 어떻게 닫습니까? 셸을 닫으려면 기호 옆에 >> **exit()** 명령을 작성하고 Enter 키를 누릅니다. ![Exit from python shell](../images/exit_from_shell.png) 이제 Python 대화형 셸을 여는 방법과 종료하는 방법을 알았습니다. Python은 Python이 이해하는 스크립트를 작성하면 결과를 제공하고 그렇지 않으면 오류를 반환합니다. 고의적인 실수를 하고 Python이 무엇을 반환하는지 봅시다. ![Invalid Syntax Error](../images/invalid_syntax_error.png) 반환된 오류에서 볼 수 있듯이 Python은 우리가 저지른 실수와 _Syntax Error: invalid syntax_를 알고 있을 정도로 영리합니다. Python에서 x를 곱셈으로 사용하는 것은 (x)가 Python에서 유효한 구문이 아니기 때문에 구문 오류입니다. (**x**) 대신 곱셈에 별표(*)를 사용합니다. 반환된 오류는 수정해야 할 사항을 명확하게 보여줍니다. 프로그램에서 오류를 식별하고 제거하는 프로세스를 *디버깅*이라고 합니다. **x** 대신 *를 넣어 디버깅해 봅시다. ![Fixing Syntax Error](../images/fixing_syntax_error.png) 버그가 수정되었고 코드가 실행되었으며 예상했던 결과를 얻었습니다. 프로그래머로서 매일 이러한 종류의 오류를 보게 될 것입니다. 디버깅 방법을 아는 것이 좋습니다. 디버깅을 잘하려면 어떤 종류의 오류가 발생했는지 이해해야 합니다. 발생할 수 있는 Python 오류 중 일부는 *SyntaxError*, *IndexError*, *NameError*, *ModuleNotFoundError*, *KeyError*, *ImportError*, *AttributeError*, *TypeError*, *ValueError*, *ZeroDivisionError* 등입니다. 이후 섹션에서 다른 Python **_오류 유형_**에 대해 자세히 알아볼 것입니다. Python 대화형 셸을 사용하는 방법을 더 연습해 보겠습니다. 터미널이나 명령 프롬프트로 이동하여 **python**이라는 단어를 씁니다. ![Python Scripting Shell](../images/opening_python_shell.png) Python 대화형 셸이 열립니다. 몇 가지 기본적인 수학 연산(더하기, 빼기, 곱하기, 나누기, 나머지, 지수)을 수행해 보겠습니다. Python 코드를 작성하기 전에 먼저 몇 가지 수학을 수행해 보겠습니다: - 2 + 3 = 5 - 3 - 2 = 1 - 3 \* 2 = 6 - 3 / 2 = 1.5 - 3 ^ 2 = 3 x 3 = 9 Python에는 다음과 같은 추가 작업이 있습니다: - 3 % 2 = 1 => 나머지를 구함 - 3 // 2 = 1 => 나머지를 제거 위의 수학식을 Python 코드로 바꿔봅시다. Python 셸이 열렸으며 셸 맨 처음에 주석을 작성하겠습니다. _comment_는 Python에 의해 실행되지 않는 코드의 일부입니다. 따라서 코드를 더 읽기 쉽게 만들기 위해 코드에 일부 텍스트를 남길 수 있습니다. Python은 주석 부분을 실행하지 않습니다. Python에서 주석은 해시(#) 기호로 시작합니다. 이것이 Python에서 주석을 작성하는 방법입니다 ```shell # 주석은 해시로 시작합니다. # (#) 심볼로 시작하기 때문에 이것은 파이썬 주석입니다. ``` ![Maths on python shell](../images/maths_on_python_shell.png) 다음 섹션으로 이동하기 전에 Python 대화형 셸에서 더 많은 연습을 해 보겠습니다. 셸에서 _exit()_를 작성하여 열린 셸을 닫았다가 다시 열어 Python 셸에서 텍스트를 쓰는 방법을 연습해 봅시다. ![Writing String on python shell](../images/writing_string_on_shell.png) ### Visual Studio Code 설치 Python 대화형 셸은 작은 스크립트 코드를 시도하고 테스트하는 데 적합하지만 큰 프로젝트에는 적합하지 않습니다. 실제 작업 환경에서 개발자는 다양한 코드 편집기를 사용하여 코드를 작성합니다. 이 30일간의 Python 프로그래밍 챌린지에서는 Visual Studio 코드를 사용합니다. Visual Studio Code는 매우 인기 있는 오픈 소스 텍스트 편집기입니다. 나는 vscode의 팬이고 Visual Studio 코드를 [다운로드](https://code.visualstudio.com/)하는 것을 추천하고 싶지만, 다른 편집자를 선호한다면 가지고 있는 것을 자유롭게 따르십시오. [![Visual Studio Code](../images/vscode.png)](https://code.visualstudio.com/) Visual Studio Code를 설치하셨다면 어떻게 사용하는지 알아보겠습니다. 비디오를 선호하는 경우 Python용 Visual Studio Code[비디오 자습서](https://www.youtube.com/watch?v=bn7Cx4z-vSo)를 따를 수 있습니다. #### visual studio code를 사용하기 Visual Studio 아이콘을 두 번 클릭하여 Visual Studio 코드를 엽니다. 열면 이런 종류의 인터페이스가 나타납니다. 레이블이 지정된 아이콘을 따라해보세요. ![Visual studio Code](../images/vscode_ui.png) 바탕 화면에 30DaysOfPython이라는 폴더를 만듭니다. 그런 다음 Visual Studio 코드를 사용하여 엽시다. ![Opening Project on Visual studio](../images/how_to_open_project_on_vscode.png) ![Opening a project](../images/opening_project.png) 파일을 열면 30DaysOfPython 프로젝트의 디렉토리 내부에 파일과 폴더를 생성하기 위한 바로 가기가 표시됩니다. 아래에서 볼 수 있듯이 첫 번째 파일인 helloworld.py를 만들었습니다. 당신도 똑같이 할 수 있습니다. ![Creating a python file](../images/helloworld.png) 하루동안 오래 코딩을 한 후에 코드 편집기를 닫고 싶습니까? 이렇게 열린 프로젝트를 닫으면 됩니다. ![Closing project](../images/closing_opened_project.png) 축하합니다. 개발 환경 설정을 완료했습니다. 코딩을 시작해 봅시다. ## Python 기본 ### Python 구문 Python 스크립트는 Python 대화형 셸 또는 코드 편집기에서 작성할 수 있습니다. Python 파일의 확장자는 .py입니다. ### Python 들여 쓰기 들여쓰기는 텍스트의 공백입니다. 많은 언어에서 들여쓰기는 코드 가독성을 높이는 데 사용되지만 Python은 들여쓰기를 사용하여 코드 블록을 만듭니다. 다른 프로그래밍 언어에서는 중괄호를 사용하여 들여쓰기 대신 코드 블록을 만듭니다. Python 코드를 작성할 때 흔히 발생하는 버그 중 하나는 잘못된 들여쓰기입니다. ![Indentation Error](../images/indentation.png) ### 주석 주석은 코드를 더 읽기 쉽게 만들고 코드에 설명을 남기기 위해 매우 중요합니다. Python은 코드의 주석 부분을 실행하지 않습니다. Python에서 해시(#)로 시작하는 모든 텍스트는 주석입니다. **예시:한 문장 주석** ```shell # This is the first comment # This is the second comment # Python is eating the world ``` **예시: 여러 문장 주석** Triple quote can be used for multiline comment if it is not assigned to a variable ```shell """This is multiline comment multiline comment takes multiple lines. python is eating the world """ ``` ### 데이터 타입 Python에는 여러 유형의 데이터 유형이 있습니다. 가장 일반적인 것부터 시작하겠습니다. 다른 데이터 유형은 다른 섹션에서 자세히 다룰 것입니다. 당분간 다양한 데이터 유형을 살펴보고 익숙해지도록 합시다. 지금은 명확하게 이해하지 않아도 됩니다. #### Number - Integer: 정수(음수, 영 그리고 양수) 예시: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: 십진수 예시 ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex 예시 1 + j, 2 + 4j #### String 작은따옴표 또는 큰따옴표 아래에 있는 하나 이상의 문자 모음입니다. 문자열이 두 문장 이상인 경우 삼중 따옴표를 사용합니다. **예시:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Boolean 부울 데이터 유형은 True 또는 False 값입니다. T와 F는 항상 대문자여야 합니다. **예시:** ```python True # 불이 켜져있나요? 그러면 참입니다. False # 불이 꺼져있나요? 그러면 거짓입니다. ``` #### List Python 리스트는 다른 데이터 유형 항목을 저장할 수 있는 정렬된 컬렉션입니다. 리스트는 JavaScript의 배열과 비슷합니다. **Example:** ```py [0, 1, 2, 3, 4, 5] # 모두 동일한 데이터 유형 - 숫자 리스트 ['Banana', 'Orange', 'Mango', 'Avocado'] # 모두 동일한 데이터 유형 - 문자열 리스트(과일) ['Finland','Estonia', 'Sweden','Norway'] # 모두 동일한 데이터 유형 - 문자열 리스트(국가) ['Banana', 10, False, 9.81] # 리스트의 다양한 데이터 유형 - 문자열, 정수, 부울 및 부동 소수점 ``` #### Dictionary Python 사전 개체는 키 값 쌍 형식의 정렬되지 않은 데이터 모음입니다. **Example:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tuple 튜플은 목록과 같은 다양한 데이터 유형의 정렬된 모음이지만 튜플이 생성되면 수정할 수 없습니다. 그것들은 변할 수 없습니다. **Example:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # Names ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # planets ``` #### Set 집합은 목록 및 튜플과 유사한 데이터 유형의 모음입니다. 목록 및 튜플과 달리 집합은 순서가 지정된 항목 모음이 아닙니다. 수학에서와 마찬가지로 Python에서 set은 고유한 항목만 저장합니다. 이후 섹션에서는 각각의 모든 Python 데이터 유형에 대해 자세히 설명합니다. **Example:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # order is not important in set ``` ### 데이터 타입 체크 특정 데이터/변수의 데이터 유형을 확인하기 위해 **type** 기능을 사용합니다. 다음 터미널에서 다양한 Python 데이터 유형을 볼 수 있습니다: ![Checking Data types](../images/checking_data_types.png) ### Python 파일 먼저 프로젝트 폴더인 30DaysOfPython을 엽니다. 이 폴더가 없으면 30DaysOfPython이라는 폴더 이름을 만듭니다. 이 폴더 안에 helloworld.py라는 파일을 만듭니다. 이제 Visual Studio 코드를 사용하여 Python 대화형 셸에서 수행한 작업을 수행해 보겠습니다. Python 대화형 셸은 **print**를 사용하지 않고 인쇄했지만 Visual Studio 코드에서 결과를 보려면 내장 함수 *print()를 사용해야 합니다. *print()* 내장 함수는 *print('arument1', 'argument2', 'argument3')*와 같이 하나 이상의 인수를 사용합니다. 아래 예를 참조하십시오. **Example:** 파일 이름은 helloworld.py. ```py # Day 1 - 30DaysOfPython Challenge print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex number print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name':'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Set print(type((9.8, 3.14, 2.7))) # Tuple ``` Python 파일을 실행하려면 아래 이미지를 확인하세요. Visual Studio Code에서 녹색 버튼을 실행하거나 터미널에 *python helloworld.py*를 입력하여 Python 파일을 실행할 수 있습니다. ![Running python script](../images/running_python_script.png) 🌕 좋습니다. 당신은 방금 1일차 도전을 완료했고 당신은 위대한 여정에 있습니다. 이제 뇌와 근육을 위한 몇 가지 훈련을 해봅시다. ## 💻 Exercises - Day 1 ### Exercise: Level 1 1. 사용 중인 Python 버전 확인 2. Python 대화형 셸을 열고 다음 작업을 수행합니다. 피연산자는 3과 4입니다. - 더하기(+) - 빼기(-) - 곱하기(\*) - 나머지(%) - 나누기(/) - 지수(\*\*) - 정수 나누기(//) 3. Python 대화형 셸에 문자열을 씁니다. 문자열은 다음과 같습니다: - 이름 - 가족 이름 - 국가 이름 - I am enjoying 30 days of python 4. 다음 데이터의 데이터 유형을 확인하십시오.: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - 이름 - 가족 이름 - 국가 이름 ### Exercise: Level 2 1. 30DaysOfPython 폴더 안에 day_1이라는 폴더를 만듭니다. day_1 폴더 안에 python 파일 helloworld.py를 만들고 질문 1, 2, 3, 4를 반복하세요. Python 파일에서 작업할 때 _print()_를 사용하는 것을 잊지 마세요. 파일을 저장한 디렉토리로 이동하여 실행합니다. ### Exercise: Level 3 1. Number(Integer, Float, Complex), String, Boolean, List, Tuple, Set 및 Dictionary와 같은 다양한 Python 데이터 유형에 대한 예제를 작성합니다. 2. 참고 [Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) (2, 3) 과 (10, 8) 사이 🎉 축하합니다 ! 🎉 [Day 2 >>](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ================================================ FILE: Portuguese/02_Dia_Variaveis_BuiltIn_Functions/README.md ================================================

30 Dias de Python: Dia 2 - Variaveis, Builtin Functions

Twitter Follow Author: Asabeneh Yetayeh
Segunda edição: July, 2021
[<< Dia 1](../README.md) | [Dia 3 >>](../03_Day_Operators/03_operators.md) ![30DiasDePython](../.././images/30DaysOfPython_banner3@2x.png) - [📘 Dia 2](#-dia-2) - [Built in functions](#built-in-functions) - [Variaveis](#Variaveis) - [Declarando múltiplas váriaveis em uma linha](#Declarando-múltiplas-variaveis-em-uma-linha) - [Tipos de dados](#Tipos-de-Dados) - [Checando tipos de dados e type Casting](#Checando-tipos-de-dados-e-Casting) - [Numeros](#Numeros) - [💻 Exercicios - Dia 2](#-Exercicios---Dia-2) - [Exercicios: Level 1](#Exercicios-level-1) - [Exercicios: Level 2](#Exercicios-level-2) # 📘 Dia 2 ## Built in functions Em Python, temos muitas built-in functions. As built-in functions estão disponíveis globalmente para seu uso, o que significa que você pode fazer uso das built-in functions sem importar ou configurar. Algumas das built-in functions do Python mais usadas são as seguintes: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_ e _dir()_ . Na tabela a seguir, você verá uma lista gigantesca de funções do Python retiradas da [documentação do python](https://docs.python.org/3.9/library/functions.html). ![Built-in Functions](../.././images/builtin-functions.png) Vamos abrir o shell do Python e começar a usar algumas built-in functions. ![Built-in functions](../.././images/builtin-functions_practice.png) Vamos praticar mais usando diferentes built-in functions ![Help and Dir Built in Functions](../.././images/help_and_dir_builtin.png) Como você pode ver no terminal acima, O Python possui palavras reservadas. Não usamos palavras reservadas para declarar variáveis ​​ou funções. Abordaremos as variáveis ​​na próxima seção. Acredito que agora você já esteja familiarizado com as built-in functions. Vamos fazer mais uma prática de built-in functions e passaremos para a próxima seção. ![Min Max Sum](../.././images/builtin-functional-final.png) ## Variaveis As variáveis ​​armazenam dados na memória do computador. Variáveis ​​mnemônicas são recomendadas para uso em muitas linguagens de programação. Uma variável mnemônica é um nome de variável que pode ser facilmente lembrado e associado. Uma variável refere-se a um endereço de memória no qual os dados são armazenados. Número no início, caractere especial e hífen não são permitidos ao nomear uma variável. Uma variável pode ter um nome curto (como x, y, z), mas um nome mais descritivo tipo (nome, sobrenome, idade, país) é altamente recomendado. Regras da nomeclatura de variáveis no ​​​​Python - O nome de uma variável deve começar com uma letra ou underline - O nome de uma variável não pode começar com um número - Um nome de variável só pode conter caracteres alfanuméricos e underlines (A-z, 0-9 e \_ ) - O interpretador Python ​​diferencia maiúsculas de minúsculas (nome, nome, nome e PRIMEIRO NOME) são variáveis ​​diferentes) então tome cuidado com isso. Aqui estão alguns exemplos de nomes de variáveis ​​válidos: ```shell firstname lastname age country city first_name last_name capital_city _if # if we want to use reserved word as a variable year_2021 year2021 current_year_2021 birth_year num1 num2 ``` Nomes invalidos de variaveis ```shell first-name first@name first$name num-1 1num ``` Usaremos o estilo de nomenclatura de variáveis ​​Python padrão que foi adotado por muitos desenvolvedores Python. Os desenvolvedores Python usam a convenção de nomenclatura de variáveis ​​​​snake case (snake_case). Usamos underline após cada palavra para uma variável contendo mais de uma palavra (por exemplo, primeiro_nome, sobrenome, velocidade_de_rotação_do_motor). O exemplo abaixo é um exemplo de nomenclatura padrão de variáveis, o underline é necessário quando o nome da variável tem mais de uma palavra (isso é uma boa prática). Quando atribuímos um determinado tipo de dado a uma variável, isso é chamado de declaração de variável. Por exemplo, no exemplo abaixo, meu primeiro nome é atribuído a uma variável first_name. O sinal de igual é um operador de atribuição. Atribuir significa armazenar dados na variável (dar um valor a uma variavel). O sinal de igual em Python não é igualdade como em Matemática. _Exemplo:_ ```py # Variables in Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` Vamos usar as funções _print()_ e _len()_. A função de impressão aceita um número ilimitado de argumentos. Um argumento é um valor que podemos passar ou colocar entre parênteses, veja o exemplo abaixo. **Exemplo:** ```py print('Hello, World!') # The text Hello, World! is an argument print('Hello',',', 'World','!') # it can take multiple arguments, four arguments have been passed print(len('Hello, World!')) # it takes only one argument ``` Vamos imprimir e também encontrar o comprimento das variáveis ​​declaradas no topo: **Exemplo:** ```py # Printing the values stored in the variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### Declarando múltiplas variaveis em uma linha Múltiplas variáveis ​​também podem ser declaradas em uma linha: **Exemplo:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` Podemos obter a entrada do usuário usando a função _input()_. Vamos atribuir os dados que obtemos de um usuário às variáveis ​​first_name e age. **Exemplo:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## Tipos de Dados Existem vários tipos de dados no Python. Para identificar o tipo de dados, usamos a função _type_. Gostaria de pedir que você se concentrasse em compreender muito bem os diferentes tipos de dados. Quando se trata de programação, tudo se resume a tipos de dados. Introduzi os tipos de dados logo no início e depois veremos de novo, porque cada tópico está relacionado aos tipos de dados. Abordaremos os tipos de dados com mais detalhes em suas respectivas seções. ## Checando tipos de dados e Casting - Checando tipos de dados: Para verificar o tipo de dados de determinados dados/variáveis, usamos o _type_ **Exemplo:** ```py # Different python data types # Let's declare variables with various data types first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, it is not my real age, don't worry about it # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - Type Casting: Podemos converter um tipo de dado em outro tipo de dado. Nós podemos usar esses tipos para fazer o casting _int()_, _float()_, _str()_, _list_, _set_ Quando fazemos operações aritméticas, os números das strings devem ser primeiro convertidos para int ou float, caso contrário, retornará um erro. Se concatenarmos um número com uma string, o número deverá primeiro ser convertido em uma string. Falaremos sobre concatenação na seção String. **Exemplo:** ```py # int to float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # float to int gravity = 9.81 print(int(gravity)) # 9 # int to str num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # str to int or float num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # str to list first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Numeros Numeros e tipos de dados em python: 1. Inteiros: Inteiros são considerados os(negativos, zero números positivos) Exemplo: ... -3, -2, -1, 0, 1, 2, 3 ... 2. Float(Números Decimais) Exemplo: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... 3. Números Complexos Exemplo: 1 + j, 2 + 4j, 1 - 1j 🌕 Você é incrível. Você acabou de completar os desafios do dia 2 e está dois passos à frente no caminho para a grandeza. Agora faça alguns exercícios para o cérebro e os músculos. ## 💻 Exercicios - Dia 2 ### Exercicios: Level 1 1. Dentro de 30DiasDePython crie uma pasta chamada dia_2. Dentro desta pasta crie um arquivo chamado variáveis.py 2. Escreva um comentário em python dizendo: 'Dia 2/30 dias de programação em python' 3. Declare uma variável de primeiro nome e atribua um valor a ela 4. Declare uma variavel de sobrenome e atribua um valor a ela 5. Declare uma variavel de nome completo e atribua um valor a ela 6. Declare uma variavel do seu país e atribua um valor a ela 7. Declare uma variavel da sua cidade e atribua um valor a ela 8. Declare uma variavel da sua idade e atribua um valor a ela 9. Declare uma variavel ano e atribua um valor a ela 10. Declare uma variavel is_married e atribua um valor a ela 11. Declare uma variavel is_true e atribua um valor a ela 12. Declare uma variavel is_light_on e atribua um valor a ela 13. Declare multiplas variaveis em uma linha ### Exercicios: Level 2 1. Verifique o tipo de dados de todas as suas variáveis ​​usando a função integrada type() 1. Usando a função integrada _len()_, encontre o comprimento do seu primeiro nome 1. Compare o comprimento do seu nome e do seu sobrenome 1. Declare 5 como num_one e 4 como num_two 1. Adicione num_one e num_two e atribua o valor a uma variável total 2. Subtraia num_two de num_one e atribua o valor a uma variável diff 3. Multiplique num_two e num_one e atribua o valor a um produto variável 4. Divida num_one por num_two e atribua o valor a uma divisão variável 5. Use a divisão de módulo para encontrar num_dois dividido por num_um e atribua o valor a uma variável restante 6. Calcule num_one elevado a num_two e atribua o valor a uma variável exp 7. Encontre a divisão mínima de num_one por num_two e atribua o valor a uma variável floor_division 2. O raio de um círculo é de 30 metros. 1. Calcule a área de um círculo e atribua o valor a um nome de variável de _area_of_circle_ 2. Calcule a circunferência de um círculo e atribua o valor a um nome de variável _circum_of_circle_ 3. Pegue o raio como entrada do usuário e calcule a área. 1. Use a função de entrada integrada para obter nome, sobrenome, país e idade de um usuário e armazenar o valor em seus nomes de variáveis ​​correspondentes 1. Execute help('keywords') no Python shell ou em seu arquivo para verificar as palavras ou palavras-chave reservadas do Python 🎉 PARABÉNS ! 🎉 [<< Day 1](../README.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ================================================ FILE: Portuguese/README.md ================================================ # 🐍 30 Dias de python |# Day | Topics | |------|:---------------------------------------------------------:| | 01 | [Introdução](./readme.md)| | 02 | [Variaveis, Built-in Functions](./02_Dia_Variaveis_BuiltIn_Functions/README.md)| | 03 | [Operadores](./03_Day_Operators/03_operators.md)| | 04 | [Strings](./04_Day_Strings/04_strings.md)| | 05 | [Listas](./05_Day_Lists/05_lists.md)| | 06 | [Tuplas](./06_Day_Tuples/06_tuples.md)| | 07 | [Conjuntos](./07_Day_Sets/07_sets.md)| | 08 | [Dicionários](./08_Day_Dictionaries/08_dictionaries.md)| | 09 | [Condicionais](./09_Day_Conditionals/09_conditionals.md)| | 10 | [Loops](./10_Day_Loops/10_loops.md)| | 11 | [Funções](./11_Day_Functions/11_functions.md)| | 12 | [Modulos](./12_Day_Modules/12_modules.md)| | 13 | [Compreensão de Listas](./13_Day_List_comprehension/13_list_comprehension.md)| | 14 | [Higher Order Functions](./14_Day_Higher_order_functions/14_higher_order_functions.md)| | 15 | [Tripos de Erros](./15_Day_Python_type_errors/15_python_type_errors.md)| | 16 | [Python Date time](./16_Day_Python_date_time/16_python_datetime.md) | | 17 | [Manipulação de Excessão](./17_Day_Exception_handling/17_exception_handling.md)| | 18 | [Regex (Expressões Regulares)](./18_Day_Regular_expressions/18_regular_expressions.md)| | 19 | [Manipulação De Arquivos](./19_Day_File_handling/19_file_handling.md)| | 20 | [Gerenciador De Pacotes](./20_Day_Python_package_manager/20_python_package_manager.md)| | 21 | [Classes e Objetos](./21_Day_Classes_and_objects/21_classes_and_objects.md)| | 22 | [Web Scraping](./22_Day_Web_scraping/22_web_scraping.md)| | 23 | [Ambiente Virtual](./23_Day_Virtual_environment/23_virtual_environment.md)| | 24 | [Estatisticas](./24_Day_Statistics/24_statistics.md)| | 25 | [Pandas](./25_Day_Pandas/25_pandas.md)| | 26 | [Python web](./26_Day_Python_web/26_python_web.md)| | 27 | [Python com MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md)| | 28 | [API](./28_Day_API/28_API.md)| | 29 | [Construindo API's](./29_Day_Building_API/29_building_API.md)| | 30 | [Conclusão](./30_Day_Conclusions/30_conclusions.md)| 🧡🧡🧡 CODANDO FELIZ 🧡🧡🧡
Ajudem o autor a criar mais materiais educacionais
Paypal Logo

30 Dias De Python: Dia 1 - Introdução

Twitter Follow Autor: Asabeneh Yetayeh
Segunda Edição: July, 2021
[Dia 2 >>](./02_Dia_Variaveis_BuiltIn_Functions/README.md) ![30DaysOfPython](.././images/30DaysOfPython_banner3@2x.png) - [🐍 30 Dias de python](#-30-dias-de-python) - [📘 Dia 1](#-dia-1) - [Bem Vindo!](#bem-vindo) - [Introdução](#introdução) - [Por quê Python?](#por-quê-python) - [Setup do ambiente](#setup-do-ambiente) - [Instalando o Python](#instalando-o-python) - [Python Shell](#python-shell) - [Instalando o Visual Studio Code](#instalando-o-visual-studio-code) - [Como usar o Visual Studio Code](#como-usar-o-visual-studio-code) - [Basico de Python](#basico-de-python) - [Sintaxe do Python](#sintaxe-do-python) - [Identação do Python](#identação-do-python) - [Comentários](#comentários) - [Tipos de dados](#tipos-de-dados) - [Números](#números) - [Strings](#strings) - [Booleanos](#booleanos) - [Listas](#listas) - [Dicionário](#dicionário) - [Tupla](#tupla) - [Set](#set) - [Checando Tipos de Dados](#checando-tipos-de-dados) - [Arquivo Python](#arquivo-python) - [💻 Exercicios - Dia 1](#-exercicios---dia-1) - [Exercicio: Level 1](#exercicio-level-1) - [Exercicio: Level 2](#exercicio-level-2) - [Exercicio: Level 3](#exercicio-level-3) # 📘 Dia 1 ## Bem Vindo! **Parabéns** por decidir participar do desafio de programação _30 dias de Python_ . E nesse desafio você vai aprender tudo o que você precisa para se tornar um programador python e todo o conceito de programação. No final do desafio você receberá o certificado do desafio de programação _30DiasDePython_. Se você quiser se envolver ativamente no desafio, você pode se juntar ao grupo do telegram [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython). ## Introdução Python é uma linguagem de programação de alto nível para programação de uso geral. É uma linguagem de programação de código aberto, interpretada e orientada a objetos. Python foi criado por um programador holandês, Guido van Rossum. O nome da linguagem de programação Python foi derivado de uma série de comédia britânica, _Monty Python's Flying Circus_. A primeira versão foi lançada em 20 de fevereiro de 1991. Este desafio de 30 dias de Python irá ajudá-lo a aprender a versão mais recente do Python, Python 3, passo a passo. Os tópicos são divididos em 30 dias, onde cada dia contém diversos tópicos com explicações fáceis de entender, exemplos do mundo real, muitos exercícios práticos e projetos. Este desafio foi desenvolvido para iniciantes e profissionais que desejam aprender a linguagem de programação python. Pode levar de 30 a 100 dias para completar o desafio, as pessoas que participam ativamente do grupo de telegramas têm grande probabilidade de completar o desafio. Este desafio é fácil de ler, escrito originalmente em inglês coloquial e traduzido para um português, envolvente, motivador e ao mesmo tempo muito exigente. Você precisa destinar muito tempo para terminar este desafio. Se você é um dos que aprendem melhor vendo, você pode assistir às vídeo-aulas em Canal do Youtube do Washera Você pode começar pelo [Video de Python para iniciantes absolutos](https://youtu.be/OCCWZheOesI). Se inscreva no canal, comente suas dúvidas nos vídeos do YouTube e seja proativo, o autor eventualmente notará você. O autor gosta de ouvir sua opinião sobre o desafio, compartilhe o artigo do autor dando um feedback com sua opinião sobre o desafio 30DiasDePython. E você pode deixar seu feedback sobre o artigo em: [link](https://www.asabeneh.com/testimonials) ## Por quê Python? É uma linguagem de programação muito próxima da linguagem humana, com uma sintaxe simples! e por isso fácil de aprender e usar. Python é usado por vários setores e empresas (incluindo o Google). Ele tem sido usado para desenvolver aplicações web, aplicativos de desktop, administração de sistemas e bibliotecas de machine learning. Python é uma linguagem altamente adotada na comunidade de data science e machine learning. Espero que isso seja suficiente para convencê-lo a começar a aprender Python. ## Setup do ambiente ### Instalando o Python Para executar um script escrito em Python, você precisa instalar o Python. Vamos para a página [download](https://www.python.org/) python. Se você for um usuario de windows. Clique no botão circulado em vermelho. [![instalando no Windows](.././images/installing_on_windows.png)](https://www.python.org/) Se você for um usuário de MacOs. Clique no botão circulado em vermelho. [![instalando no MacOs](.././images/installing_on_macOS.png)](https://www.python.org/) Para verificar se o python está instalado, digite o seguinte comando no terminal do seu dispositivo. ```shell python --version ``` ![Versão do Python](.././images/python_versio.png) Como você pode ver no terminal, estou usando a versão _Python 3.7.5_ no momento. Sua versão do Python pode ser diferente da minha, mas deve ser 3.6 ou superior. Se você conseguir ver a versão python, muito bem. Python foi instalado em sua máquina. Continue para a próxima seção. ### Python Shell Python é uma linguagem de script interpretada, portanto não precisa ser compilada. Isso significa que executa o código linha por linha. O Python vem com um _Python Shell (Shell Interativo do Python)_, também conhecido como REPL (Read Eval Print Loop). E é usado para executar um único comando python e obter o resultado. O Python Shell aguarda o código Python do usuário. Ao inserir o código, ele o interpreta e mostra o resultado na próxima linha. Abra seu terminal ou prompt de comando (cmd) e escreva: ```shell python ``` ![Python Scripting Shell](.././images/opening_python_shell.png) O shell interativo do Python é aberto e aguarda que você escreva o código em Python (script Python). E você escreverá seu script Python próximo a este símbolo >>> e clique em Enter. Vamos escrever nosso primeiro scripts no shell de script Python. ![Python script on Python shell](.././images/adding_on_python_shell.png) Muito bem, você escreveu seu primeiro script Python no shell interativo Python. Como fechamos o shell interativo do Python? Para fechar o shell, próximo a este símbolo >> escreva o comando **exit()** e pressione Enter. ![Exit from python shell](.././images/exit_from_shell.png) Agora você sabe como abrir o shell interativo do Python e como sair dele. Python fornecerá resultados se você escrever scripts que Python entenda; caso contrário, retornará erros. Vamos cometer um erro proposital e ver o que o Python retornará. ![Invalid Syntax Error](.././images/invalid_syntax_error.png) Como você pode ver no erro retornado, Python é tão inteligente que sabe o erro que cometemos e que foi _Syntax Error: Invalid Syntax_. Usar x como multiplicação em Python é um erro de sintaxe porque (x) não é uma sintaxe válida em Python. Em vez de (**x**) usamos asterisco (*) para multiplicação. O erro retornado mostra claramente o que corrigir. O processo de identificação e remoção de erros de um programa é chamado de _depuração_. Vamos depurá-lo colocando * no lugar de **x**. ![Fixing Syntax Error](.././images/fixing_syntax_error.png) Nosso bug foi corrigido, o código foi executado e obtivemos o resultado que esperávamos. Como programador, você verá esse tipo de erro diariamente. É bom saber como depurar. Para ser bom em depuração, você deve entender que tipo de erros está enfrentando. Alguns dos erros do Python que você pode encontrar são _SyntaxError_, _IndexError_, _NameError_, _ModuleNotFoundError_, _KeyError_, _ImportError_, _AttributeError_, _TypeError_, _ValueError_, _ZeroDivisionError_ etc. Veremos mais sobre diferentes tipos de erros no Python mais tarde, em outras seções! Vamos praticar mais como usar o shell interativo Python. Vá para o seu terminal ou prompt de comando e escreva a palavra **python**. ![Python Scripting Shell](.././images/opening_python_shell.png) O shell interativo do Python é aberto. Vamos fazer algumas operações matemáticas básicas (adição, subtração, multiplicação, divisão, módulo, exponencial). Vamos fazer algumas contas antes de escrever qualquer código Python: - 2 + 3 is 5 - 3 - 2 is 1 - 3 \* 2 is 6 - 3 / 2 is 1.5 - 3 ** 2 is the same as 3 * 3 Em python temos as seguintes operações adicionais: - 3 % 2 = 1 => que significa encontrar o resto ou (módulo da divisão) - 3 // 2 = 1 => que significa remover o resto da divisão Vamos mudar as expressões matemáticas acima para código Python. O shell Python foi aberto e vamos escrever um comentário logo no início do shell. Um _comentário_ é uma parte do código que não é executada por python o comentário é ignorado pelo interpretador Python. Portanto, podemos deixar algum texto em nosso código para torná-lo mais legível. Python não executa a parte de comentários. Um comentário em python começa com o símbolo hash(#). É assim que você escreve um comentário em python: ```shell # comment starts with hash # this is a python comment, because it starts with a (#) symbol ``` ![Maths on python shell](.././images/maths_on_python_shell.png) Antes de passarmos para a próxima seção, vamos praticar mais no shell interativo do Python. Feche o shell aberto escrevendo _exit()_ no shell e abra-o novamente e vamos praticar como escrever um texto no shell Python. ![Writing String on python shell](.././images/writing_string_on_shell.png) ### Instalando o Visual Studio Code O shell interativo Python é bom para testar pequenos códigos de script, mas não será para um grande projeto. No ambiente de trabalho real, os desenvolvedores usam diferentes editores de código para escrever códigos. Neste desafio de programação de 30 dias De Python usaremos código do visual studio. O Visual Studio Code é um editor de texto de código aberto muito popular. Sou fã do vscode e recomendo [download](https://code.visualstudio.com/) visual studio code, mas se você é a adépito a outros editores, fique à vontade para seguir com o que tiver. [![Visual Studio Code](.././images/vscode.png)](https://code.visualstudio.com/) Se você instalou o Visual Studio Code, vamos ver como usá-lo. Se preferir um vídeo, você pode seguir este tutorial da instalação e configuração do Visual Studio Code para Python [Video tutorial](https://www.youtube.com/watch?v=bn7Cx4z-vSo) #### Como usar o Visual Studio Code Abra o visual studio code clicando duas vezes no ícone do visual studio. Ao abri-lo, você obterá esse tipo de interface. Tente interagir com os ícones rotulados. ![Visual studio Code](.././images/vscode_ui.png) Crie uma pasta chamada 30DiasDePython no seu desktop. Em seguida, abra-a usando o visual studio code. ![Opening Project on Visual studio](.././images/how_to_open_project_on_vscode.png) ![Opening a project](.././images/opening_project.png) Após abri-lo você verá atalhos para criação de arquivos e pastas dentro do diretório do projeto 30DiasDePython. Como você pode ver abaixo, criei o primeiro arquivo, helloworld.py. Você pode fazer o mesmo. ![Creating a python file](.././images/helloworld.png) Depois de um longo dia codando, você deseja fechar seu editor de código fonte, certo? É assim que você fechará o projeto aberto. ![Closing project](.././images/closing_opened_project.png) Parabéns, você concluiu a configuração do ambiente de desenvolvimento. Vamos começar a codar. ## Basico de Python ### Sintaxe do Python Um script Python pode ser escrito no shell interativo Python ou no editor de código. Um arquivo Python possui uma extensão .py. ### Identação do Python Uma identação é um espaço em branco em um texto. A identação em muitas linguagens é usada para aumentar a legibilidade do código, mas o Python usa a identação para criar blocos de códigos. Em outras linguagens de programação, chaves são usadas para criar blocos de códigos em vez de a identação. Um dos bugs comuns ao escrever código um python é o erro de identação. ![Indentation Error](.././images/indentation.png) ### Comentários Os comentários são muito importantes para tornar o código mais legível e para deixar comentários em nosso código. Python não executa partes de comentários do nosso código. Qualquer texto que comece com hash(#) em Python é um comentário. **Exemplo: de um comentário de uma linha** ```shell # This is the first comment # This is the second comment # Python is eating the world ``` **Exemplo: de um Comentário de multiplas linhas conhecido como docstring** Aspas triplas podem ser usadas para comentários de múltiplas linhas se não estiverem atribuídas a uma variável ```shell """This is multiline comment multiline comment takes multiple lines. python is eating the world """ ``` ### Tipos de dados Em Python existem vários tipos de dados. Vamos começar com os mais comuns. Diferentes tipos de dados serão abordados em detalhes em outras seções. Por enquanto, vamos examinar os diferentes tipos de dados e nos familiarizar com eles. Você não precisa ter um entendimento claro agora. #### Números - Inteiro: É considerado Inteiro(números negativos, zero e positivos) Exemplo: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: Números decimais Exemplo: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complexos Exemplo: 1 + j, 2 + 4j #### Strings Uma coleção de um ou mais caracteres entre aspas simples ou duplas são considerados strings. Se uma string tiver mais de uma frase, usamos aspas triplas. **Exemplo:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Booleanos Um tipo de dado booleano é um valor True ou False. T e F devem estar sempre maiúsculos. **Exemplo:** ```python True # Is the light on? If it is on, then the value is True False # Is the light on? If it is off, then the value is False ``` #### Listas A lista em Python é uma coleção ordenada que permite armazenar itens de diferentes tipos de dados. Uma lista é semelhante a um array em JavaScript. **Exemplo:** ```py [0, 1, 2, 3, 4, 5] # all are the same data types - a list of numbers ['Banana', 'Orange', 'Mango', 'Avocado'] # all the same data types - a list of strings (fruits) ['Finland','Estonia', 'Sweden','Norway'] # all the same data types - a list of strings (countries) ['Banana', 10, False, 9.81] # different data types in the list - string, integer, boolean and float ``` #### Dicionário Um objeto de dicionário Python é uma coleção não ordenada de dados em um formato de par de valores-chave. **Exemplo:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tupla Uma tupla é uma coleção ordenada de diferentes tipos de dados, como uma lista, mas as tuplas não podem ser modificadas (são imutáveis) depois de criadas. Eles são imutáveis. **Exemplo:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # Names ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # planets ``` #### Set O set é uma coleção de tipos de dados semelhantes a uma lista e uma tupla. Ao contrário da lista e da tupla, set não é uma coleção ordenada de itens. Como na matemática, o conjunto em Python armazena apenas itens exclusivos. Nas seções posteriores, entraremos em detalhes sobre cada tipo de dados Python. **Exemplo:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # order is not important in set ``` ### Checando Tipos de Dados Para checar um determinado tipo de dado dados/variáveis, usamos a função **type**. No terminal a seguir você verá diferentes tipos de dados python: ![Checking Data types](.././images/checking_data_types.png) ### Arquivo Python Primeiro abra a pasta do seu projeto, 30DiasDePython. Se você não tiver essa pasta, crie um nome de pasta chamada 30DiasDePython. Dentro desta pasta, crie um arquivo chamado helloworld.py. Agora, vamos fazer o que fizemos no shell interativo python usando o visual studio code. O shell interativo do Python estava imprimindo sem usar **print** mas no visual studio code para ver nosso resultado deveríamos usar uma função integrada _print(). A função interna _print()_ recebe um ou mais argumentos da seguinte maneira _print('arument1', 'argument2', 'argument3')_. Veja os exemplos abaixo. **Exemplo:** O nome do arquivo é helloworld.py ```py # Day 1 - 30DaysOfPython Challenge print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex number print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name':'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Set print(type((9.8, 3.14, 2.7))) # Tuple ``` Para executar o arquivo python verifique a imagem abaixo. Você pode executar o arquivo python executando o botão verde em Visual Studio Code ou digitando _python helloworld.py_ no seu terminal. ![Running python script](.././images/running_python_script.png) 🌕 Você é incrível. Você acabou de completar o desafio do primeiro dia e está a caminho da grandeza. Agora faça alguns exercícios para o cérebro e os músculos. ## 💻 Exercicios - Dia 1 ### Exercicio: Level 1 1. Cheque a versão do python que você esta usando 2. Abra o shell interativo python e execute as seguintes operações. Os operandos são 3 e 4. - adição(+) - subtração(-) - multiplicação(\*) - modulo(%) - divisão(/) - exponencial(\*\*) - Divisão inteira(//) 3. Escreva strings no shell interativo python. As strings são as seguintes: - Seu nome - Seu sobrenome - Seu país - Eu estou aproveitando o 30 dias de python 4. Verifique os tipos de dados dos seguintes dados: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Seu nome - O seu sobrenome - Seu país ### Exercicio: Level 2 1. Crie uma pasta chamada dia_1 dentro da pasta 30DiasDePython. Dentro da pasta day_1, crie um arquivo python helloworld.py e repita as perguntas 1, 2, 3 e 4. Lembre-se de usar _print()_ quando estiver trabalhando em um arquivo python. Navegue até o diretório onde você salvou seu arquivo e execute-o. ### Exercicio: Level 3 1. Escreva um exemplo para diferentes tipos de dados Python, como Número (Inteiro, Flutuante, Complex), Strings, Booleanos, Listas, Tuplas, Set e Dicionário. 2. Ache a [Distancia Euclidiana](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) entre (2, 3) e (10, 8) 🎉 PARABÉNS ! 🎉 [Day 2 >>](./02_Dia_Variaveis_BuiltIn_Functions/README.md) ================================================ FILE: Spanish/01_Day_Introduction/helloworld.py ================================================ # Introducción # Día 1 - Desafío 30DaysOfPython print(2 + 3) # suma(+) print(3 - 1) # resta(-) print(2 * 3) # multiplicación(*) print(3 / 2) # división(/) print(3 ** 2) # exponencial(**) print(3 % 2) # módulo(%) print(3 // 2) # División de piso(//) # Comprobando los tipos de datos print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complejo print(type('Asabeneh')) # Cadena print(type([1, 2, 3])) # Lista print(type({'name':'Asabeneh'})) # Diccionario print(type({9.8, 3.14, 2.7})) # Conjunto print(type((9.8, 3.14, 2.7))) # Tupla ================================================ FILE: Spanish/02_Day_Variables_builtin_functions/02_variables_builtin_functions.md ================================================

30 Dias de Python: Dia 2 - Variables, Funciones integradas

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Dia 1](../readme.md) | [Dia 3 >>](../03_Day_Operators/03_operators.md) ![30DaysOfPython](../../images/30DaysOfPython_banner3@2x.png) - [📘 Día 2](#-día-2) - [Funciones integradas](#funciones-integradas) - [Variables](#variables) - [Declaración de múltiples variables en una línea](#declaración-de-múltiples-variables-en-una-línea) - [Tipos de datos](#tipos-de-datos) - [Comprobación de tipos de datos y conversión](#comprobación-de-tipos-de-datos-y-conversión) - [Números](#números) - [💻 Ejercicios - Día 2](#💻-ejercicios---día-2) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) # 📘 Dia 2 ## Funciones integradas En Python tenemos muchas funciones integradas. Las funciones integradas están disponibles globalmente para su uso, lo que significa que puede hacer uso de las funciones integradas sin importarlas ni configurarlas. Algunas de las funciones integradas de Python más utilizadas son las siguientes: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_ y _dir()_ . En la siguiente tabla, verá una lista exhaustiva de las funciones integradas de Python sacadas de la [documentación de Python](https://docs.python.org/3.9/library/functions.html). ![Funciones integradas](../../images/builtin-functions.png) Abramos el shell de Python y comencemos a usar algunas de las funciones integradas más comunes. ![Funciones integradas](../../images/builtin-functions_practice.png) Practiquemos más usando diferentes funciones integradas ![Funciones integradas de ayuda y directorio](../../images/help_and_dir_builtin.png) Como puede ver en la terminal de arriba, Python tiene palabras reservadas. No usamos palabras reservadas para declarar variables o funciones. En la siguiente sección cubriremos las variables. Creo que a estas alturas ya está familiarizado con las funciones integradas. Hagamos una práctica más de funciones integradas y pasaremos a la siguiente sección. ![Suma mín. máx.](../../images/builtin-functional-final.png) ## Variables Las variables almacenan datos en la memoria de una computadora. Se recomienda el uso de variables mnemotécnicas en muchos lenguajes de programación. Una variable mnemotécnica es un nombre de variable que se puede recordar y asociar fácilmente. Una variable se refiere a una dirección de memoria en la que se almacenan los datos. Número al principio, carácter especial o guión no están permitidos al nombrar una variable. Una variable puede tener un nombre corto (como x, y, z), pero se recomienda enfáticamente un nombre más descriptivo (nombre, apellido, edad, país). Reglas de nombres de variables de Python - Un nombre de variable debe comenzar con una letra o el carácter de subrayado - Un nombre de variable no puede comenzar con un número - Un nombre de variable solo puede contener caracteres alfanuméricos y guiones bajos (A-z, 0-9 y \_) - Los nombres de las variables distinguen entre mayúsculas y minúsculas (firstname, Firstname, FirstName y FIRSTNAME) son variables diferentes) Estos son algunos ejemplos de nombres de variables válidos: ```shell firstname lastname age country city first_name last_name capital_city _if # si queremos usar palabra reservada como variable year_2021 year2021 current_year_2021 birth_year num1 num2 ``` Nombres de variables no válidos ```shell first-name first@name first$name num-1 1num ``` Usaremos el estilo estándar de nomenclatura de variables de Python que ha sido adoptado por muchos desarrolladores de Python. Los desarrolladores de Python usan la convención de nomenclatura de variables de caja de serpiente (snake_case). Usamos un carácter de subrayado después de cada palabra para una variable que contiene más de una palabra (p. ej., nombre, apellido, velocidad de rotación del motor). El siguiente ejemplo es un ejemplo de nomenclatura estándar de variables, se requiere guión bajo cuando el nombre de la variable es más de una palabra. Cuando asignamos un determinado tipo de datos a una variable, se llama declaración de variable. Por ejemplo, en el siguiente ejemplo, mi nombre se asigna a una variable first_name. El signo igual es un operador de asignación. Asignar significa almacenar datos en la variable. El signo igual en Python no es la igualdad como en Matemáticas. _Ejemplo:_ ```py # Variables en Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` Usemos las funciones integradas _print()_ y _len()_. La función de impresión toma un número ilimitado de argumentos. Un argumento es un valor que se puede pasar o poner dentro del paréntesis de la función, vea el ejemplo a continuación. **Ejemplo:** ```py print('Hello, World!') # El texto Hola, Mundo! es un argumento print('Hello',',', 'World','!') # Puede tomar varios argumentos, se han pasado cuatro argumentos print(len('Hello, World!')) # solo se necesita un argumento ``` Imprimamos y también encontremos la longitud de las variables declaradas en la parte superior: **Ejemplo:** ```py # Imprimiendo los valores almacenados en las variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### Declaración de múltiples variables en una línea También se pueden declarar múltiples variables en una línea: **Ejemplo:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` Obtener la entrada del usuario usando la función integrada _input()_. Asignemos los datos que obtenemos de un usuario a las variables first_name y age. **Ejemplo:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## Tipos de datos Hay varios tipos de datos en Python. Para identificar el tipo de datos usamos la función incorporada _type_. Me gustaría pedirle que se concentre en comprender muy bien los diferentes tipos de datos. Cuando se trata de programar, todo se trata de tipos de datos. Introduje los tipos de datos desde el principio y viene de nuevo, porque todos los temas están relacionados con los tipos de datos. Cubriremos los tipos de datos con más detalle en sus respectivas secciones. ## Comprobación de tipos de datos y conversión - Verificar tipos de datos: para verificar el tipo de datos de ciertos datos/variables usamos el _type_ **Ejemplo:** ```py # Diferentes tipos de datos en python # Declaremos variables con varios tipos de datos first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, no es mi edad real, no te preocupes # Imprimir tipos print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - Casting: Conversión de un tipo de dato a otro tipo de dato. Usamos _int()_, _float()_, _str()_, _list_, _set_ Cuando hacemos operaciones aritméticas, los números de cadena deben convertirse primero a int o float; de lo contrario, devolverá un error. Si concatenamos un número con una cadena, el número debe convertirse primero en una cadena. Hablaremos sobre la concatenación en la sección String. **Ejemplo:** ```py # int a float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # float a int gravity = 9.81 print(int(gravity)) # 9 # int a str num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # str a int o float num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # str a list first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Números Tipos de datos numéricos en Python: 1. Integers: números enteros (negativos, cero y positivos) Ejemplo: ... -3, -2, -1, 0, 1, 2, 3... 2. Floating: números de coma (números decimales) Ejemplo: ... -3,5, -2,25, -1,0, 0,0, 1,1, 2,2, 3,5... 3. Complex: números complejos Ejemplo: 1 + j, 2 + 4j, 1 - 1j 🌕 Eres increíble. Acaba de completar los desafíos del día 2 y está dos pasos por delante en su camino hacia la grandeza. Ahora haz algunos ejercicios para tu cerebro y tus músculos. ## 💻 Ejercicios - Día 2 ### Ejercicios: Nivel 1 1. Dentro de 30DaysOfPython crea una carpeta llamada day_2. Dentro de esta carpeta crea un archivo llamado variables.py 2. Escriba un comentario de python que diga 'Día 2: 30 días de programación en python' 3. Declarar una variable de nombre y asignarle un valor 4. Declarar una variable de apellido y asignarle un valor 5. Declare una variable de nombre completo y asígnele un valor 6. Declarar una variable de país y asignarle un valor 7. Declarar una variable de ciudad y asignarle un valor 8. Declarar una variable de edad y asignarle un valor 9. Declarar una variable de año y asignarle un valor 10. Declarar una variable is_married y asignarle un valor 11. Declarar una variable is_true y asignarle un valor 12. Declare una variable is_light_on y asígnele un valor 13. Declarar múltiples variables en una línea ### Ejercicios: Nivel 2 1. Verifique el tipo de datos de todas sus variables usando la función incorporada type() 1. Usando la función incorporada _len()_, encuentre la longitud de su nombre 1. Compara la longitud de tu nombre y tu apellido 1. Declarar 5 como num_one y 4 como num_two 1. Sume num_one y num_two y asigne el valor a un total variable 2. Reste num_two de num_one y asigne el valor a una variable diff 3. Multiplique num_two y num_one y asigne el valor a un producto variable 4. Divide num_one por num_two y asigna el valor a una división variable 5. Use la división de módulo para encontrar num_two dividido por num_one y asigne el valor a un residuo variable 6. Calcula num_one a la potencia de num_two y asigna el valor a una variable exp 7. Encuentra la división de piso de num_one por num_two y asigna el valor a una variable floor_division 1. El radio de un círculo es de 30 metros. 1. Calcule el área de un círculo y asigne el valor a una variable con el nombre de _area_of_circle_ 2. Calcule la circunferencia de un círculo y asigne el valor a una variable con el nombre de _circum_of_circle_ 3. Tome el radio como entrada del usuario y calcule el área. 1. Use la función de entrada integrada para obtener el nombre, el apellido, el país y la edad de un usuario y almacene el valor en sus nombres de variables correspondientes 1. Ejecute la ayuda ('palabras clave') en el shell de Python o en su archivo para verificar las palabras o palabras clave reservadas de Python 🎉 ¡FELICITACIONES! 🎉 [<< Day 1](../readme.md) | [Day 3 >>](../03_Day_Operators/03_operators.md) ================================================ FILE: Spanish/02_Day_Variables_builtin_functions/variables.py ================================================ # Variables en Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } # Imprimir los valores almacenados en las variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) # Declarar múltiples variables en una línea first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ================================================ FILE: Spanish/02_variables_builtin_functions_sp.md ================================================

30 días de Python: Día 2 - Variables y funciones integradas

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 1](./readme_sp.md) | [Día 3 >>](./03_operators_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) _Lectura aproximada: 12 min_ - [📘 Día 2](#-día-2) - [Funciones integradas](#funciones-integradas) - [Variables](#variables) - [Declarar varias variables en una línea](#declarar-varias-variables-en-una-línea) - [Tipos de datos](#tipos-de-datos) - [Conversión de tipos de datos](#conversión-de-tipos-de-datos) - [Números](#números) - [💻 Ejercicios - Día 2](#-ejercicios---día-2) - [Ejercicio: Nivel 1](#ejercicio-nivel-1) - [Ejercicio: Nivel 2](#ejercicio-nivel-2) # 📘 Día 2 ## Funciones integradas Python proporciona muchas funciones integradas. Las funciones integradas están disponibles a nivel global, lo que significa que puede usarlas sin importar o configurar nada. A continuación se muestran algunas de las funciones integradas más comunes de Python: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_, _dir()_. En la tabla siguiente verá la lista completa de funciones integradas obtenida de la [documentación de Python](https://docs.python.org/3.9/library/functions.html). ![Built-in Functions](../images/builtin-functions.png) Abramos el intérprete interactivo de Python y comencemos a usar algunas de las funciones integradas más comunes. ![Built-in functions](../images/builtin-functions_practice.png) Practique más usando diferentes funciones integradas ![Help and Dir Built in Functions](../images/help_and_dir_builtin.png) Como se muestra arriba, Python tiene palabras reservadas. No podemos usar palabras reservadas para declarar variables o funciones. Presentaremos las variables en la sección siguiente. Confío en que ahora esté familiarizado con las funciones integradas. Practiquemos más con ellas antes de continuar a la siguiente sección. ![Min Max Sum](../images/builtin-functional-final.png) ## Variables Las variables almacenan datos en la memoria del ordenador. En muchos lenguajes de programación se recomienda usar nombres de variables mnemotécnicos. Un nombre mnemotécnico es un nombre de variable fácil de recordar y asociar. Una variable hace referencia a la dirección de memoria donde se almacena un dato. Al nombrar variables, no se permite empezar con un número, usar caracteres especiales ni guiones. Una variable puede tener un nombre corto (por ejemplo x, y, z), pero se recomienda encarecidamente usar nombres más descriptivos (nombre, apellido, edad, país). Reglas para nombres de variables en Python - El nombre de la variable debe comenzar con una letra o un guion bajo - El nombre de la variable no puede comenzar con un número - El nombre de la variable sólo puede contener caracteres alfanuméricos y guiones bajos (A-z, 0-9 y _) - Los nombres de variables distinguen mayúsculas de minúsculas (firstname, Firstname, FirstName y FIRSTNAME son variables diferentes) A continuación algunos ejemplos de nombres válidos: ```shell firstname lastname age country city first_name last_name capital_city _if # si queremos usar una palabra reservada como variable year_2021 year2021 current_year_2021 birth_year num1 num2 ``` Nombres de variables inválidos ```shell first-name first@name first$name num-1 1num ``` Usaremos la convención de nombres estándar adoptada por muchos desarrolladores de Python. Los desarrolladores de Python usan la convención snake_case. Para variables que contienen varias palabras usamos guiones bajos entre las palabras (por ejemplo first_name, last_name, engine_rotation_speed). El siguiente ejemplo muestra la convención estándar: cuando el nombre de la variable contiene más de una palabra, se deben usar guiones bajos. Cuando asignamos un valor a una variable, esto se llama declarar una variable. Por ejemplo, en el siguiente ejemplo mi nombre se asigna a la variable first_name. El signo igual es el operador de asignación. Asignar significa almacenar un dato en una variable. El signo igual en Python no es el mismo que en matemáticas. _Ejemplo:_ ```py # Variables en Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` Usemos las funciones integradas _print()_ y _len()_. La función print puede aceptar un número ilimitado de argumentos. Un argumento es un valor que podemos pasar dentro de los paréntesis de la función; vea el ejemplo a continuación. **Ejemplo:** ```py print('Hello, World!') # The text Hello, World! is an argument print('Hello',',', 'World','!') # it can take multiple arguments, four arguments have been passed print(len('Hello, World!')) # it takes only one argument ``` Imprimamos y calculemos la longitud de las variables declaradas arriba: **Ejemplo:** ```py # Imprimir valores de las variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` ### Declarar varias variables en una línea También se pueden declarar múltiples variables en la misma línea: **Ejemplo:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` Use la función integrada _input()_ para obtener entrada del usuario. Asignemos los datos ingresados por el usuario a las variables first_name y age. . **Ejemplo:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## Tipos de datos Hay varios tipos de datos en Python. Para identificar el tipo de un dato usamos la función integrada _type_. Le recomiendo dominar los distintos tipos de datos: en programación todo está relacionado con los tipos de datos. Ya introduje los tipos de datos al principio y los vuelvo a mencionar porque cada tema está relacionado con los tipos de datos. Estudiaremos cada tipo con más detalle en capítulos posteriores. ## Conversión de tipos de datos - Comprobar el tipo de dato: Para comprobar el tipo de un dato/variable usamos la función _type_ **Ejemplo:** ```py # Diferentes tipos de datos en Python # Declaramos algunas variables con distintos tipos de datos first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, no se preocupe, esta no es mi edad real :) # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2, 3, 4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - Conversión de tipos: convertir un tipo de dato a otro. Usamos _int()_, _float()_, _str()_, _list_, _set_. Cuando realizamos operaciones aritméticas, las cadenas que contienen números deben convertirse primero a int o float, de lo contrario se producirá un error. Si concatenamos un número y una cadena, hay que convertir primero el número a cadena. Veremos la concatenación en la sección de cadenas. **Ejemplo:** ```py # De entero a float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # De float a entero gravity = 9.81 print(int(gravity)) # 9 # De entero a cadena num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # De cadena a entero o float num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # De cadena a lista first_name = 'Asabeneh' print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Números Diferentes tipos numéricos en Python - Integer: números enteros (negativos, 0 y positivos) Ejemplo: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: números de punto flotante Ejemplo ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex: números complejos Ejemplo 1 + j, 2 + 4j, 1 - 1j 🌕 ¡Excelente! Acabas de completar el desafío del Día 2, estás un paso más cerca del éxito. Ahora realiza algunos ejercicios para ejercitar tu mente y tus habilidades. ## 💻 Ejercicios - Día 2 ### Ejercicio: Nivel 1 1. Crea una carpeta `day_2` dentro de la carpeta `30DaysOfPython`. Dentro de esa carpeta crea un archivo `variables.py` 2. Añade un comentario: 'Día 2: 30 Days of Python programming' 3. Declara una variable `first_name` y asígnale un valor 4. Declara una variable `last_name` y asígnale un valor 5. Declara una variable `full_name` y asígnale un valor 6. Declara una variable `country` y asígnale un valor 7. Declara una variable `city` y asígnale un valor 8. Declara una variable `age` y asígnale un valor 9. Declara una variable `year` y asígnale un valor 10. Declara una variable `is_married` y asígnale un valor 11. Declara una variable `is_true` y asígnale un valor 12. Declara una variable `is_light_on` y asígnale un valor 13. Declara múltiples variables en una sola línea ### Ejercicio: Nivel 2 1. Usa la función integrada _type()_ para comprobar el tipo de las variables que declaraste 1. Usa la función _len()_ para calcular la longitud de la variable `first_name` 1. Compara la longitud de las variables `first_name` y `last_name` 1. Declara las variables `num_one = 5` y `num_two = 4` 1. Suma `num_one` y `num_two` y asigna el resultado a la variable `total` 2. Resta `num_two` de `num_one` y asigna el resultado a la variable `diff` 3. Multiplica `num_one` y `num_two` y asigna el resultado a la variable `product` 4. Divide `num_one` entre `num_two` y asigna el resultado a la variable `division` 5. Usa la operación módulo para obtener el resto de `num_two` dividido por `num_one` y asígnalo a `remainder` 6. Calcula `num_one` elevado a `num_two` y asigna el valor a `exp` 7. Calcula la división entera de `num_one` entre `num_two` (operación de floor division) y asigna el resultado a `floor_division` 1. El círculo tiene un radio de 30 metros. 1. Calcula el área del círculo y asígnala a la variable `_area_of_circle_` 2. Calcula la circunferencia del círculo y asígnala a la variable `_circum_of_circle_` 3. Pide el radio al usuario y calcula el área. 1. Usa la función integrada `input()` para obtener nombre, apellido, país y edad del usuario y almacena los valores en las variables correspondientes 1. Ejecuta `help('keywords')` en el intérprete de Python o en un archivo para comprobar las palabras reservadas (keywords) de Python 🎉 ¡Felicidades! 🎉 [<< Día 1](./readme_sp.md) | [Día 3 >>](./03_operators_sp.md) ================================================ FILE: Spanish/03_Day_Operators/03_operators.md ================================================

30 días de Python: Día 3 - Operadores

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Dia 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Dia 4 >>](../04_Day_Strings/04_strings.md) ![30DaysOfPython](../../images/30DaysOfPython_banner3@2x.png) - [📘 Día 3](#📘-día-3) - [Booleano](#booleano) - [Operadores](#operadores) - [Operadores de asignación](#operadores-de-asignación) - [Operadores aritméticos:](#operadores-aritméticos) - [Operadores de comparación](#operadores-de-comparación) - [Operadores lógicos](#operadores-lógicos) - [💻 Ejercicios - Día 3](#💻-ejercicios---día-3) # 📘 Día 3 ## Booleano Un tipo de datos booleano representa uno de los dos valores: _Verdadero_ o _Falso_. El uso de estos tipos de datos quedará claro una vez que comencemos a usar el operador de comparación. La primera letra **T** para Verdadero y **F** para Falso debe ser en mayúscula a diferencia de JavaScript. **Ejemplo: valores booleanos** ```py print(True) print(False) ``` ## Operadores Python language supports several types of operators. In this section, we will focus on few of them. ### Operadores de asignación Los operadores de asignación se utilizan para asignar valores a las variables. Tomemos = como ejemplo. El signo igual en matemáticas muestra que dos valores son iguales, sin embargo, en Python significa que estamos almacenando un valor en una determinada variable y lo llamamos asignación o asignación de valor a una variable. La siguiente tabla muestra los diferentes tipos de operadores de asignación de Python, tomados de [w3school](https://www.w3schools.com/python/python_operators.asp). ![Operadores de Asignación](../../images/assignment_operators.png) ### Operadores aritméticos: - Suma (+): a + b - Resta(-): a - b - Multiplicación(*): a * b - División(/): a/b - Módulo(%): a % b - División de piso(//): a // b - Exponenciación(**): a ** b ![Arithmetic Operators](../../images/arithmetic_operators.png) **Ejemplo: Enteros** ```py # Operaciones aritméticas en Python # enteros print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division: ', 4 / 2) # 2.0 La división en Python da un número flotante print('Division: ', 6 / 2) # 3.0 print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, da sin el número flotante o sin el resto print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, da el resto print('Exponentiation: ', 2 ** 3) # 9 significa 2 * 2 * 2 ``` **Ejemplo: Floats** ```py # Números flotantes print('Floating Point Number, PI', 3.14) print('Floating Point Number, gravity', 9.81) ``` **Ejemplo: Números complex** ```py # Números complejos print('Complex number: ', 1 + 1j) print('Multiplying complex numbers: ',(1 + 1j) * (1 - 1j)) ``` Declaremos una variable y asignemos un tipo de dato numérico. Voy a usar una variable de un solo carácter, pero recuerde que no desarrolle el hábito de declarar este tipo de variables. Los nombres de las variables deben ser siempre mnemotécnicos. **Ejemplo:** ```python # Declarar la variable en la parte superior primero a = 3 # a es un nombre de variable y 3 es un tipo de dato entero b = 2 # b es un nombre de variable y 3 es un tipo de dato entero # Operaciones aritméticas y asignación del resultado a una variable total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # Debería haber usado sum en lugar de total, pero sum es una función integrada; trate de evitar anular las funciones integradas print(total) # si no etiqueta su impresión con alguna cadena, nunca sabrá de dónde viene el resultado print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponentiation) ``` **Ejemplo:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # Declarar valores y organizarlos juntos num_one = 3 num_two = 4 # Operaciones aritmeticas total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_one remainder = num_two % num_one # Imprimiendo valores con etiqueta print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` Empecemos a conectar los puntos y empecemos a hacer uso de lo que ya sabemos para calcular (área, volumen, densidad, peso, perímetro, distancia, fuerza). **Ejemplo:** ```py # Cálculo del área de un círculo radius = 10 # radio de un circulo area_of_circle = 3.14 * radius ** 2 # dos signo * significa exponente o potencia print('Area of a circle:', area_of_circle) # Calcular el área de un rectángulo length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # Calcular el peso de un objeto mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # Agregando unidad al peso # Calcular la densidad de un líquido mass = 75 # en kg volume = 0.075 # en metros cúbicos density = mass / volume # 1000 Kg/m^3 ``` ### Operadores de comparación En programación comparamos valores, usamos operadores de comparación para comparar dos valores. Comprobamos si un valor es mayor o menor o igual a otro valor. La siguiente tabla muestra los operadores de comparación de Python que se tomaron de [w3shool](https://www.w3schools.com/python/python_operators.asp). ![Operadores de comparación](../../images/comparison_operators.png) **Ejemplo: Operadores de comparación** ```py print(3 > 2) # True, porque 3 es mayor que 2 print(3 >= 2) # True, porque 3 es mayor que 2 print(3 < 2) # False, porque 3 es mayor que 2 print(2 < 3) # True, porque 2 es menor que 3 print(2 <= 3) # True, porque 2 es menor que 3 print(3 == 2) # False, porque 3 no es igual a 2 print(3 != 2) # True, porque 3 no es igual a 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Comparar algo da un True o False print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) ``` Además del operador de comparación anterior, Python usa: - _is_: Devuelve True si ambas variables son el mismo objeto (x es y) - _is not_: Devuelve True si ambas variables no son el mismo objeto (x no es y) - _in_: Devuelve True si la lista consultada contiene un elemento determinado (x en y) - _not in_: Devuelve True si la lista consultada no tiene un elemento determinado (x en y) ```py print('1 is 1', 1 is 1) # True - porque los valores de los datos son los mismos print('1 is not 2', 1 is not 2) # True - porque 1 no es 2 print('A in Asabeneh', 'A' in 'Asabeneh') # True - A encontrado en la cadena print('B in Asabeneh', 'B' in 'Asabeneh') # False - no hay b mayúscula print('coding' in 'coding for all') # True - porque 'coding for all' tiene la palabra 'coding' print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True ``` ### Operadores lógicos A diferencia de otros lenguajes de programación, Python utiliza las palabras clave _and_, _or_ y _not_ para los operadores lógicos. Los operadores lógicos se utilizan para combinar sentencias condicionales: ![Operadores lógicos](../../images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # True - porque ambas afirmaciones son verdaderas print(3 > 2 and 4 < 3) # False - porque la segunda afirmación es falsa print(3 < 2 and 4 < 3) # False - porque ambas afirmaciones son falsas print('True and True: ', True and True) print(3 > 2 or 4 > 3) # True - porque ambas afirmaciones son verdaderas print(3 > 2 or 4 < 3) # True - porque una de las afirmaciones es verdadera print(3 < 2 or 4 < 3) # False - porque ambas afirmaciones son falsas print('True or False:', True or False) print(not 3 > 2) # False - porque 3 > 2 es verdadero, entonces no verdadero da falso print(not True) # False - Negación, el operador not devuelve verdadero a falso print(not False) # True print(not not True) # True print(not not False) # False ``` 🌕 Tienes una energía ilimitada. Acaba de completar los desafíos del día 3 y está tres pasos por delante en su camino hacia la grandeza. Ahora haz algunos ejercicios para tu cerebro y tus músculos. ## 💻 Ejercicios - Día 3 1. Declara tu edad como variable entera 2. Declara tu altura como una variable flotante 3. Declarar una variable que almacene un número complejo 4. Escriba un script que solicite al usuario que ingrese la base y la altura del triángulo y calcule el área de este triángulo (área = 0,5 x b x h). ```py Enter base: 20 Enter height: 10 The area of the triangle is 100 ``` 5. Escriba un script que solicite al usuario que ingrese el lado a, el lado b y el lado c del triángulo. Calcula el perímetro del triángulo (perímetro = a + b + c). ```py Enter side a: 5 Enter side b: 4 Enter side c: 3 The perimeter of the triangle is 12 ``` 6. Obtenga la longitud y el ancho de un rectángulo usando el indicador. Calcula su área (área = largo x ancho) y perímetro (perímetro = 2 x (largo + ancho)) 7. Obtenga el radio de un círculo usando el aviso. Calcula el área (área = pi x r x r) y la circunferencia (c = 2 x pi x r) donde pi = 3,14. 8. Calcular la pendiente, la intersección x y la intersección y de y = 2x -2 9. La pendiente es (m = y2-y1/x2-x1). Encuentre la pendiente y la [distancia euclidiana](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) entre el punto (2, 2) y el punto (6,10) 10. Compara las pendientes en las tareas 8 y 9. 11. Calcula el valor de y (y = x^2 + 6x + 9). Trate de usar diferentes valores de x y descubra en qué valor de x y será 0. 12. Encuentra la longitud de 'python' y 'dragon' y haz una declaración de comparación falsa. 13. Use el operador _and_ para verificar si 'on' se encuentra tanto en 'python' como en 'dragon' 14. _Espero que este curso no esté lleno de jerga_. Use el operador _in_ para verificar si _jerga_ está en la oración. 15. No hay 'on' ni en dragón ni en pitón 16. Encuentre la longitud del texto _python_ y convierta el valor en flotante y conviértalo en cadena 17. Los números pares son divisibles por 2 y el resto es cero. ¿Cómo verifica si un número es par o no usando python? 18. Verifique si la división de piso de 7 por 3 es igual al valor int convertido de 2.7. 19. Comprueba si el tipo de '10' es igual al tipo de 10 20. Comprueba si int('9.8') es igual a 10 21. Escriba un script que solicite al usuario que ingrese las horas y la tarifa por hora. ¿Calcular el salario de la persona? ```py Enter hours: 40 Enter rate per hour: 28 Your weekly earning is 1120 ``` 22. Escriba un script que le solicite al usuario que ingrese el número de años. Calcula el número de segundos que una persona puede vivir. Suponga que una persona puede vivir cien años. ```py Enter number of years you have lived: 100 You have lived for 3153600000 seconds. ``` 23. Escriba un script de Python que muestre la siguiente tabla ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` 🎉 ¡FELICITACIONES! 🎉 [<< Day 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Day 4 >>](../04_Day_Strings/04_strings.md) ================================================ FILE: Spanish/03_Day_Operators/day-3.py ================================================ # Operaciones aritméticas en Python # Integers print('Addition: ', 1 + 2) print('Subtraction: ', 2 - 1) print('Multiplication: ', 2 * 3) print ('Division: ', 4 / 2) # La división en python da un número flotante print('Division: ', 6 / 2) print('Division: ', 7 / 2) print('Division without the remainder: ', 7 // 2) # da sin el número flotante o sin el resto print('Modulus: ', 3 % 2) # Da el resto print ('Division without the remainder: ', 7 // 3) print('Exponential: ', 3 ** 2) # significa 3 * 3 # Números Floating print('Floating Number,PI', 3.14) print('Floating Number, gravity', 9.81) # Números Complex print('Complex number: ', 1 + 1j) print('Multiplying complex number: ',(1 + 1j) * (1-1j)) # Declarar la variable en la parte superior primero a = 3 # a es un nombre de variable y 3 es un tipo de dato entero b = 2 # b es un nombre de variable y 3 es un tipo de dato entero # Operaciones aritméticas y asignación del resultado a una variable total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # Debería haber usado sum en lugar de total, pero sum es una función integrada. Trate de evitar anular las funciones integradas. print(total) # si no etiqueta su impresión con alguna cadena, nunca sabrá de dónde viene el resultado print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponential) # Declarar valores y organizarlos juntos num_one = 3 num_two = 4 # Operaciones aritmeticas total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_two remainder = num_two % num_one # Imprimiendo valores con etiqueta print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) # Cálculo del área de un círculo radius = 10 # radio de un circulo area_of_circle = 3.14 * radius ** 2 # dos * signo significa exponente o potencia print('Area of a circle:', area_of_circle) # Calcular el área de un rectángulo length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # Calcular el peso de un objeto mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') print(3 > 2) # True, porque 3 es mayor que 2 print(3 >= 2) # True, porque 3 es mayor que 2 print(3 < 2) # False, porque 3 es mayor que 2 print(2 < 3) # True, porque 2 es menor que 3 print(2 <= 3) # True, porque 2 es menor que 3 print(3 == 2) # False, porque 3 no es igual a 2 print(3 != 2) # True, porque 3 no es igual a 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Comparación booleana print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) print('True and True: ', True and True) print('True or False:', True or False) # Comparación de otra forma print('1 is 1', 1 is 1) # True - porque los valores de los datos son los mismos print('1 is not 2', 1 is not 2) # True - porque 1 no es 2 print('A in Asabeneh', 'A' in 'Asabeneh') # True - A encontrado en la cadena print('B in Asabeneh', 'B' in 'Asabeneh') # False - no hay b mayúscula print('coding' in 'coding for all') # True - porque codificar para todos tiene la palabra codificar print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True print(3 > 2 and 4 > 3) # True - porque ambas afirmaciones son verdaderas print(3 > 2 and 4 < 3) # False - porque la segunda afirmación es falsa print(3 < 2 and 4 < 3) # False - porque ambas afirmaciones son falsas print(3 > 2 or 4 > 3) # True - porque ambas afirmaciones son verdaderas print(3 > 2 or 4 < 3) # True - porque uno de los enunciados es verdadero print(3 < 2 or 4 < 3) # False - porque ambas afirmaciones son falsas print(not 3 > 2) # False - porque 3 > 2 es verdadero, entonces not verdadero da falso print(not True) # False - Negación, el operador not devuelve verdadero a falso print(not False) # True print(not not True) # True print(not not False) # False ================================================ FILE: Spanish/03_operators_sp.md ================================================

30 días de Python: Día 3 - Operadores

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 2](./02_variables_builtin_functions_sp.md) | [Día 4 >>](./04_strings_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) _Lectura aproximada: 12 min_ - [📘 Día 3](#-día-3) - [Boolean](#boolean) - [Operadores](#operadores) - [Operadores de asignación](#operadores-de-asignación) - [Operadores aritméticos](#operadores-aritméticos) - [Operadores de comparación](#operadores-de-comparación) - [Operadores lógicos](#operadores-lógicos) - [💻 Ejercicios - Día 3](#-ejercicios---día-3) # 📘 Día 3 ## Boolean El tipo booleano representa uno de dos valores: _True_ o _False_. Cuando comencemos a usar operadores de comparación su uso quedará claro. La primera letra **T** representa True y **F** representa False; a diferencia de JavaScript, en Python las palabras booleanas deben escribirse con la primera letra en mayúscula. **Ejemplo: valores booleanos** ```py print(True) print(False) ``` ## Operadores Python soporta varios tipos de operadores. En esta sección nos centraremos en algunos de ellos. ### Operadores de asignación Los operadores de asignación se usan para asignar valores a las variables. Tomemos = como ejemplo: en matemáticas el signo igual indica que dos valores son iguales, pero en Python indica que estamos almacenando un valor en una variable; esto se llama asignación. La tabla siguiente muestra los diferentes operadores de asignación en Python (tomada de [w3schools](https://www.w3schools.com/python/python_operators.asp)). ![Assignment Operators](../images/assignment_operators.png) ### Operadores aritméticos: - Suma (+): a + b - Resta (-): a - b - Multiplicación (*): a * b - División (/): a / b - Módulo (%): a % b - División entera (//): a // b - Exponenciación (**): a ** b ![Arithmetic Operators](../images/arithmetic_operators.png) **Ejemplo: enteros** ```py # Operadores aritméticos en Python # Enteros print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division: ', 4 / 2) # 2.0 la división en Python devuelve float print('Division: ', 6 / 2) # 3.0 print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, devuelve la parte entera del cociente print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, devuelve el resto print('Exponentiation: ', 2 ** 3) # 8 representa 2 * 2 * 2 ``` **Ejemplo: flotantes** ```py # Flotantes print('Floating Point Number, PI', 3.14) print('Floating Point Number, gravity', 9.81) ``` **Ejemplo: números complejos** ```py # Números complejos print('Complex number: ', 1 + 1j) print('Multiplying complex numbers: ',(1 + 1j) * (1 - 1j)) ``` Declararemos una variable y le asignaremos un valor numérico. En el ejemplo uso nombres de una sola letra, pero no acostumbres a nombrar variables así; los nombres deben ser siempre fáciles de recordar. **Ejemplo:** ```python # Primero declaramos las variables a = 3 # a es un nombre de variable, 3 es un valor entero b = 2 # b es un nombre de variable, 2 es un valor entero # Realizamos operaciones aritméticas y asignamos los resultados a variables total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # Deberíamos usar sum en lugar de total, pero sum es una función integrada — evita sobrescribirla print(total) # Si no imprimimos etiquetas, no sabremos qué representa cada valor print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponentiation) ``` **Ejemplo:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # Declaramos las variables num_one = 3 num_two = 4 # Operaciones aritméticas total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_one remainder = num_two % num_one # Imprimimos con etiquetas print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` Comencemos a usar números con decimales y pongamos en práctica lo aprendido para calcular áreas, volúmenes, densidades, pesos, perímetros, distancias y fuerzas. **Ejemplo:** ```py # Calcular el área de un círculo radius = 10 # radio del círculo area_of_circle = 3.14 * radius ** 2 # dos * indican exponente o potencia print('Area of a circle:', area_of_circle) # Calcular el área del rectángulo length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # Calcular el peso de un objeto mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # añadimos la unidad para la fuerza # Calcular la densidad de un líquido mass = 75 # unidad: Kg volume = 0.075 # unidad: m³ density = mass / volume # 1000 Kg/m³ ``` ### Operadores de comparación En programación usamos operadores de comparación para comparar dos valores. Comprobamos si un valor es mayor, menor o igual a otro. La tabla siguiente muestra los operadores de comparación en Python (tomada de [w3schools](https://www.w3schools.com/python/python_operators.asp)). ![Comparison Operators](../images/comparison_operators.png) **Ejemplo: operadores de comparación** ```py print(3 > 2) # True, porque 3 es mayor que 2 print(3 >= 2) # True, porque 3 es mayor o igual que 2 print(3 < 2) # False, porque 3 no es menor que 2 print(2 < 3) # True, porque 2 es menor que 3 print(2 <= 3) # True, porque 2 es menor o igual que 3 print(3 == 2) # False, porque 3 no es igual a 2 print(3 != 2) # True, porque 3 no es igual a 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Las comparaciones devuelven True o False print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) ``` Además de los operadores de comparación anteriores, Python también utiliza: - _is_: devuelve True si los objetos son idénticos (x is y) - _is not_: devuelve True si los objetos no son idénticos (x is not y) - _in_: devuelve True si un elemento está en una secuencia (x in y) - _not in_: devuelve True si un elemento no está en una secuencia (x not in y) ```py print('1 is 1', 1 is 1) # True - porque los objetos son idénticos print('1 is not 2', 1 is not 2) # True - porque los objetos no son idénticos print('A in Asabeneh', 'A' in 'Asabeneh') # True - la cadena contiene 'A' print('B in Asabeneh', 'B' in 'Asabeneh') # False - no hay 'B' mayúscula print('coding' in 'coding for all') # True - 'coding' está en 'coding for all' print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 ** 2) # True ``` ### Operadores lógicos A diferencia de otros lenguajes de programación, Python usa las palabras clave _and_, _or_ y _not_ como operadores lógicos. Los operadores lógicos se utilizan para combinar expresiones condicionales: ![Logical Operators](../images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # True - porque ambas expresiones son True print(3 > 2 and 4 < 3) # False - porque una de las expresiones es False print(3 < 2 and 4 < 3) # False - porque ambas expresiones son False print('True and True: ', True and True) print(3 > 2 or 4 > 3) # True - porque una o ambas expresiones son True print(3 > 2 or 4 < 3) # True - porque una de las expresiones es True print(3 < 2 or 4 < 3) # False - porque ambas expresiones son False print('True or False:', True or False) print(not 3 > 2) # False - 3 > 2 es True, not True es False print(not True) # False - not convierte True en False print(not False) # True print(not not True) # True print(not not False) # False ``` 🌕 ¡Con energía! Acabas de completar el desafío del Día 3 y has avanzado tres pasos en el camino hacia el dominio. Ahora realiza algunos ejercicios para poner a prueba tu mente y tus habilidades. ## 💻 Ejercicios - Día 3 1. Declara una variable entera que represente tu edad 2. Declara una variable float que represente tu altura 3. Declara una variable compleja 4. Escribe un script que pida al usuario la base y la altura de un triángulo y calcule su área (Área = 0,5 x b x h). ```py Entrada base: 20 Entrada altura: 10 El área del triángulo es 100 ``` 5. Escribe un script que pida al usuario los lados a, b y c de un triángulo y calcule su perímetro (Perímetro = a + b + c). ```py Entrada lado a: 5 Entrada lado b: 4 Entrada lado c: 3 El perímetro del triángulo es 12 ``` 6. Pide al usuario la longitud y la anchura de un rectángulo. Calcula su área (Área = largo x ancho) y su perímetro (Perímetro = 2 x (largo + ancho)). 7. Pide al usuario el radio de un círculo. Calcula su área (Área = pi x r x r) y su circunferencia (Circunferencia = 2 x pi x r), con pi = 3.14. 8. Calcula la pendiente, la intersección en x y la intersección en y de y = 2x - 2. 9. La pendiente se calcula como (m = (y2 - y1) / (x2 - x1)). Encuentra la pendiente y la distancia euclídea entre los puntos (2, 2) y (6, 10). 10. Compara las pendientes obtenidas en los ejercicios 8 y 9. 11. Calcula el valor de y para y = x^2 + 6x + 9. Prueba con distintos valores de x y encuentra cuándo y es 0. 12. Encuentra la longitud de 'python' y 'dragon', y realiza una comparación ficticia. 13. Usa el operador _and_ para comprobar si tanto 'python' como 'dragon' contienen 'on'. 14. En la oración _I hope this course is not full of jargon_, usa el operador _in_ para comprobar si contiene la palabra _jargon_. 15. Comprueba que ni 'dragon' ni 'python' contienen 'on'. 16. Encuentra la longitud de 'python', conviértela a float y luego a string. 17. Los números pares son divisibles por 2 con resto 0. ¿Cómo comprobar en Python si un número es par o impar? 18. Comprueba si la división entera de 7 entre 3 es igual al valor entero de 2.7. 19. Comprueba si el tipo de '10' es igual al tipo de 10. 20. Comprueba si int('9.8') es igual a 10. 21. Escribe un script que solicite las horas trabajadas y la tarifa por hora al usuario y calcule el salario. ```py Introduce horas trabajadas: 40 Introduce tarifa por hora: 28 Tu salario semanal es 1120 ``` 22. Escribe un script que pida al usuario los años vividos y calcule cuántos segundos ha vivido una persona (supongamos que puede vivir 100 años). ```py Introduce cuántos años has vivido: 100 Has vivido 3153600000 segundos. ``` 23. Escribe un script en Python que muestre la siguiente tabla ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` 🎉 ¡Felicidades! 🎉 [<< Día 2](./02_variables_builtin_functions_sp.md) | [Día 4 >>](./04_strings_sp.md) ================================================ FILE: Spanish/04_strings_sp.md ================================================

30 días de Python: Día 4 - Cadenas

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 3](./03_operators_sp.md) | [Día 5 >>](./05_lists_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) _Lectura aproximada: 20 min_ - [Día 4](#día-4) - [Cadenas](#cadenas) - [Crear cadenas](#crear-cadenas) - [Concatenación de cadenas](#concatenación-de-cadenas) - [Secuencias de escape en cadenas](#secuencias-de-escape-en-cadenas) - [Formateo de cadenas](#formateo-de-cadenas) - [Formateo clásico (% operador)](#formateo-clásico--operador) - [Formateo moderno (str.format)](#formateo-moderno-strformat) - [Interpolación / f-Strings (Python 3.6+)](#interpolación--f-strings-python-36) - [Las cadenas en Python son secuencias de caracteres](#las-cadenas-en-python-son-secuencias-de-caracteres) - [Desempaquetar caracteres](#desempaquetar-caracteres) - [Obtener caracteres por índice](#obtener-caracteres-por-índice) - [Slicing de cadenas](#slicing-de-cadenas) - [Invertir cadenas](#invertir-cadenas) - [Saltar caracteres al hacer slicing](#saltar-caracteres-al-hacer-slicing) - [Métodos de cadenas](#métodos-de-cadenas) - [💻 Ejercicios - Día 4](#-ejercicios---día-4) # Día 4 ## Cadenas El texto es un tipo de dato de cadena. Cualquier dato escrito como texto es una cadena. Todo lo que esté entre comillas simples, dobles o triples se considera una cadena. Existen muchos métodos y funciones integradas para trabajar con cadenas. Use la función `len()` para obtener la longitud de una cadena. ### Crear cadenas ```py letter = 'P' # Una cadena puede ser un carácter o un texto print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # Las cadenas se crean con comillas simples o dobles, "Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of Python Challenge" print(sentence) ``` Las cadenas multilínea se crean utilizando tres comillas simples (`'''`) o tres comillas dobles (`"""`). A continuación un ejemplo: ```py multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # Otra forma multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) ``` ### Concatenación de cadenas Podemos concatenar cadenas. La unión de cadenas se llama concatenación. Vea el siguiente ejemplo: ```py first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # Uso de `len()` para obtener la longitud de una cadena print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 16 ``` ### Secuencias de escape en cadenas En Python y otros lenguajes una barra invertida (`\`) seguida de un carácter forma una secuencia de escape. Algunas secuencias comunes son: - \n: nueva línea - \t: tabulación (4 espacios) - \\\\: barra invertida - \' : comilla simple - \" : comilla doble Ahora veamos ejemplos del uso de estas secuencias. ```py print('I hope everyone is enjoying the Python Challenge.\nAre you ?') # nueva línea print('Days\tTopics\tExercises') # añade una tabulación print('Day 1\t5\t5') print('Day 2\t6\t20') print('Day 3\t5\t23') print('Day 4\t1\t35') print('This is a backslash symbol (\\)') # imprime barra invertida print('In every programming language it starts with \"Hello, World!\"') # comillas dobles dentro de comillas simples # Salida I hope every one is enjoying the Python Challenge. Are you ? Days Topics Exercises Day 1 5 5 Day 2 6 20 Day 3 5 23 Day 4 1 35 This is a backslash symbol (\) In every programming language it starts with "Hello, World!" ``` ### Formateo de cadenas #### Formateo clásico (% operador) En Python existen varias maneras de formatear cadenas. En esta sección veremos algunas de ellas. El operador '%' se usa para formatear una tupla de variables dentro de una cadena de formato, usando especificadores como '%s', '%d', '%f' y '%.nf'. - %s - cadena (o cualquier objeto representable como cadena) - %d - entero - %f - punto flotante - "%.nf" - punto flotante con precisión fija (n decimales) ```py # Solo cadenas first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am %s %s. I teach %s' %(first_name, last_name, language) print(formated_string) # Cadenas y números radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of circle with a radius %d is %.2f.' %(radius, area) # 2 indica 2 decimales python_libraries = ['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas'] formated_string = 'The following are python libraries:%s' % (python_libraries) print(formated_string) # imprime "The following are python libraries:['Django', 'Flask', 'NumPy', 'Matplotlib','Pandas']" ``` #### Formateo moderno (str.format) Este método de formateo se introdujo en Python 3. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formated_string = 'I am {} {}. I teach {}'.format(first_name, last_name, language) print(formated_string) a = 4 b = 3 print('{} + {} = {}'.format(a, b, a + b)) print('{} - {} = {}'.format(a, b, a - b)) print('{} * {} = {}'.format(a, b, a * b)) print('{} / {} = {:.2f}'.format(a, b, a / b)) # limitar a dos decimales print('{} % {} = {}'.format(a, b, a % b)) print('{} // {} = {}'.format(a, b, a // b)) print('{} ** {} = {}'.format(a, b, a ** b)) # Salida 4 + 3 = 7 4 - 3 = 1 4 * 3 = 12 4 / 3 = 1.33 4 % 3 = 1 4 // 3 = 1 4 ** 3 = 64 # Cadenas y números radius = 10 pi = 3.14 area = pi * radius ** 2 formated_string = 'The area of a circle with a radius {} is {:.2f}.'.format(radius, area) # mantener dos decimales print(formated_string) ``` #### Interpolación / f-Strings (Python 3.6+) Otra forma moderna de formatear cadenas es la interpolación con f-strings. Las cadenas empiezan con `f` y se insertan expresiones entre llaves. ```py a = 4 b = 3 print(f'{a} + {b} = {a +b}') print(f'{a} - {b} = {a - b}') print(f'{a} * {b} = {a * b}') print(f'{a} / {b} = {a / b:.2f}') print(f'{a} % {b} = {a % b}') print(f'{a} // {b} = {a // b}') print(f'{a} ** {b} = {a ** b}') ``` ### Las cadenas en Python son secuencias de caracteres Las cadenas en Python son secuencias de caracteres y comparten los mismos métodos de acceso que otras secuencias como listas y tuplas. La forma más sencilla de extraer caracteres individuales (o elementos de cualquier secuencia) es desempaquetarlos en variables. #### Desempaquetar caracteres ``` language = 'Python' a,b,c,d,e,f = language # desempaquetar caracteres y asignarlos a variables print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n ``` #### Obtener caracteres por índice En programación la indexación comienza en cero. Por tanto, la primera letra está en el índice 0 y la última en la longitud de la cadena menos uno. ![String index](../images/string_index.png) ```py language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n ``` Si queremos contar desde la derecha usamos índices negativos; -1 es el último índice. ```py language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o ``` #### Slicing de cadenas En Python podemos obtener subcadenas mediante slicing. ```py language = 'Python' first_three = language[0:3] # empieza en índice 0, hasta 3 pero sin incluir 3 print(first_three) #Pyt last_three = language[3:6] print(last_three) # hon # Otra forma last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon ``` #### Invertir cadenas Podemos invertir fácilmente una cadena. ```py greeting = 'Hello, World!' print(greeting[::-1]) # !dlroW ,olleH ``` #### Saltar caracteres al hacer slicing Al pasar un parámetro de paso en slicing podemos omitir caracteres al extraer subcadenas. ```py language = 'Python' pto = language[0:6:2] # print(pto) # Pto ``` ### Métodos de cadenas Hay muchos métodos para manipular y formatear cadenas. A continuación vemos algunos ejemplos: - capitalize(): convierte el primer carácter de la cadena a mayúscula ```py challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' (primera letra en mayúscula) ``` - count(): devuelve el número de ocurrencias de una subcadena: `count(subcadena, start=.., end=..)`. `start` y `end` definen el rango de conteo. ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1, cuenta entre índices 7 y 14 print(challenge.count('th')) # 2 ``` - endswith(): determina si la cadena termina con la subcadena dada; devuelve `True` o `False` ```py challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False (no termina con 'tion') ``` - expandtabs(): reemplaza tabulaciones por espacios; el tamaño por defecto es 8, acepta parámetro de tamaño. ```py challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' (tabulaciones expandidas a 10 espacios) ``` - find(): devuelve el índice de la primera aparición de una subcadena; si no se encuentra devuelve -1 ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` - rfind(): devuelve el índice de la última aparición de una subcadena; si no se encuentra devuelve -1 ```py challenge = 'thirty days of python' print(challenge.rfind('y')) # 16 print(challenge.rfind('th')) # 17 ``` - format(): formatea una cadena para una salida más legible Para más información sobre el formateo de cadenas consulte este [enlace](https://www.programiz.com/python-programming/methods/string/format) ```py first_name = 'Asabeneh' last_name = 'Yetayeh' age = 250 job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I am {} years old. I live in {}.'.format(first_name, last_name, age, job, country) print(sentence) # I am Asabeneh Yetayeh. I am 250 years old. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi * radius ** 2 result = 'The area of a circle with radius {} is {}'.format(str(radius), str(area)) print(result) # The area of a circle with radius 10 is 314 ``` - index(): devuelve el índice de la primera aparición de una subcadena; acepta parámetros de inicio y fin (por defecto 0 y longitud de la cadena). Si la subcadena no se encuentra, lanza `ValueError`. ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.index(sub_string)) # 7 print(challenge.index(sub_string, 9)) # error ``` - rindex(): devuelve el índice de la última aparición de una subcadena; acepta parámetros de inicio y fin (por defecto 0 y longitud de la cadena). ```py challenge = 'thirty days of python' sub_string = 'da' print(challenge.rindex(sub_string)) # 8 print(challenge.rindex(sub_string, 9)) # error ``` - isalnum(): determina si todos los caracteres de la cadena son alfanuméricos ```py challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False, el espacio no es un carácter alfanumérico challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False ``` - isalpha(): determina si todos los caracteres de la cadena son letras (a-z y A-Z) ```py challenge = 'thirty days of python' print(challenge.isalpha()) # False, el espacio no es una letra challenge = 'ThirtyDaysPython' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False ``` - isdecimal(): determina si todos los caracteres son decimales (0-9) ```py challenge = 'thirty days of python' print(challenge.isdecimal()) # False challenge = '123' print(challenge.isdecimal()) # True challenge = '\u00B2' print(challenge.isdigit()) # False challenge = '12 3' print(challenge.isdecimal()) # False, contiene espacios ``` - isdigit(): determina si todos los caracteres son dígitos (0-9 y otros caracteres numéricos Unicode) ```py challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.isdigit()) # True challenge = '\u00B2' print(challenge.isdigit()) # True (caracteres numéricos Unicode) ``` - isnumeric(): determina si todos los caracteres son numéricos o están relacionados con números (similar a `isdigit()` pero acepta más símbolos, p. ej. ½) ```py num = '10' print(num.isnumeric()) # True num = '\u00BD' # ½ print(num.isnumeric()) # True num = '10.5' print(num.isnumeric()) # False ``` - isidentifier(): comprueba si la cadena es un identificador válido (nombre de variable válido) ```py challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, porque empieza por un número challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True ``` - islower(): determina si todas las letras de la cadena están en minúsculas ```py challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False ``` - isupper(): determina si todas las letras de la cadena están en mayúsculas ```py challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True ``` - join(): devuelve la cadena resultante tras unir los elementos ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = ' '.join(web_tech) print(result) # 'HTML CSS JavaScript React' (devuelve la cadena unida) ``` ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '# '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' ``` - strip(): elimina los caracteres dados del inicio y del final de la cadena ```py challenge = 'thirty days of python' print(challenge.strip('noth')) # 'irty days of py' (elimina los caracteres dados del inicio y final) ``` - replace(): reemplaza una subcadena por otra dada ```py challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' ``` - split(): divide una cadena usando un separador dado o espacios ```py challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] challenge = 'thirty, days, of, python' print(challenge.split(', ')) # ['thirty', 'days', 'of', 'python'] ``` - title(): devuelve la cadena en formato título (Title Case) ```py challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python ``` - swapcase(): convierte mayúsculas a minúsculas y minúsculas a mayúsculas ```py challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON ``` - startswith(): determina si la cadena comienza con la subcadena especificada ```py challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False (no empieza con 'thirty') ``` 🌕 Eres una persona extraordinaria con un enorme potencial. Acabas de completar el desafío del Día 4; llevas cuatro pasos en tu camino para convertirte en un gran profesional. Ahora realiza algunos ejercicios para entrenar tu mente y tus habilidades. ## 💻 Ejercicios - Día 4 1. Une las cadenas 'Thirty', 'Days', 'Of', 'Python' en 'Thirty Days Of Python'. 2. Une las cadenas 'Coding', 'For', 'All' en 'Coding For All'. 3. Declara la variable `company` y asígnale el valor inicial "Coding For All". 4. Imprime la variable `company` usando `print()`. 5. Usa `len()` y `print()` para mostrar la longitud de la cadena `company`. 6. Usa el método `upper()` para convertir todos los caracteres a mayúsculas. 7. Usa el método `lower()` para convertir todos los caracteres a minúsculas. 8. Aplica `capitalize()`, `title()` y `swapcase()` sobre la cadena 'Coding For All'. 9. Extrae mediante slicing la primera palabra de 'Coding For All'. 10. Usa `index`, `find` u otros métodos para comprobar si la cadena 'Coding For All' contiene la palabra 'Coding'. 11. Reemplaza la palabra 'Coding' por 'Python' en 'Coding For All'. 12. Reemplaza 'Python for Everyone' por 'Python for All' (usa `replace()` u otro método). 13. Separa la cadena 'Coding For All' usando espacios como separador. 14. Divide la cadena 'Facebook, Google, Microsoft, Apple, IBM, Oracle, Amazon' por las comas. 15. ¿Qué carácter está en el índice 0 de 'Coding For All'? 16. ¿Cuál es el índice del último carácter de 'Coding For All'? 17. ¿Qué carácter está en el índice 10 de 'Coding For All'? 18. Crea una sigla (acrónimo) a partir de 'Python For Everyone'. 19. Crea una sigla a partir de 'Coding For All'. 20. Usando `index`, determina la primera aparición de la letra 'C' en 'Coding For All'. 21. Usando `index`, determina la primera aparición de la letra 'F' en 'Coding For All'. 22. Usa `rfind` para determinar la última aparición de 'l' en 'Coding For All People'. 23. Usa `index` o `find` para encontrar la primera aparición de la palabra 'because' en: 'You cannot end a sentence with because because because is a conjunction' 24. Usa `rindex` para encontrar la última aparición de la palabra 'because' en: 'You cannot end a sentence with because because because is a conjunction'. 25. Elimina la frase 'because because because' de: 'You cannot end a sentence with because because because is a conjunction'. 26. Encuentra la primera aparición de la palabra 'because' en: 'You cannot end a sentence with because because because is a conjunction'. 27. Elimina la frase 'because because because' de la oración anterior. 28. ¿La cadena 'Coding For All' empieza con la subcadena 'Coding'? 29. ¿La cadena 'Coding For All' termina con la subcadena 'coding'? 30. Elimina los espacios en blanco a la izquierda y derecha de la cadena '   Coding For All      '. 31. Usando `isidentifier()`, ¿cuál de las siguientes devuelve `True`? - 30DaysOfPython - thirty_days_of_python 32. Dada la lista ['Django', 'Flask', 'Bottle', 'Pyramid', 'Falcon'], únela en una cadena separada por espacios. 33. Usa la secuencia de escape de nueva línea para separar las siguientes oraciones: ```py I am enjoying this challenge. I just wonder what is next. ``` 34. Usa la secuencia de tabulación para mostrar: ```py Name Age Country City Asabeneh 250 Finland Helsinki ``` 35. Usa un método de formateo de cadenas para imprimir: ```py radius = 10 area = 3.14 * radius ** 2 # The area of a circle with radius 10 is 314 meters square. ``` 36. Usa un método de formateo de cadenas para imprimir: ```py 8 + 6 = 14 8 - 6 = 2 8 * 6 = 48 8 / 6 = 1.33 8 % 6 = 2 8 // 6 = 1 8 ** 6 = 262144 ``` 🎉 ¡Felicidades! 🎉 [<< Día 3](./03_operators_sp.md) | [Día 5 >>](./05_lists_sp.md) ================================================ FILE: Spanish/05_lists_sp.md ================================================

30 días de Python: Día 5 - Listas

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 4](./04_strings_sp.md) | [Día 6 >>](./06_tuples_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Día 5](#día-5) - [Listas](#listas) - [Cómo crear listas](#cómo-crear-listas) - [Acceder por índice positivo](#acceder-por-índice-positivo) - [Acceder por índice negativo](#acceder-por-índice-negativo) - [Desempaquetado de listas](#desempaquetado-de-listas) - [Slicing de listas](#slicing-de-listas) - [Modificar listas](#modificar-listas) - [Buscar elementos](#buscar-elementos) - [Agregar elementos](#agregar-elementos) - [Insertar elementos](#insertar-elementos) - [Eliminar elementos](#eliminar-elementos) - [Eliminar con pop()](#eliminar-con-pop) - [Eliminar con del](#eliminar-con-del) - [Vaciar la lista](#vaciar-la-lista) - [Copiar listas](#copiar-listas) - [Unir listas](#unir-listas) - [Contar elementos](#contar-elementos) - [Encontrar el índice de un elemento](#encontrar-el-índice-de-un-elemento) - [Invertir listas](#invertir-listas) - [Ordenar listas](#ordenar-listas) - [💻 Ejercicios - Día 5](#-ejercicios---día-5) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) # Día 5 ## Listas En Python hay cuatro tipos de colecciones: - List: colección ordenada y mutable. Permite elementos duplicados. - Tuple: colección ordenada e inmutable. Permite elementos duplicados. - Set: colección no ordenada e indexable; no permite duplicados (aunque se pueden añadir elementos). - Dictionary: colección no ordenada, mutable y accesible por clave. No permite claves duplicadas. Una lista es una colección ordenada y mutable que puede contener elementos de diferentes tipos. Una lista puede estar vacía o contener elementos heterogéneos. ### Cómo crear listas En Python podemos crear listas de dos maneras: - Usando la función incorporada `list()` ```py # Sintaxis lst = list() ``` ```py empty_list = list() # Esta es una lista vacía print(len(empty_list)) # 0 ``` - Usando corchetes `[]` ```py # Sintaxis lst = [] ``` ```py empty_list = [] # Esta es una lista vacía print(len(empty_list)) # 0 ``` Listas con valores iniciales. Usamos `len()` para comprobar la longitud. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] # lista de frutas vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] # lista de verduras animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # lista de animal products web_techs = ['HTML', 'CSS', 'JS', 'React','Redux', 'Node', 'MongDB'] # lista de web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # Imprimir listas y su longitud print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:',animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Countries:', countries) print('Number of countries:', len(countries)) ``` ```sh Salida Fruits: ['banana', 'orange', 'mango', 'lemon'] Number of fruits: 4 Vegetables: ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] Number of vegetables: 5 Animal products: ['milk', 'meat', 'butter', 'yoghurt'] Number of animal products: 4 Web technologies: ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] Number of web technologies: 7 Countries: ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] Number of countries: 5 ``` - Las listas pueden contener elementos de distintos tipos ```py lst = ['Asabeneh', 250, True, {'country':'Finland', 'city':'Helsinki'}] # lista con distintos tipos de datos ``` ### Acceder por índice positivo Usamos índices para acceder a los elementos de una lista. Los índices comienzan en 0. La imagen muestra claramente dónde empiezan los índices. ![List index](../images/list_index.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # estamos usando su índice para acceder al primer elemento print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] ``` ### Acceder por índice negativo Los índices negativos cuentan desde el final; `-1` es el último elemento, `-2` el penúltimo. ![List negative indexing](../images/list_negative_indexing.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[-4] last_fruit = fruits[-1] second_last = fruits[-2] print(first_fruit) # banana print(last_fruit) # lemon print(second_last) # mango ``` ### Desempaquetado de listas ```py lst = ['item1','item2','item3', 'item4', 'item5'] first_item, second_item, third_item, *rest = lst print(first_item) # item1 print(second_item) # item2 print(third_item) # item3 print(rest) # ['item4', 'item5'] ``` ```py # Ejemplo uno fruits = ['banana', 'orange', 'mango', 'lemon','lime','apple'] first_fruit, second_fruit, third_fruit, *rest = fruits print(first_fruit) # banana print(second_fruit) # orange print(third_fruit) # mango print(rest) # ['lemon','lime','apple'] # Ejemplo dos first, second, third,*rest, tenth = [1,2,3,4,5,6,7,8,9,10] print(first) # 1 print(second) # 2 print(third) # 3 print(rest) # [4,5,6,7,8,9] print(tenth) # 10 # Ejemplo tres countries = ['Germany', 'France','Belgium','Sweden','Denmark','Finland','Norway','Iceland','Estonia'] gr, fr, bg, sw, *scandic, es = countries print(gr) print(fr) print(bg) print(sw) print(scandic) print(es) ``` ### Slicing de listas - Índices positivos: especificando inicio, fin y paso obtenemos una nueva lista. (inicio por defecto 0, fin por defecto len(lst) - 1, paso por defecto 1) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # devuelve todos los elementos # mismo resultado que arriba all_fruits = fruits[0:] # Si no se especifica el índice de fin, devolverá todos los elementos desde el inicio hasta el final orange_and_mango = fruits[1:3] # no incluye el índice 3 orange_mango_lemon = fruits[1:] orange_and_lemon = fruits[::2] # usamos el tercer parámetro (paso). Toma cada 2 elementos - ['banana', 'mango'] ``` - Índices negativos: especificando inicio, fin y paso con índices negativos se obtiene una nueva lista. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # Devuelve todos los elementos orange_and_mango = fruits[-3:-1] # No incluye el último elemento, ['orange', 'mango'] orange_mango_lemon = fruits[-3:] # Devuelve los elementos desde -3 hasta el final, ['orange', 'mango', 'lemon'] reverse_fruits = fruits[::-1] # un paso negativo invierte la lista, ['lemon', 'mango', 'orange', 'banana'] ``` ### Modificar listas Una lista es una colección ordenada y mutable. A continuación modificamos la lista `fruits`. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) - 1 fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ``` ### Buscar elementos Use el operador `in` para comprobar si un elemento es miembro de una lista. Véase el ejemplo. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False ``` ### Agregar elementos Para añadir un elemento al final de una lista usamos el método `append()`. ```py # Sintaxis lst = list() lst.append(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] fruits.append('lime') # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime'] print(fruits) ``` ### Insertar elementos Podemos usar el método *insert()* para insertar un elemento en un índice específico de la lista. Ten en cuenta que los demás elementos se desplazarán a la derecha. El método *insert()* recibe dos parámetros: el índice y el elemento a insertar. ```py # Sintaxis lst = ['item1', 'item2'] lst.insert(index, item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # inserta 'apple' entre 'orange' y 'mango' print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] fruits.insert(3, 'lime') # ['banana', 'orange', 'apple', 'lime', 'mango', 'lemon'] print(fruits) ``` ### Eliminar elementos - Usa el método *remove()* para eliminar un elemento específico de la lista ```py # Sintaxis lst = ['item1', 'item2'] lst.remove(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'banana'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon', 'banana'] - este método elimina la primera aparición del elemento en la lista fruits.remove('lemon') print(fruits) # ['orange', 'mango', 'banana'] ``` ### Eliminar con `pop()` Usa `pop()` para eliminar el elemento en el índice dado (si no se indica, elimina el último elemento): ```py # Sintaxis lst = ['item1', 'item2'] lst.pop() # Último elemento lst.pop(index) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.pop() print(fruits) # ['banana', 'orange', 'mango'] fruits.pop(0) print(fruits) # ['orange', 'mango'] ``` ### Eliminar con `del` Usa la palabra clave *del* para eliminar un índice específico, también puede eliminar un rango de índices o eliminar por completo la lista ```py # Sintaxis lst = ['item1', 'item2'] del lst[index] # Elimina solo un elemento del lst # Elimina la lista completa ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon', 'kiwi', 'lime'] del fruits[1] print(fruits) # ['orange', 'lemon', 'kiwi', 'lime'] del fruits[1:3] # elimina elementos en el rango dado; no eliminará el elemento con índice 3! print(fruits) # ['orange', 'lime'] del fruits print(fruits) # Esto producirá: NameError: name 'fruits' is not defined ``` ### Vaciar listas Usa `clear()` para vaciar una lista: ```py # Sintaxis lst = ['item1', 'item2'] lst.clear() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] ``` ### Copiar listas Puedes copiar una lista reasignándola a una nueva variable: `list2 = list1`. En ese caso `list2` referencia el mismo objeto; los cambios se reflejarán en ambos. Si quieres una copia independiente usa el método `copy()`. ```py # Sintaxis lst = ['item1', 'item2'] lst_copy = lst.copy() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] (copia de la lista) ``` ### Unir listas Hay varias formas de concatenar o unir dos o más listas. - Suma (+) ```py # Sintaxis list3 = list1 + list2 ``` ```py positive_numbers = [1, 2, 3, 4, 5] zero = [0] negative_numbers = [-5,-4,-3,-2,-1] integers = negative_numbers + zero + positive_numbers print(integers) # [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables ) # ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` - Usar el método *extend()* El método *extend()* puede anexar una lista a otra. Véase el ejemplo a continuación. ```py # Sintaxis list1 = ['item1', 'item2'] list2 = ['item3', 'item4', 'item5'] list1.extend(list2) ``` ```py num1 = [0, 1, 2, 3] num2= [4, 5, 6] num1.extend(num2) print('Numbers:', num1) # Numbers: [0, 1, 2, 3, 4, 5, 6] negative_numbers = [-5,-4,-3,-2,-1] positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) # Integers: [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits ) # Fruits and vegetables: ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` ### Contar elementos Usa el método *count()* para devolver el número de veces que aparece un elemento en la lista: ```py # Sintaxis lst = ['item1', 'item2'] lst.count(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 ``` ### Encontrar el índice de un elemento El método *index()* devuelve el índice de un elemento en la lista: ```py # Sintaxis lst = ['item1', 'item2'] lst.index(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # 2, primera aparición ``` ### Invertir listas Usa el método *reverse()* para invertir el orden de la lista. ```py # Sintaxis lst = ['item1', 'item2'] lst.reverse() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits) # ['lemon', 'mango', 'orange', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages) # [24, 25, 24, 26, 25, 24, 19, 22] ``` ### Ordenar listas Para ordenar una lista podemos usar el método *sort()* o la función incorporada *sorted()*. El método *sort()* reordena la lista en orden ascendente y modifica la lista original. Si el parámetro reverse de *sort()* es True, ordenará la lista en orden descendente. - sort(): Este método modifica la lista original ```py # Sintaxis lst = ['item1', 'item2'] lst.sort() # ascending lst.sort(reverse=True) # descending ``` **Ejemplo:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) # ordenadas alfabéticamente, ['banana', 'lemon', 'mango', 'orange'] fruits.sort(reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) # [19, 22, 24, 24, 24, 25, 25, 26] ages.sort(reverse=True) print(ages) # [26, 25, 25, 24, 24, 24, 22, 19] ``` sorted(): No modifica la lista original; devuelve una nueva lista **Ejemplo:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(sorted(fruits)) # ['banana', 'lemon', 'mango', 'orange'] # Reverse order fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits,reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ``` 🌕 Muy bien, has avanzado mucho. Acabas de completar el desafío del día 5. Ahora realiza algunos ejercicios para practicar. ## 💻 Ejercicios - Día 5 ### Ejercicios: Nivel 1 1. Declara una lista vacía 2. Declara una lista con más de 5 elementos 3. Encuentra la longitud de la lista 4. Obtén el primer, medio y último elemento de la lista 5. Declara una lista llamada `mixed_data_types` que contenga tu nombre, edad, altura, estado civil y dirección 6. Declara una lista `it_companies` e inicialízala con: Facebook, Google, Microsoft, Apple, IBM, Oracle y Amazon 7. Imprime la lista usando `print()` 8. Imprime el número de empresas en la lista 9. Imprime la primera, la del medio y la última empresa 10. Cambia el nombre de una de las empresas y vuelve a imprimir la lista 11. Agrega una empresa IT a `it_companies` 12. Inserta una empresa IT en la mitad de la lista 13. Cambia el nombre de una empresa en `it_companies` a mayúsculas (¡excepto IBM!) 14. Une `it_companies` en una cadena usando la cadena '#;  ' 15. Verifica si una empresa existe en `it_companies` 16. Ordena la lista usando el método `sort()` 17. Invierte la lista en orden descendente usando `reverse()` 18. Corta (slice) las primeras 3 empresas de la lista 19. Corta (slice) las últimas 3 empresas de la lista 20. Corta la(s) empresa(s) del medio de la lista 21. Elimina la primera empresa IT de la lista 22. Elimina la(s) empresa(s) del medio de la lista 23. Elimina la última empresa IT de la lista 24. Elimina todas las empresas IT de la lista 25. Destruye la lista `it_companies` 26. Concatena las siguientes listas: ```py front_end = ['HTML', 'CSS', 'JS', 'React', 'Redux'] back_end = ['Node','Express', 'MongoDB'] ``` 27. Inserta 'Python' y 'SQL' después de `full_stack` en la lista concatenada. ### Ejercicios: Nivel 2 1. A continuación, una lista con las edades de 10 estudiantes: ```py ages = [19, 22, 19, 24, 20, 25, 26, 24, 25, 24] ``` - Ordena la lista y encuentra la edad máxima y mínima - Agrega la edad mínima y máxima nuevamente a la lista - Encuentra la mediana de las edades (un elemento medio o el promedio de dos elementos medios) - Encuentra la edad promedio (suma de todos los elementos dividida por su cantidad) - Encuentra el rango de edades (máximo - mínimo) - Compara |min - promedio| y |max - promedio| usando la función `abs()` 1. Encuentra el país del medio en la [lista de países](https://github.com/Taki-Ta/30-Days-Of-Python-Simplified_Chinese_Version/tree/master/data/countries.py) 2. Divide la lista de países en dos listas iguales (si es par; si no, la primera lista tendrá un país más) 3. Para la lista ['China', 'Russia', 'USA', 'Finland', 'Sweden', 'Norway', 'Denmark'], separa los tres primeros países de los países nórdicos restantes. 🎉 ¡Felicidades! 🎉 [<< Día 4](./04_strings_sp.md) | [Día 6 >>](./06_tuples_sp.md) ================================================ FILE: Spanish/06_tuples_sp.md ================================================

30 días de Python: Día 6 - Tuplas

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 5](./05_lists_sp.md) | [Día 7 >>](./07_sets_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [Día 6](#día-6) - [Tuplas](#tuplas) - [Cómo crear tuplas](#cómo-crear-tuplas) - [Longitud de la tupla](#longitud-de-la-tupla) - [Obtener elementos de la tupla](#obtener-elementos-de-la-tupla) - [Slicing de tuplas](#slicing-de-tuplas) - [Convertir tupla a lista](#convertir-tupla-a-lista) - [Comprobar si un elemento está en la tupla](#comprobar-si-un-elemento-está-en-la-tupla) - [Unir tuplas](#unir-tuplas) - [Eliminar tupla](#eliminar-tupla) - [💻 Ejercicios - Día 6](#-ejercicios---día-6) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) # Día 6 ## Tuplas Una tupla es una colección ordenada e inmutable que puede contener distintos tipos de datos. Una vez creada una tupla, no podemos cambiar sus valores. No podemos usar métodos como add, insert o remove en una tupla porque no es modificable (es inmutable). A diferencia de las listas, las tuplas tienen menos métodos. Los métodos asociados a tuplas son: - tuple(): crea una tupla vacía - count(): cuenta cuántas veces aparece un elemento en la tupla - index(): busca el índice de un elemento en la tupla - Operador +: concatena dos o más tuplas creando una nueva tupla ### Cómo crear tuplas - Crear una tupla vacía ```py # Sintaxis empty_tuple = () # o usando el constructor de tuplas empty_tuple = tuple() ``` - Crear una tupla con valores iniciales ```py # Sintaxis tpl = ('item1', 'item2','item3') ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') ``` ### Longitud de la tupla Usamos la función _len()_ para obtener la longitud de una tupla. ```py # Sintaxis tpl = ('item1', 'item2', 'item3') len(tpl) ``` ### Obtener elementos de la tupla - Índices positivos Al igual que con las listas, usamos índices positivos o negativos para acceder a los elementos de una tupla. ![Accessing tuple items](../images/tuples_index.png) ```py # Sintaxis tpl = ('item1', 'item2', 'item3') first_item = tpl[0] second_item = tpl[1] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[0] second_fruit = fruits[1] last_index =len(fruits) - 1 last_fruit = fruits[las_index] ``` - Índices negativos Los índices negativos cuentan desde el final: -1 es el último elemento, -2 el penúltimo, y así sucesivamente. ![Tuple Negative indexing](../images/tuple_negative_indexing.png) ```py # Sintaxis tpl = ('item1', 'item2', 'item3','item4') first_item = tpl[-4] second_item = tpl[-3] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[-4] second_fruit = fruits[-3] last_fruit = fruits[-1] ``` ### Slicing de tuplas Podemos extraer subtuplas especificando un rango de índices de inicio y fin; el resultado es una nueva tupla con los elementos seleccionados. - Rango de índices positivos ```py # Sintaxis tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[0:4] # todos los elementos all_items = tpl[0:] # todos los elementos middle_two_items = tpl[1:3] # no incluye el índice 3 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[0:4] # todos los elementos all_fruits= fruits[0:] # todos los elementos orange_mango = fruits[1:3] # no incluye el índice 3 orange_to_the_rest = fruits[1:] ``` - Rango de índices negativos ```py # Sintaxis tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[-4:] # todos los elementos middle_two_items = tpl[-3:-1] # no incluye el índice 3 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[-4:] # todos los elementos orange_mango = fruits[-3:-1] # no incluye el índice 3 orange_to_the_rest = fruits[-3:] ``` ### Convertir tupla a lista Podemos convertir una tupla en una lista y viceversa. Si queremos modificar una tupla, conviene convertirla primero en lista. ```py # Sintaxis tpl = ('item1', 'item2', 'item3','item4') lst = list(tpl) ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') fruits = list(fruits) fruits[0] = 'apple' print(fruits) # ['apple', 'orange', 'mango', 'lemon'] fruits = tuple(fruits) print(fruits) # ('apple', 'orange', 'mango', 'lemon') ``` ### Comprobar si un elemento está en la tupla Podemos usar el operador _in_ para comprobar si un elemento pertenece a la tupla; devuelve un valor booleano. ```py # Sintaxis tpl = ('item1', 'item2', 'item3','item4') 'item2' in tpl # True ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') print('orange' in fruits) # True print('apple' in fruits) # False fruits[0] = 'apple' # TypeError: 'tuple' object does not support item assignment ``` ### Unir tuplas Podemos concatenar dos o más tuplas usando el operador +. ```py # Sintaxis tpl1 = ('item1', 'item2', 'item3') tpl2 = ('item4', 'item5','item6') tpl3 = tpl1 + tpl2 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') vegetables = ('Tomato', 'Potato', 'Cabbage','Onion', 'Carrot') fruits_and_vegetables = fruits + vegetables ``` ### Eliminar tupla No se pueden eliminar elementos individuales de una tupla, pero sí se puede eliminar la tupla completa con la palabra clave _del_. ```py # Sintaxis tpl1 = ('item1', 'item2', 'item3') del tpl1 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') del fruits ``` 🌕 Muy bien, lo conseguiste. Acabas de completar el desafío del día 6. Ahora realiza algunos ejercicios para practicar. ## 💻 Ejercicios - Día 6 ### Ejercicios: Nivel 1 1. Crea una tupla vacía 2. Crea una tupla con los nombres de tus hermanos y hermanas (pueden ser ficticios) 3. Concatena las tuplas de hermanos y asígnalas a `siblings` 4. ¿Cuántos hermanos tienes? 5. Modifica la tupla de `siblings` y añade los nombres de tus padres; asígnala a `family_members` ### Ejercicios: Nivel 2 1. Extrae los hermanos y los padres desde `family_members` 2. Crea las tuplas `fruits`, `vegetables` y `animal_products`. Concatena las tres tuplas y asígnalas a la variable `food_stuff_tp` 3. Convierte la tupla `food_stuff_tp` en la lista `food_stuff_lt` 4. Extrae los elementos del medio desde la tupla `food_stuff_tp` o la lista `food_stuff_lt` 5. Extrae las primeras tres y las últimas tres entradas de la lista `food_stuff_lt` 6. Elimina completamente la tupla `food_stuff_tp` 7. Comprueba si existen los elementos: - Verifica si 'Estonia' está en la tupla `nordic_countries` - Verifica si 'Iceland' está en la tupla `nordic_countries` ```py nordic_countries = ('Denmark', 'Finland','Iceland', 'Norway', 'Sweden') ``` [<< Día 5](./05_lists_sp.md) | [Día 7 >>](./07_sets_sp.md) ================================================ FILE: Spanish/07_sets_sp.md ================================================

30 días de Python: Día 7 - Conjuntos

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 6](./06_tuples_sp.md) | [Día 8 >>](./08_dictionaries_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 7](#-día-7) - [Conjuntos](#conjuntos) - [Crear conjuntos](#crear-conjuntos) - [Obtener la longitud del conjunto](#obtener-la-longitud-del-conjunto) - [Acceder a elementos del conjunto](#acceder-a-elementos-del-conjunto) - [Comprobar elementos](#comprobar-elementos) - [Añadir elementos al conjunto](#añadir-elementos-al-conjunto) - [Eliminar elementos del conjunto](#eliminar-elementos-del-conjunto) - [Vaciar el conjunto](#vaciar-el-conjunto) - [Eliminar conjunto](#eliminar-conjunto) - [Convertir lista a conjunto](#convertir-lista-a-conjunto) - [Unir conjuntos](#unir-conjuntos) - [Encontrar intersección](#encontrar-intersección) - [Comprobar subconjuntos y superconjuntos](#comprobar-subconjuntos-y-superconjuntos) - [Comprobar la diferencia entre conjuntos](#comprobar-la-diferencia-entre-conjuntos) - [Encontrar diferencia simétrica](#encontrar-diferencia-simétrica) - [Comprobar conjuntos disjuntos](#comprobar-conjuntos-disjuntos) - [💻 Ejercicios - Día 7](#-ejercicios---día-7) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 7 ## Conjuntos Un conjunto es una colección de elementos. Volvamos a las clases de matemáticas de primaria o secundaria: la definición matemática de conjuntos aplica también en Python. Un conjunto es una colección desordenada y no indexada de elementos distintos. En Python, los conjuntos almacenan elementos únicos y se pueden encontrar la _unión_, la _intersección_, la _diferencia_, la _diferencia simétrica_, los _subconjuntos_, los _superconjuntos_ y los _conjuntos disjuntos_ entre conjuntos. ### Crear conjuntos Usamos la función incorporada _set()_. - Crear un conjunto vacío ```py # Sintaxis st = set() ``` - Crear un conjunto con elementos iniciales ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} ``` **Ejemplo:** ```py # Sintaxis fruits = {'banana', 'orange', 'mango', 'lemon'} ``` ### Obtener la longitud del conjunto Usamos la función **len()** para obtener la longitud de un conjunto. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} len(st) ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} len(fruits) ``` ### Acceder a elementos del conjunto Usamos bucles para recorrer los elementos. Veremos esto con más detalle en la sección de bucles. ### Comprobar elementos Para comprobar si un elemento existe en un conjunto usamos el operador de pertenencia _in_. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} print("Does set st contain item3? ", 'item3' in st) # Does set st contain item3? True ``` **Ejemplo:** ```py fruits = {'plátano', 'naranja', 'mango', 'limón'} print('mango' in fruits ) # True ``` ### Añadir elementos al conjunto Una vez creado el conjunto no podemos cambiar elementos existentes, pero sí podemos añadir nuevos. - Usar el método _add()_ para agregar un solo elemento ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} st.add('item5') ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.add('lime') ``` - Usar el método _update()_ para agregar varios elementos El método _update()_ permite añadir múltiples elementos; recibe un iterable como argumento. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} st.update(['item5','item6','item7']) ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = ('tomato', 'potato', 'cabbage','onion', 'carrot') fruits.update(vegetables) ``` ### Eliminar elementos del conjunto Podemos usar el método _remove()_ para eliminar un elemento de un conjunto. Si el elemento no existe, _remove()_ lanzará un error; por eso es útil comprobar antes si existe. El método _discard()_ no lanzará error si el elemento no existe. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} st.remove('item2') ``` El método _pop()_ elimina y devuelve un elemento aleatorio del conjunto. **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.pop() # Elimina un elemento aleatorio del conjunto ``` Si nos interesa el elemento eliminado. ```py fruits = {'banana', 'orange', 'mango', 'lemon'} removed_item = fruits.pop() ``` ### Vaciar el conjunto Si queremos vaciar todas las entradas de un conjunto, podemos usar el método _clear()_. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} st.clear() ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.clear() print(fruits) # set() ``` ### Eliminar conjunto Si queremos eliminar el conjunto por completo, podemos usar el operador _del_. ```py # Sintaxis st = {'item1', 'item2', 'item3', 'item4'} del st ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} del fruits ``` ### Convertir lista a conjunto Podemos convertir una lista en un conjunto y viceversa. Convertir una lista a conjunto elimina duplicados y conserva solo elementos únicos. ```py # Sintaxis lst = ['item1', 'item2', 'item3', 'item4', 'item1'] st = set(lst) # {'item2', 'item4', 'item1', 'item3'} - El orden es aleatorio, ya que los conjuntos son generalmente no ordenados ``` **Ejemplo:** ```py fruits = ['banana', 'orange', 'mango', 'lemon','orange', 'banana'] fruits = set(fruits) # {'mango', 'lemon', 'banana', 'orange'} ``` ### Unir conjuntos Podemos usar los métodos _union()_ o _update()_ para combinar dos conjuntos. - Union Este método devuelve un nuevo conjunto ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st3 = st1.union(st2) ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} print(fruits.union(vegetables)) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` - Update Este método inserta los elementos de un conjunto en el conjunto dado ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st1.update(st2) # Los elementos de st2 se añaden a st1 ``` **Ejemplo:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'tomato', 'potato', 'cabbage','onion', 'carrot'} fruits.update(vegetables) print(fruits) # {'lemon', 'carrot', 'tomato', 'banana', 'mango', 'orange', 'cabbage', 'potato', 'onion'} ``` ### Encontrar intersección La intersección devuelve un conjunto con los elementos que están presentes en ambos conjuntos. Véase el ejemplo. ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} ``` **Ejemplo:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.intersection(even_numbers) # {0, 2, 4, 6, 8, 10} python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.intersection(dragon) # {'o', 'n'} ``` ### Comprobar subconjuntos y superconjuntos Un conjunto puede ser subconjunto o superconjunto de otro: - Subconjunto: _issubset()_ - Superconjunto: _issuperset()_ ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.issubset(st1) # True st1.issuperset(st2) # True ``` **Ejemplo:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.issubset(even_numbers) # Falso, porque es un superconjunto whole_numbers.issuperset(even_numbers) # Verdadero python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.issubset(dragon) # Falso ``` ### Comprobar la diferencia entre conjuntos Devuelve la diferencia entre dos conjuntos. ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.difference(st1) # set() st1.difference(st2) # {'item1', 'item4'} => st1\st2 ``` **Ejemplo:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.difference(even_numbers) # {1, 3, 5, 7, 9} python = {'p', 'y', 't', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.difference(dragon) # {'p', 'y', 't'} - El resultado es desordenado (propiedad de los conjuntos) dragon.difference(python) # {'d', 'r', 'a', 'g'} ``` ### Encontrar diferencia simétrica Devuelve la diferencia simétrica entre dos conjuntos. Es decir, devuelve los elementos que pertenecen a uno de los conjuntos pero no a ambos; matemáticamente: (A\B) ∪ (B\A). ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} # Significa (A\B) ∪ (B\A) st2.symmetric_difference(st1) # {'item1', 'item4'} ``` **Ejemplo:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} some_numbers = {1, 2, 3, 4, 5} whole_numbers.symmetric_difference(some_numbers) # {0, 6, 7, 8, 9, 10} python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.symmetric_difference(dragon) # {'r', 't', 'p', 'y', 'g', 'a', 'd', 'h'} ``` ### Comprobar conjuntos disjuntos Si dos conjuntos no comparten elementos se dicen disjuntos. Podemos usar el método _isdisjoint()_ para comprobar si dos conjuntos son disjuntos. ```py # Sintaxis st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.isdisjoint(st1) # Falso ``` **Ejemplo:** ```py even_numbers = {0, 2, 4, 6, 8} odd_numbers = {1, 3, 5, 7, 9} even_numbers.isdisjoint(odd_numbers) # Verdadero, porque no comparten elementos python = {'p', 'y', 't', 'h', 'o', 'n'} dragon = {'d', 'r', 'a', 'g', 'o', 'n'} python.isdisjoint(dragon) # Falso, comparten {'o', 'n'} ``` 🌕 Eres una estrella en ascenso. Acabas de completar el desafío del día 7. Ahora realiza algunos ejercicios para practicar. ## 💻 Ejercicios - Día 7 ```py # Conjuntos it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} A = {19, 22, 24, 20, 25, 26} B = {19, 22, 20, 25, 26, 24, 28, 27} age = [22, 19, 24, 25, 26, 24, 25, 24] ``` ### Ejercicios: Nivel 1 1. Encuentra la longitud del conjunto `it_companies` 2. Agrega 'Twitter' a `it_companies` 3. Inserta varias empresas IT a `it_companies` de una sola vez 4. Elimina una empresa de `it_companies` 5. ¿Cuál es la diferencia entre `remove()` y `discard()`? ### Ejercicios: Nivel 2 1. Concatena A y B 2. Encuentra la intersección entre A y B 3. ¿Es A un subconjunto de B? 4. ¿Son A y B conjuntos disjuntos? 5. Combina A con B y viceversa 6. ¿Cuál es la diferencia simétrica entre A y B? 7. Elimina un conjunto por completo ### Ejercicios: Nivel 3 1. Convierte la lista de edades a un conjunto y compara la longitud de la lista y la del conjunto: ¿cuál es mayor? 2. Explica la diferencia entre estos tipos de datos: cadena, lista, tupla y conjunto 3. Para la frase _"Soy profesor, me gusta motivar y enseñar a las personas."_ ¿cuántas palabras únicas tiene? Usa `split()` y conjuntos para obtener las palabras únicas. 🎉 ¡Felicidades! 🎉 [<< Día 6](./06_tuples_sp.md) | [Día 8 >>](./08_dictionaries_sp.md) ================================================ FILE: Spanish/08_dictionaries_sp.md ================================================

30 días de Python: Día 8 - Diccionarios

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 7](./07_sets_sp.md) | [Día 9 >>](./09_conditionals_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 8](#-día-8) - [Diccionarios](#diccionarios) - [Crear diccionarios](#crear-diccionarios) - [Longitud del diccionario](#longitud-del-diccionario) - [Acceder a elementos del diccionario](#acceder-a-elementos-del-diccionario) - [Añadir elementos al diccionario](#añadir-elementos-al-diccionario) - [Modificar elementos del diccionario](#modificar-elementos-del-diccionario) - [Comprobar claves en el diccionario](#comprobar-claves-en-el-diccionario) - [Eliminar pares clave-valor del diccionario](#eliminar-pares-clave-valor-del-diccionario) - [Convertir diccionario a lista de tuplas](#convertir-diccionario-a-lista-de-tuplas) - [Vaciar diccionario](#vaciar-diccionario) - [Eliminar diccionario](#eliminar-diccionario) - [Copiar diccionario](#copiar-diccionario) - [Convertir claves a lista](#convertir-claves-a-lista) - [Convertir valores a lista](#convertir-valores-a-lista) - [💻 Ejercicios - Día 8](#-ejercicios---día-8) # 📘 Día 8 ## Diccionarios Un diccionario es un tipo de datos compuesto por pares clave-valor desordenados y modificables (mutables). ### Crear diccionarios Para crear diccionarios, usamos llaves {} o la función incorporada _dict()_. ```py # Sintaxis empty_dict = {} # Diccionario con valores dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` El diccionario anterior muestra que los valores pueden ser de cualquier tipo de datos: cadenas, booleanos, listas, tuplas, conjuntos o diccionarios. ### Longitud del diccionario Esta función comprueba la cantidad de pares clave-valor en el diccionario. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(len(dct)) # 4 ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(len(person)) # 7 ``` ### Acceder a elementos del diccionario Podemos acceder a los elementos del diccionario referenciando sus claves. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct['key1']) # value1 print(dct['key4']) # value4 ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person['first_name']) # Asabeneh print(person['country']) # Finland print(person['skills']) # ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person['skills'][0]) # JavaScript print(person['address']['street']) # Space street print(person['city']) # Error ``` Cuando se accede a un elemento por clave, si la clave no existe se lanzará un error. Para evitarlo, primero compruebe si existe la clave o use el método _get_. El método get devuelve None si la clave no existe (que es un objeto de tipo NoneType). ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person.get('first_name')) # Asabeneh print(person.get('country')) # Finland print(person.get('skills')) #['HTML','CSS','JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person.get('city')) # None ``` ### Añadir elementos al diccionario Podemos añadir nuevos pares clave-valor al diccionario ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key5'] = 'value5' ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['job_title'] = 'Instructor' person['skills'].append('HTML') print(person) ``` ### Modificar elementos del diccionario Podemos modificar elementos del diccionario ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct['key1'] = 'value-one' ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['first_name'] = 'Eyob' person['age'] = 252 ``` ### Comprobar claves en el diccionario Usamos el operador _in_ para comprobar si una clave existe en el diccionario ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print('key2' in dct) # True print('key5' in dct) # False ``` ### Eliminar pares clave-valor del diccionario - _pop(key)_: elimina el elemento con la clave especificada - _popitem()_: elimina el último elemento - _del_: elimina el elemento con la clave especificada ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.pop('key1') # elimina el elemento key1 dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct.popitem() # elimina el último elemento del dct['key2'] # elimina el elemento key2 ``` **Ejemplo:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person.pop('first_name') # elimina el elemento first_name person.popitem() # elimina el último elemento del person['is_married'] # elimina el elemento is_married ``` ### Convertir diccionario a lista de tuplas El método _items()_ convierte el diccionario en una lista de tuplas. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.items()) # dict_items([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3'), ('key4', 'value4')]) ``` ### Vaciar diccionario Si no necesitamos los elementos del diccionario, podemos usar el método _clear()_ para vaciarlo ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} print(dct.clear()) # None ``` ### Eliminar diccionario Si ya no necesitamos el diccionario, podemos eliminarlo por completo ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} del dct ``` ### Copiar diccionario Podemos usar el método _copy()_ para copiar un diccionario. Usar copy evita que el diccionario original sea modificado. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} dct_copy = dct.copy() # {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} ``` ### Obtener lista de claves del diccionario El método keys() nos da una lista con todas las claves del diccionario. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} keys = dct.keys() print(keys) # dict_keys(['key1', 'key2', 'key3', 'key4']) ``` ### Obtener lista de valores del diccionario El método values() nos da una lista con todos los valores del diccionario. ```py # Sintaxis dct = {'key1':'value1', 'key2':'value2', 'key3':'value3', 'key4':'value4'} values = dct.values() print(values) # dict_values(['value1', 'value2', 'value3', 'value4']) ``` 🌕 ¡Bien hecho! Ahora dominas las potentes capacidades de los diccionarios. Has completado el desafío del Día 8, estás un paso más cerca del éxito. Ahora ejercita tu mente y tu cuerpo. ## 💻 Ejercicios - Día 8 1. Crea un diccionario vacío llamado dog 2. Añade las claves name, color, breed, legs y age al diccionario dog 3. Crea un diccionario student con las claves first_name, last_name, gender, age, marital status, skills, country, city y address 4. Obtén la longitud del diccionario student 5. Obtén el valor de skills y comprueba su tipo; debe ser una lista 6. Modifica skills añadiendo una o dos habilidades 7. Obtén la lista de claves del diccionario 8. Obtén la lista de valores del diccionario 9. Usa el método _items()_ para convertir el diccionario en una lista de tuplas 10. Elimina un elemento del diccionario 11. Elimina uno de los diccionarios 🎉 ¡Felicidades! 🎉 [<< Día 7](./07_sets_sp.md) | [Día 9 >>](./09_conditionals_sp.md) ================================================ FILE: Spanish/09_conditionals_sp.md ================================================

30 días de Python: Día 9 - Sentencias condicionales

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 8](./08_dictionaries_sp.md) | [Día 10 >>](./10_loops_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 9](#-día-9) - [Sentencias condicionales](#sentencias-condicionales) - [Condición If](#condición-if) - [If Else](#if-else) - [If Elif Else](#if-elif-else) - [Abreviación](#abreviación) - [Condicionales anidados](#condicionales-anidados) - [If y operadores lógicos](#if-y-operadores-lógicos) - [If y operador lógico Or](#if-y-operador-lógico-or) - [💻 Ejercicios - Día 9](#-ejercicios---día-9) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) # 📘 Día 9 ## Sentencias condicionales Por defecto, las sentencias en un script de Python se ejecutan secuencialmente de arriba hacia abajo. Si la lógica lo requiere, podemos cambiar el orden de dos maneras: - Ejecución condicional: si una expresión es verdadera, se ejecutan uno o más bloques de código - Ejecución repetitiva: mientras una expresión sea verdadera, se repiten uno o más bloques de código. En esta sección discutiremos las sentencias *if*, *else* y *elif*. Los operadores de comparación y lógicos vistos antes serán útiles aquí. ### Condición If En Python y otros lenguajes, la palabra clave *if* se usa para comprobar si una condición es verdadera y ejecutar un bloque de código. Recuerda la indentación después de los dos puntos. ```py # Sintaxis if condition: # Si la condición es verdadera, ejecutar este bloque de código ``` **Ejemplo 1** ```py a = 3 if a > 0: print('A es un número positivo') # A es un número positivo ``` Como se muestra arriba, 3 es mayor que 0. La condición es verdadera y se ejecuta el bloque de código. Si la condición fuera falsa, no veríamos resultado; para manejar condiciones falsas usamos el bloque *else*. ### If Else Si la condición es verdadera se ejecuta el primer bloque, de lo contrario se ejecuta el bloque *else*. ```py # Sintaxis if condition: # Si la condición es verdadera, ejecutar este bloque else: # Si la condición es falsa, ejecutar este bloque ``` **Ejemplo:** ```py a = 3 if a < 0: print('A es un número negativo') else: print('A es un número positivo') ``` La condición anterior es falsa, por eso se ejecuta el bloque *else*. ¿Y si tenemos más de dos condiciones? Podemos usar *elif*. ### If Elif Else En la vida tomamos decisiones cada día que implican más de una condición. En programación, cuando tenemos múltiples condiciones, usamos *elif*. ```py # Sintaxis if condition: # código elif condition: # código else: # código ``` **Ejemplo:** ```py a = 0 if a > 0: print('A es un número positivo') elif a < 0: print('A es un número negativo') else: print('A es cero') ``` ### Abreviación ```py # Sintaxis if condición else ``` **Ejemplo:** ```py a = 3 print('A es positivo') if a > 0 else print('A es negativo') # Se cumple la primera condición, imprimirá 'A es positivo' ``` ### Condicionales anidados Los condicionales pueden anidarse. ```py # Sintaxis if condición: # código if condición: # código ``` **Ejemplo:** ```py a = 0 if a > 0: if a % 2 == 0: print('A es un número positivo y par') else: print('A es un número positivo') elif a == 0: print('A es cero') else: print('A es un número negativo') ``` Podemos usar el operador lógico *and* para evitar escribir condicionales anidados. ### If y operadores lógicos ```py # Sintaxis if condición and condición: # código ``` **Ejemplo:** ```py a = 0 if a > 0 and a % 2 == 0: print('A es un número positivo y par') elif a > 0 and a % 2 != 0: print('A es un número positivo') elif a == 0: print('A es cero') else: print('A es un número negativo') ``` ### If y operador lógico Or ```py # Sintaxis if condición or condición: # código ``` **Ejemplo:** ```py user = 'James' access_level = 3 if user == 'admin' or access_level >= 4: print('Acceso concedido!') else: print('Acceso denegado!') ``` 🌕 Lo estás haciendo muy bien. Nunca te rindas; las cosas grandiosas requieren tiempo. Acabas de completar el desafío del Día 9; estás a 9 pasos en tu camino hacia lo grande. Haz ahora algunos ejercicios para entrenar tu mente y tu cuerpo. ## 💻 Ejercicios - Día 9 ### Ejercicios: Nivel 1 1. Usa input para obtener la edad del usuario (por ejemplo: "Introduce tu edad:"). Si el usuario tiene 18 años o más, muestra: 'Ya tienes la edad suficiente para aprender a conducir.' Si es menor, muestra cuántos años le faltan. Ejemplo de salida: ```sh Introduce tu edad: 30 Ya tienes la edad suficiente para aprender a conducir. Salida: Introduce tu edad: 15 Aún necesitas esperar 3 años para aprender a conducir. ``` 2. Usa if…else para comparar my_age y your_age. ¿Quién es mayor (yo o tú)? Usa input("Introduce tu edad:") para obtener la edad. Puedes usar condicionales anidados para imprimir 'año' cuando la diferencia sea 1, 'años' para diferencias mayores, y un mensaje personalizado si my_age = your_age. Salida de ejemplo: ```sh Introduce tu edad: 30 Tienes 5 años más que yo. ``` 3. Pide al usuario dos números con input. Si a > b, imprime 'a es mayor que b'; si a < b, imprime 'a es menor que b'; si son iguales, imprime 'a es igual a b'. ```sh Introduce el primer número: 4 Introduce el segundo número: 3 4 es mayor que 3 ``` ### Ejercicios: Nivel 2 1. Escribe un código que asigne una calificación según la nota del estudiante: ```sh 80-100, A 70-79, B 60-69, C 50-59, D 0-49, F ``` 2. Comprueba si es otoño, invierno, primavera o verano. Si el usuario introduce: Septiembre, Octubre o Noviembre → otoño. Diciembre, Enero o Febrero → invierno. Marzo, Abril o Mayo → primavera. Junio, Julio u Agosto → verano. 3. La siguiente lista contiene algunas frutas: ```py fruits = ['banana', 'orange', 'mango', 'lemon'] ``` Si una fruta no está en la lista, añádela e imprime la lista modificada. Si ya existe, imprime 'La fruta ya está en la lista'. ### Ejercicios: Nivel 3 1. Aquí hay un diccionario persona. ¡Siéntete libre de modificarlo! ```py person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finlandia', 'is_married': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Calle Espacial', 'zipcode': '02210' } } ``` - Comprueba si existe la clave skills en el diccionario; si existe, imprime la habilidad central de la lista skills. - Comprueba si existe la clave skills; si existe, verifica si la persona tiene la habilidad 'Python' e imprime el resultado. - Si las habilidades son sólo JavaScript y React, imprime 'Es desarrollador frontend'; si incluyen Node, Python y MongoDB, imprime 'Es desarrollador backend'; si incluyen React, Node y MongoDB, imprime 'Es desarrollador full-stack'; en caso contrario, imprime 'Título desconocido' — puedes anidar más condiciones para mayor precisión. - Si la persona está casada y vive en Finlandia, imprime la siguiente línea: ```py print('Asabeneh Yetayeh vive en Finlandia. Está casado.') ``` 🎉 ¡Felicidades! 🎉 [<< Día 8](./08_dictionaries_sp.md) | [Día 10 >>](./10_loops_sp.md) ================================================ FILE: Spanish/10_loops_sp.md ================================================

30 días de Python: Día 10 - Bucles

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 9](./09_conditionals_sp.md) | [Día 11 >>](./11_functions_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 10](#-día-10) - [Bucles](#bucles) - [Bucle while](#bucle-while) - [break y continue - parte 1](#break-y-continue---parte-1) - [Bucle for](#bucle-for) - [break y continue - parte 2](#break-y-continue---parte-2) - [Función range()](#función-range) - [Bucles for anidados](#bucles-for-anidados) - [for y else](#for-y-else) - [Sentencia pass](#sentencia-pass) - [💻 Ejercicios - Día 10](#-ejercicios---día-10) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 10 ## Bucles La vida está llena de ciclos. En programación realizamos muchas tareas repetitivas. Los lenguajes de programación usan bucles para gestionar tareas repetitivas; en Python hay principalmente dos tipos de bucles: 1. Bucle while 2. Bucle for ### Bucle while Usamos la palabra clave `while` para crear un bucle while. Repite un bloque de código mientras la condición se cumpla. Cuando la condición se vuelve falsa, el bucle termina y se ejecuta el código que sigue. ```python # Sintaxis while condition: # código ``` **Ejemplo:** ```python count = 0 while count < 5: print(count) count = count + 1 # prints from 0 to 4 ``` En el bucle anterior, cuando count llegue a 5 la condición se vuelve falsa y el bucle se detiene. Si queremos ejecutar un bloque cuando la condición sea falsa, podemos usar la palabra clave `else`. ```python # syntax while condition: code goes here else: code goes here ``` **Ejemplo:** ```python count = 0 while count < 5: print(count) count = count + 1 else: print(count) ``` Cuando count sea 5 la condición será falsa, el bucle terminará y se ejecutará el bloque else; por tanto se imprimirá 5. ### break y continue - parte 1 * break: cuando queremos salir del bucle usamos la palabra clave \break`.` ```python # syntax while condition: code goes here if another_condition: break ``` **Example:** ```python count = 0 while count < 5: print(count) count = count + 1 if count == 3: break ``` El while anterior solo imprimirá 0, 1, 2; cuando count llegue a 3 el bucle terminará. - Continue: cuando queremos saltarnos la iteración actual y continuar con la siguiente usamos la palabra clave `continue`. ```python # syntax while condition: code goes here if another_condition: continue ``` **Ejemplo:** ```python count = 0 while count < 5: if count == 3: count = count + 1 continue print(count) count = count + 1 ``` El while anterior imprimirá 0, 1, 2, 4 (3 se saltó). ### Bucle for La palabra clave `for` se usa para crear bucles for. Es similar a otros lenguajes, pero con diferencias sintácticas. Se usa para iterar sobre secuencias (listas, tuplas, diccionarios, conjuntos, cadenas, etc.). - Bucle for para listas ```python # syntax for iterator in lst: code goes here ``` **Ejemplo:** ```python numbers = [0, 1, 2, 3, 4, 5] for number in numbers: # number es un nombre temporal que referencia el elemento de la lista dentro del bucle print(number) # number se imprimirá línea por línea, de 0 a 5 ``` - Bucle for para cadenas ```python # syntax for iterator in string: code goes here ``` **Ejemplo:** ```python language = 'Python' for letter in language: print(letter) for i in range(len(language)): print(language[i]) ``` - Bucle for para tuplas ```python # syntax for iterator in tpl: code goes here ``` **Ejemplo:** ```python numbers = (0, 1, 2, 3, 4, 5) for number in numbers: print(number) ``` - Bucle for para diccionarios Al iterar, se recorrerán las claves del diccionario. ```python # syntax for iterator in dct: code goes here ``` **Ejemplo:** ```python person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } for key in person: print(key) # sólo imprime las claves for key, value in person.items(): print(key, value) # así podemos acceder a claves y valores durante la iteración ``` - Bucle for para conjuntos ```python # syntax for iterator in st: code goes here ``` **Ejemplo:** ```python it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} for company in it_companies: print(company) ``` ### break y continue - parte 2 Pista: _break_: cuando queremos terminar el bucle antes de completarlo usamos `break`. ```python # syntax for iterator in sequence: code goes here if condition: break ``` **Ejemplo:** ```python numbers = (0,1,2,3,4,5) for number in numbers: print(number) # imprime 0, 1, 2, 3 if number == 3: break ``` En el ejemplo anterior, cuando number sea 3 el bucle terminará. _continue_: cuando queremos saltarnos la iteración actual y continuar con la siguiente usamos la palabra clave `continue`. ```python # syntax for iterator in sequence: code goes here if condition: continue ``` **Ejemplo:** ```python numbers = (0,1,2,3,4,5) for number in numbers: print(number) if number == 3: continue print('Next number should be ', number + 1) if number != 5 else print("loop's end") # En resumen: para condiciones cortas se puede usar if y else en línea print('outside the loop') ``` En el ejemplo anterior, cuando number es 3, las instrucciones posteriores dentro del bucle se saltan y si hay más elementos por recorrer, continúa con la siguiente iteración. ### Función range() La función `range()` genera una secuencia de números. La forma _range(start, end, step)_ acepta tres parámetros: inicio, fin y paso. Por defecto inicio es 0 y el paso es 1. Se necesita al menos un parámetro (el valor de fin). Usando `range()` para generar secuencias ```python lst = list(range(11)) print(lst) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] st = set(range(1, 11)) # start y stop, paso por defecto 1 print(st) # {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} lst = list(range(0,11,2)) print(lst) # [0, 2, 4, 6, 8, 10] st = set(range(0,11,2)) print(st) # {0, 2, 4, 6, 8, 10} ``` ```python # syntax for iterator in range(start, end, step): ``` **Ejemplo:** ```python for number in range(11): print(number) # imprime 0 a 10, no incluye 11. ``` ### Bucles for anidados Podemos anidar un bucle dentro de otro; a esto se le llama bucle anidado. ```python # syntax for x in y: for t in x: print(t) ``` **Ejemplo:** ```python person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_marred': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } for key in person: if key == 'skills': for skill in person['skills']: print(skill) ``` ### for y else Si queremos ejecutar un bloque de código al terminar el bucle, podemos usar la palabra clave `else`. ```python # syntax for iterator in range(start, end, step): do something else: print('The loop ended') ``` **Ejemplo:** ```python for number in range(11): print(number) # prints 0 to 10, not including 11 else: print('The loop stops at', number) ``` ### Sentencia pass En Python, cuando se requiere una instrucción (por ejemplo después de `:`) pero no queremos ejecutar código, usamos `pass` para evitar errores. También sirve como marcador para rellenar más adelante. **Ejemplo:** ```python for number in range(6): pass ``` 🌕 Has dado un gran paso — ¡bien hecho! Acabas de completar el desafío del Día 10; estás a 10 pasos en tu camino hacia lo grande. Ahora hagamos algunos ejercicios para entrenar la mente y los músculos. ## 💻 Ejercicios - Día 10 ### Ejercicios: Nivel 1 1. Implementa iteraciones de 0 a 10 usando while y for. 2. Implementa iteraciones de 10 a 0 usando while y for. 3. Escribe un bucle que llame a `print()` 7 veces para producir este triángulo: ```py # ## ### #### ##### ###### ####### ``` 4. Usa bucles anidados para producir la siguiente salida: ```sh # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ``` 5. Usando un bucle, produce la siguiente salida: ```sh 0 x 0 = 0 1 x 1 = 1 2 x 2 = 4 3 x 3 = 9 4 x 4 = 16 5 x 5 = 25 6 x 6 = 36 7 x 7 = 49 8 x 8 = 64 9 x 9 = 81 10 x 10 = 100 ``` 6. Recorre con for la lista `['Python', 'Numpy','Pandas','Django', 'Flask']` e imprime cada elemento. 7. Recorre con for de 0 a 100 e imprime todos los números pares. 8. Recorre con for de 0 a 100 e imprime todos los números impares. ### Ejercicios: Nivel 2 1. Usa un for para sumar los números de 0 a 100. ```sh The sum of all numbers is 5050. ``` 2. Usa un for para sumar por separado los impares y los pares de 0 a 100. ```sh The sum of all odd numbers is 2500. And the sum of all even numbers is 2550. ``` ### Ejercicios: Nivel 3 1. Ve a la carpeta data y usa el archivo [countries.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py). Itera los países y extrae aquellos que contienen la cadena `land`. 2. Dada la lista `fruits = ['banana', 'orange', 'mango', 'lemon']`, invierte los elementos usando un bucle. 3. Ve a la carpeta data y usa el archivo [countries-data.py](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py). 1. ¿Cuántos idiomas distintos hay en los datos? 2. ¿Cuál es el idioma usado por más países? 3. Encuentra los diez países con mayor población. 🎉 ¡Felicidades! 🎉 [<< Día 9](./09_conditionals_sp.md) | [Día 11 >>](./11_functions_sp.md) ================================================ FILE: Spanish/11_functions_sp.md ================================================

30 Días de Python: Día 11 - Funciones

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 10](./10_loops_sp.md) | [Día 12 >>](./12_modules_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 11](#-día-11) - [Funciones](#funciones) - [Definir funciones](#definir-funciones) - [Declarar y llamar a una función](#declarar-y-llamar-a-una-función) - [Función sin parámetros](#función-sin-parámetros) - [Funciones que retornan valores - Parte 1](#funciones-que-retornan-valores---parte-1) - [Funciones con parámetros](#funciones-con-parámetros) - [Pasar argumentos por clave y valor](#pasar-argumentos-por-clave-y-valor) - [Funciones que retornan valores - Parte 2](#funciones-que-retornan-valores---parte-2) - [Funciones con parámetros por defecto](#funciones-con-parámetros-por-defecto) - [Número arbitrario de argumentos](#número-arbitrario-de-argumentos) - [Parámetros por defecto y arbitrarios en funciones](#parámetros-por-defecto-y-arbitrarios-en-funciones) - [Función como parámetro de otra función](#función-como-parámetro-de-otra-función) - [💻 Ejercicios: Día 11](#-ejercicios-día-11) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 11 ## Funciones Hasta ahora hemos aprendido muchas funciones integradas de Python. En esta sección nos centraremos en funciones definidas por el usuario. ¿Qué es una función? Antes de crear funciones, entendamos qué es y por qué las necesitamos. ### Definir funciones Una función es un bloque de código reutilizable o una sentencia de programación que realiza una tarea específica. Para definir o declarar una función, Python provee la palabra clave def. La sintaxis para definir funciones es la siguiente. El código dentro de la función solo se ejecuta cuando la llamamos o la invocamos. ### Declarar y llamar a una función Cuando creamos una función, decimos que la declaramos. Cuando la usamos, decimos que la llamamos o invocamos. Las funciones pueden tener parámetros o no. ```py # Sintaxis # Declarar una función def function_name(): codes codes # Llamar a una función function_name() ``` ### Función sin parámetros Una función puede declararse sin parámetros. **Ejemplo:** ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) generate_full_name () # Llamar a una función def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two print(total) add_two_numbers() ``` ### Funciones que retornan valores - Parte 1 Una función también puede devolver un valor; si una función no tiene return, devuelve None. Reescribamos las funciones anteriores usando return. A partir de ahora, cuando llamemos a la función y la imprimamos, obtendremos un valor. ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two return total print(add_two_numbers()) ``` ### Funciones con parámetros En una función podemos pasar diferentes tipos de datos (números, cadenas, booleanos, listas, tuplas, diccionarios o sets) como parámetros. - Parámetro único: si una función necesita un parámetro, la llamamos con un argumento. ```py # Sintaxis # Declarar una función def function_name(parameter): codes codes # Llamar a la función print(function_name(argument)) ``` **Ejemplo:** ```py def greetings (name): message = name + ', welcome to Python for Everyone!' return message print(greetings('Asabeneh')) def add_ten(num): ten = 10 return num + ten print(add_ten(90)) def square_number(x): return x * x print(square_number(2)) def area_of_circle (r): PI = 3.14 area = PI * r ** 2 return area print(area_of_circle(10)) def sum_of_numbers(n): total = 0 for i in range(n+1): total+=i print(total) print(sum_of_numbers(10)) # 55 print(sum_of_numbers(100)) # 5050 ``` - Dos parámetros: una función puede no tener parámetros o tener uno o varios. Si necesita dos parámetros, la llamamos con dos argumentos. ```py # Sintaxis # Declarar una función def function_name(para1, para2): codes codes # Llamar a la función print(function_name(arg1, arg2)) ``` **Ejemplo:** ```py def generate_full_name (first_name, last_name): space = ' ' full_name = first_name + space + last_name return full_name print('Full Name: ', generate_full_name('Asabeneh','Yetayeh')) def sum_two_numbers (num_one, num_two): sum = num_one + num_two return sum print('Sum of two numbers: ', sum_two_numbers(1, 9)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2021, 1819)) def weight_of_object (mass, gravity): weight = str(mass * gravity)+ ' N' # El valor necesita convertirse a cadena primero return weight print('Weight of an object in Newtons: ', weight_of_object(100, 9.81)) ``` ### Pasar argumentos por clave y valor Si pasamos argumentos por clave=valor, el orden de los parámetros no importa. ```py # Sintaxis # Declarar una función def function_name(para1, para2): codes codes # Llamar a la función print(function_name(para1 = 'John', para2 = 'Doe')) # el orden de los parámetros no importa ``` **Ejemplo:** ```py def print_fullname(firstname, lastname): space = ' ' full_name = firstname + space + lastname print(full_name) print(print_fullname(firstname = 'Asabeneh', lastname = 'Yetayeh')) def add_two_numbers (num1, num2): total = num1 + num2 print(total) print(add_two_numbers(num2 = 3, num1 = 2)) # el orden no importa ``` ### Funciones que retornan valores - Parte 2 Si no retornamos un valor en una función, por defecto devuelve _None_. Para devolver un valor usamos la palabra clave _return_ seguida de la variable a retornar. Podemos devolver cualquier tipo de dato desde una función. - Devolver cadenas: **Ejemplo:** ```py def print_name(firstname): return firstname print_name('Asabeneh') # Asabeneh def print_full_name(firstname, lastname): space = ' ' full_name = firstname + space + lastname return full_name print_full_name(firstname='Asabeneh', lastname='Yetayeh') ``` - Devolver números: **Ejemplo:** ```py def add_two_numbers (num1, num2): total = num1 + num2 return total print(add_two_numbers(2, 3)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2019, 1819)) ``` - Devolver booleanos: **Ejemplo:** ```py def is_even (n): if n % 2 == 0: print('even') return True # la instrucción return detiene la ejecución adicional en la función return False print(is_even(10)) # True print(is_even(7)) # False ``` - Devolver listas: **Ejemplo:** ```py def find_even_numbers(n): evens = [] for i in range(n + 1): if i % 2 == 0: evens.append(i) return evens print(find_even_numbers(10)) ``` ### Funciones con parámetros por defecto A veces pasamos valores por defecto a los parámetros. Si no proporcionamos un argumento al llamar la función, se usa el valor por defecto. ```py # Sintaxis # Declarar una función def function_name(param = value): codes codes # Llamar a la función function_name() function_name(arg) ``` **Ejemplo:** ```py def greetings (name = 'Peter'): message = name + ', welcome to Python for Everyone!' return message print(greetings()) print(greetings('Asabeneh')) def generate_full_name (first_name = 'Asabeneh', last_name = 'Yetayeh'): space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) print(generate_full_name('David','Smith')) def calculate_age (birth_year,current_year = 2021): age = current_year - birth_year return age; print('Age: ', calculate_age(1821)) def weight_of_object (mass, gravity = 9.81): weight = str(mass * gravity)+ ' N' # gravedad promedio en la superficie de la Tierra return weight print('Weight of an object in Newtons: ', weight_of_object(100)) # 9.81 - gravedad promedio en la Tierra print('Weight of an object in Newtons: ', weight_of_object(100, 1.62)) # gravedad en la Luna ``` ### Número arbitrario de argumentos Si no sabemos cuántos argumentos se pasarán a la función, podemos usar un parámetro con * para aceptar un número arbitrario de argumentos. ```py # Sintaxis # Declarar una función def function_name(*args): codes codes # Llamar a la función function_name(param1, param2, param3,..) ``` **Ejemplo:** ```py def sum_all_nums(*nums): total = 0 for num in nums: total += num # equivalente a total = total + num return total print(sum_all_nums(2, 3, 5)) # 10 ``` ### Parámetros por defecto y arbitrarios en funciones ```py def generate_groups (team,*args): print(team) for i in args: print(i) print(generate_groups('Team-1','Asabeneh','Brook','David','Eyob')) ``` ### Función como parámetro de otra función ```py # Puedes pasar una función como argumento def square_number (n): return n * n def do_something(f, x): return f(x) print(do_something(square_number, 3)) # 27 ``` 🌕 Has avanzado mucho. ¡Sigue así! Has completado el desafío del día 11 y ya llevas 11 pasos en el camino al éxito. Ahora realiza algunos ejercicios para ejercitar la mente y la práctica. ## Testimonios Es hora de expresar tu opinión sobre el autor y 30DaysOfPython. Puedes dejar tu testimonio en este [enlace](https://testimonify.herokuapp.com/). ## 💻 Ejercicios: Día 11 ### Ejercicios: Nivel 1 1. Declara una función _add_two_numbers_. Debe aceptar dos parámetros y devolver su suma. 2. La fórmula del área de un círculo es: area = π x r x r. Escribe una función _area_of_circle_ que la calcule. 3. Escribe una función llamada add_all_nums que acepte un número arbitrario de argumentos y sume todos. Verifica que todos los elementos sean de tipo numérico. Si no, devuelve un mensaje apropiado. 4. La temperatura en Celsius (°C) se puede convertir a Fahrenheit (°F) con: °F = (°C x 9/5) + 32. Escribe una función _convert_celsius_to_fahrenheit_. 5. Escribe una función llamada check_season que acepte un mes y devuelva la estación: otoño, invierno, primavera o verano. 6. Escribe una función llamada calculate_slope que devuelva la pendiente de una ecuación lineal. 7. La ecuación cuadrática se calcula como: ax² + bx + c = 0. Escribe una función _solve_quadratic_eqn_ que calcule las soluciones. 8. Declara una función llamada print_list que acepte una lista y imprima cada elemento. 9. Declara una función llamada reverse_list que acepte un arreglo y devuelva su reverso (usa un bucle). ```py print(reverse_list([1, 2, 3, 4, 5])) # [5, 4, 3, 2, 1] print(reverse_list1(["A", "B", "C"])) # ["C", "B", "A"] ``` 10. Declara una función capitalize_list_items que acepte una lista y devuelva una lista con los elementos en mayúscula. 11. Declara una función add_item que acepte una lista y un ítem. Debe devolver la lista con el ítem agregado al final. ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(add_item(food_staff, 'Meat')) # ['Potato', 'Tomato', 'Mango', 'Milk','Meat']; numbers = [2, 3, 7, 9]; print(add_item(numbers, 5)) [2, 3, 7, 9, 5] ``` 12. Declara una función remove_item que acepte una lista y un ítem. Debe devolver la lista con el ítem eliminado. ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(remove_item(food_staff, 'Mango')) # ['Potato', 'Tomato', 'Milk']; numbers = [2, 3, 7, 9]; print(remove_item(numbers, 3)) # [2, 7, 9] ``` 13. Declara una función sum_of_numbers que acepte un número y sume todos los números en ese rango. ```py print(sum_of_numbers(5)) # 15 print(sum_all_numbers(10)) # 55 print(sum_all_numbers(100)) # 5050 ``` 14. Declara una función sum_of_odds que acepte un número y sume todos los impares en ese rango. 15. Declara una función sum_of_even que acepte un número y sume todos los pares en ese rango. ### Ejercicios: Nivel 2 1. Declara una función evens_and_odds que acepte un entero positivo y calcule la cantidad de pares e impares en ese número. ```py print(evens_and_odds(100)) # La cantidad de números pares es 50. # La cantidad de números impares es 50. ``` 2. Llama a tu función factorial que acepte un entero y devuelva su factorial. 3. Llama a tu función _is_empty_ que acepte un argumento y verifique si está vacío. 4. Escribe distintas funciones que acepten listas y calculen: media, mediana, moda, rango, varianza y desviación estándar. ### Ejercicios: Nivel 3 1. Escribe una función is_prime que verifique si un número es primo. 2. Escribe una función que verifique si todos los ítems en una lista son únicos. 3. Escribe una función que verifique si todos los ítems en una lista son del mismo tipo de dato. 4. Escribe una función que verifique si una variable proporcionada es un nombre de variable válido en Python. 5. Accede al archivo de datos countries-data.py. - Crea una función llamada the_most_spoken_languages que devuelva las 10 o 20 lenguas más habladas en el mundo, ordenadas de mayor a menor. - Crea una función llamada the_most_populated_countries que devuelva los 10 o 20 países más poblados del mundo, ordenados de mayor a menor. 🎉 ¡Felicidades! 🎉 [<< Día 10](./10_loops_sp.md) | [Día 12 >>](./12_modules_sp.md) ================================================ FILE: Spanish/12_modules_sp.md ================================================

30 Días de Python: Día 12 - Módulos

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 11](./11_functions_sp.md) | [Día 13 >>](./13_list_comprehension_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 12](#-día-12) - [Módulos](#módulos) - [¿Qué es un módulo?](#¿qué-es-un-módulo?) - [Crear módulos](#crear-módulos) - [Importar módulos](#importar-módulos) - [Importar funciones desde un módulo](#importar-funciones-desde-un-módulo) - [Importar funciones y renombrarlas](#importar-funciones-y-renombrarlas) - [Importar módulos incorporados](#importar-módulos-incorporados) - [Módulo OS](#módulo-os) - [Módulo sys](#módulo-sys) - [Módulo statistics](#módulo-statistics) - [Módulo math](#módulo-math) - [Módulo string](#módulo-string) - [Módulo random](#módulo-random) - [💻 Ejercicios: Día 12](#-ejercicios-día-12) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 12 ## Módulos ### ¿Qué es un módulo? Un módulo es un archivo que contiene un conjunto de código o funciones que se pueden incluir en una aplicación. Un módulo puede ser un archivo con una sola variable, una función o una biblioteca de gran escala. ### Crear módulos Para crear un módulo, escribimos código en un script de Python y lo guardamos con extensión .py. En la carpeta del proyecto crea un archivo llamado mymodule.py. Escribamos algo de código en ese archivo. ```py # archivo mymodule.py def generate_full_name(firstname, lastname): return firstname + ' ' + lastname ``` En el directorio del proyecto crea un archivo main.py e importa mymodule.py. ### Importar módulos Para importar archivos usamos la palabra clave import y el nombre del archivo. ```py # archivo main.py import mymodule print(mymodule.generate_full_name('Asabeneh', 'Yetayeh')) # Asabeneh Yetayeh ``` ### Importar funciones desde un módulo Podemos tener muchas funciones en un archivo y podemos importar cada una por separado. ```py # archivo main.py from mymodule import generate_full_name, sum_two_nums, person, gravity print(generate_full_name('Asabneh','Yetayeh')) print(sum_two_nums(1,9)) mass = 100 weight = mass * gravity print(weight) print(person['firstname']) ``` ### Importar funciones y renombrarlas Durante la importación también podemos renombrar nombres. ```py # archivo main.py from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g print(fullname('Asabneh','Yetayeh')) print(total(1, 9)) mass = 100 weight = mass * g print(weight) print(p) print(p['firstname']) ``` ## Importar módulos incorporados Al igual que otros lenguajes, podemos importar módulos usando la palabra clave import. A continuación importamos algunos módulos incorporados que usamos con frecuencia. Algunos módulos comunes son: math, datetime, os, sys, random, statistics, collections, json, re ### Módulo OS El módulo os de Python permite automatizar muchas tareas del sistema operativo. El módulo OS ofrece funciones para crear, cambiar directorio de trabajo, eliminar directorios (carpetas), obtener su contenido y reconocer/cambiar el directorio actual. ```py # importar módulo import os # crear directorio os.mkdir('directory_name') # cambiar el directorio actual os.chdir('path') # obtener el directorio actual os.getcwd() # eliminar directorio os.rmdir() ``` ### Módulo sys El módulo sys provee funciones y variables para interactuar con diferentes partes del entorno de ejecución de Python. La función sys.argv devuelve la lista de argumentos de la línea de comandos pasados al script de Python. El elemento en el índice 0 de esa lista es siempre el nombre del script, el índice 1 es el primer argumento pasado desde la línea de comandos. Ejemplo archivo script.py: ```py import sys #print(sys.argv[0], argv[1],sys.argv[2]) # esta línea imprimirá: nombre_archivo argumento1 argumento2 print('Welcome {}. Enjoy {} challenge!'.format(sys.argv[1], sys.argv[2])) ``` Para ver cómo funciona el script, en la línea de comandos escribe: ```sh python script.py Asabeneh 30DaysOfPython ``` Resultado: ```sh Welcome Asabeneh. Enjoy 30DayOfPython challenge! ``` Algunos comandos útiles de sys: ```py # salir del script sys.exit() # conocer el tamaño máximo de un entero sys.maxsize # conocer la ruta de módulos sys.path # conocer la versión de Python en uso sys.version ``` ### Módulo statistics El módulo statistics proporciona funciones de estadísticas para datos numéricos. Algunas funciones comunes definidas en este módulo: mean, median, mode, stdev, etc. ```py from statistics import * # importar todo del módulo statistics ages = [20, 20, 4, 24, 25, 22, 26, 20, 23, 22, 26] print(mean(ages)) # ~22.9 print(median(ages)) # 23 print(mode(ages)) # 20 print(stdev(ages)) # ~2.3 ``` ### Módulo math Contiene muchas operaciones matemáticas y constantes. ```py import math print(math.pi) # 3.141592653589793, constante pi print(math.sqrt(2)) # 1.4142135623730951, raíz cuadrada print(math.pow(2, 3)) # 8.0, potencia print(math.floor(9.81)) # 9, redondeo hacia abajo print(math.ceil(9.81)) # 10, redondeo hacia arriba print(math.log10(100)) # 2, logaritmo base 10 ``` Ahora que hemos importado el módulo math con muchas funciones útiles, podemos ver qué funciones contiene usando help(math) o dir(math). Si sólo queremos importar funciones específicas podemos hacerlo así: ```py from math import pi print(pi) ``` También podemos importar múltiples funciones: ```py from math import pi, sqrt, pow, floor, ceil, log10 print(pi) # 3.141592653589793 print(sqrt(2)) # 1.4142135623730951 print(pow(2, 3)) # 8.0 print(floor(9.81)) # 9 print(ceil(9.81)) # 10 print(math.log10(100)) # 2 ``` Si queremos importar todas las funciones del módulo matemático podemos usar *. ```py from math import * print(pi) # 3.141592653589793, constante pi print(sqrt(2)) # 1.4142135623730951, raíz cuadrada print(pow(2, 3)) # 8.0, potencia print(floor(9.81)) # 9, redondeo hacia abajo print(ceil(9.81)) # 10, redondeo hacia arriba print(math.log10(100)) # 2 ``` También podemos renombrar funciones al importarlas. ```py from math import pi as PI print(PI) # 3.141592653589793 ``` ### Módulo string El módulo string es muy útil. Los siguientes ejemplos muestran algunos usos. ```py import string print(string.ascii_letters) # abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ print(string.digits) # 0123456789 print(string.punctuation) # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ ``` ### Módulo random Ahora que sabes importar módulos, familiaricémonos con random. El módulo random nos da números aleatorios entre 0 y 0.9999. El módulo tiene muchas funciones; aquí usamos random y randint. ```py from random import random, randint print(random()) # no necesita parámetros; devuelve un valor entre 0 y 0.9999 print(randint(5, 20)) # devuelve un entero aleatorio en [5, 20] (inclusive) ``` 🌕 ¡Has llegado muy lejos. Sigue así! Acabas de completar el desafío del Día 12 y has dado 12 pasos hacia algo grandioso. Ahora ejercita tu mente y tus músculos. ## 💻 Ejercicios: Día 12 ### Ejercicios: Nivel 1 1. Escribe una función que genere un random_user_id de seis caracteres/dígitos. ```py print(random_user_id()); '1ee33d' ``` 2. Modifica la tarea anterior. Declara una función llamada user_id_gen_by_user. No acepta argumentos, pero pide dos entradas: una es la cantidad de caracteres por ID y la otra es cuántos IDs generar. ```py print(user_id_gen_by_user()) # entrada del usuario: 5 5 #salida: #kcsy2 #SMFYb #bWmeq #ZXOYh #2Rgxf print(user_id_gen_by_user()) # 16 5 #1GCSgPLMaBAVQZ26 #YD7eFwNQKNs7qXaT #ycArC5yrRupyG00S #UbGxOFI7UXSWAyKN #dIV0SSUTgAdKwStr ``` 3. Escribe una función llamada rgb_color_gen. Debe generar un color RGB (cada valor en el rango 0-255). ```py print(rgb_color_gen()) # rgb(125,244,255) - la salida debe estar en este formato ``` ### Ejercicios: Nivel 2 1. Escribe una función list_of_hexa_colors que devuelva una lista con cualquier cantidad de colores hexadecimales (seis dígitos hexadecimales después de #; el sistema hex usa 0-9 y a-f). 2. Escribe una función list_of_rgb_colors que devuelva una lista con cualquier cantidad de colores RGB. 3. Escribe una función generate_colors que pueda generar cualquier cantidad de colores hexadecimales o RGB. ```py generate_colors('hexa', 3) # ['#a3e12f','#03ed55','#eb3d2b'] generate_colors('hexa', 1) # ['#b334ef'] generate_colors('rgb', 3) # ['rgb(5, 55, 175','rgb(50, 105, 100','rgb(15, 26, 80'] generate_colors('rgb', 1) # ['rgb(33,79, 176)'] ``` ### Ejercicios: Nivel 3 1. Llama a tu función shuffle_list, que recibe una lista y devuelve la lista mezclada. 2. Escribe una función que devuelva una lista de siete números aleatorios únicos en el rango 0-9. 🎉 ¡Felicidades! 🎉 [<< Día 11](./11_functions_sp.md) | [Día 13 >>](./13_list_comprehension_sp.md) ================================================ FILE: Spanish/13_list_comprehension_sp.md ================================================

30 Días de Python: Día 13 - Comprensiones de listas

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 12](./12_modules_sp.md) | [Día 14 >>](./14_higher_order_functions_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 13](#📘-día-13) - [Comprensiones de listas](#comprensiones-de-listas) - [Funciones lambda](#funciones-lambda) - [Crear una función lambda](#crear-una-función-lambda) - [Funciones lambda dentro de otra función](#lambda-dentro-de-otra-función) - [💻 Ejercicios: Día 13](#💻-ejercicios-día-13) # 📘 Día 13 ## Comprensiones de listas En Python, las comprensiones de listas son una forma concisa de crear listas a partir de secuencias. Es una manera corta de crear nuevas listas a partir de secuencias. Las comprensiones de listas son más rápidas que iterar sobre listas con un bucle for. ```py # sintaxis [i for i in iterable if expresión] ``` **Ejemplo 1** Por ejemplo, si quieres convertir una cadena en una lista de caracteres, puedes hacerlo de varias formas. Veamos algunas: ```py # un método language = 'Python' lst = list(language) # convertir la cadena en lista print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] # segunda forma: comprensión de listas lst = [i for i in language] print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] ``` **Ejemplo 2** Por ejemplo, si quieres generar una lista de números: ```py # generar números numbers = [i for i in range(11)] # genera números de 0 a 10 print(numbers) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # también puedes hacer operaciones matemáticas durante la iteración squares = [i * i for i in range(11)] print(squares) # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100] # también se pueden generar listas de tuplas numbers = [(i, i * i) for i in range(11)] print(numbers) # [(0, 0), (1, 1), (2, 4), (3, 9), (4, 16), (5, 25)] ``` **Ejemplo 3** Las comprensiones de listas pueden combinarse con expresiones if: ```py # generar números pares even_numbers = [i for i in range(21) if i % 2 == 0] # genera pares de 0 a 20 print(even_numbers) # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # generar números impares odd_numbers = [i for i in range(21) if i % 2 != 0] # genera impares de 0 a 20 print(odd_numbers) # [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] # filtrar números: obtengamos los pares positivos numbers = [-8, -7, -3, -1, 0, 1, 3, 4, 5, 7, 6, 8, 10] positive_even_numbers = [i for i in range(21) if i % 2 == 0 and i > 0] print(positive_even_numbers) # [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # aplanar una lista 2D list_of_lists = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] flattened_list = [number for row in list_of_lists for number in row] print(flattened_list) # [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ## Funciones lambda Las funciones lambda son pequeñas funciones anónimas sin nombre. Pueden aceptar cualquier número de argumentos, pero solo una expresión. Las funciones lambda son similares a las funciones anónimas en JavaScript. Son útiles cuando necesitamos una función anónima dentro de otra función. ### Crear una función lambda Para crear una función lambda usamos la palabra clave lambda, seguido de uno o más parámetros y luego una expresión. La función lambda no usa return explícito; devuelve la expresión implícitamente. ```py # sintaxis x = lambda param1, param2, param3: param1 + param2 + param3 print(x(arg1, arg2, arg3)) ``` **Ejemplo:** ```py # función nombrada def add_two_nums(a, b): return a + b print(add_two_nums(2, 3)) # 5 # con lambda add_two_nums = lambda a, b: a + b print(add_two_nums(2, 3)) # 5 # lambda autoejecutable print((lambda a, b: a + b)(2, 3)) # 5 square = lambda x: x ** 2 print(square(3)) # 9 cube = lambda x: x ** 3 print(cube(3)) # 27 # múltiples variables multiple_variable = lambda a, b, c: a ** 2 - 3 * b + 4 * c print(multiple_variable(5, 5, 3)) # 22 ``` ### Funciones lambda dentro de otra función Uso de lambda dentro de otra función: ```py def power(x): return lambda n: x ** n cube = power(2)(3) # la función power ahora se usa con dos pares de paréntesis print(cube) # 8 two_power_of_five = power(2)(5) print(two_power_of_five) # 32 ``` 🌕 Sigue con el buen trabajo. Mantente motivado; el cielo es tu límite. Has completado el desafío del Día 13 y has dado 13 pasos hacia algo grandioso. Ahora ejercita tu mente y sigue practicando. ## 💻 Ejercicios: Día 13 1. Usa una comprensión de listas para filtrar los números negativos y ceros de la siguiente lista: ```py numbers = [-4, -3, -2, -1, 0, 2, 4, 6] ``` 2. Aplana la siguiente lista de listas a una lista unidimensional: ```py list_of_lists = [[[1, 2, 3]], [[4, 5, 6]], [[7, 8, 9]]] Salida: [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` 3. Crea la siguiente lista de tuplas usando una comprensión de listas: ```py [(0, 1, 0, 0, 0, 0, 0), (1, 1, 1, 1, 1, 1, 1), (2, 1, 2, 4, 8, 16, 32), (3, 1, 3, 9, 27, 81, 243), (4, 1, 4, 16, 64, 256, 1024), (5, 1, 5, 25, 125, 625, 3125), (6, 1, 6, 36, 216, 1296, 7776), (7, 1, 7, 49, 343, 2401, 16807), (8, 1, 8, 64, 512, 4096, 32768), (9, 1, 9, 81, 729, 6561, 59049), (10, 1, 10, 100, 1000, 10000, 100000)] ``` 4. Aplana la siguiente estructura en una nueva lista: ```py countries = [[('Finlandia', 'Helsinki')], [('Suecia', 'Estocolmo')], [('Noruega', 'Oslo')]] Salida: [['Finlandia', 'FIN', 'Helsinki'], ['Suecia', 'SWE', 'Estocolmo'], ['Noruega', 'NOR', 'Oslo']] ``` 5. Convierte la siguiente lista en una lista de diccionarios: ```py countries = [[('Finlandia', 'Helsinki')], [('Suecia', 'Estocolmo')], [('Noruega', 'Oslo')]] Salida: [{'País': 'Finlandia', 'Ciudad': 'Helsinki'}, {'País': 'Suecia', 'Ciudad': 'Estocolmo'}, {'País': 'Noruega', 'Ciudad': 'Oslo'}] ``` 6. Convierte la siguiente lista en una lista de cadenas concatenadas: ```py names = [[('Asabeneh', 'Yetayeh')], [('David', 'Smith')], [('Donald', 'Trump')], [('Bill', 'Gates')]] Salida: ['Asabeneh Yetayeh', 'David Smith', 'Donald Trump', 'Bill Gates'] ``` 7. Escribe una función lambda que calcule la pendiente o la ordenada al origen de una función lineal. 🎉 ¡Felicidades! 🎉 [<< Día 12](./12_modules_sp.md) | [Día 14 >>](./14_higher_order_functions_sp.md) ================================================ FILE: Spanish/14_higher_order_functions_sp.md ================================================

30 Días de Python: Día 14 - Funciones de orden superior

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[<< Día 13](./13_list_comprehension_sp.md) | [Día 15 >>](./15_python_type_errors_cn_sp.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 Día 14](#-día-14) - [Funciones de orden superior](#funciones-de-orden-superior) - [Funciones como parámetros](#funciones-como-parámetros) - [Funciones como valor de retorno](#funciones-como-valor-de-retorno) - [Closures en Python](#closures-en-python) - [Decoradores en Python](#decoradores-en-python) - [Crear decoradores](#crear-decoradores) - [Aplicar varios decoradores a una función](#aplicar-varios-decoradores-a-una-función) - [Aceptar parámetros en decoradores](#aceptar-parámetros-en-decoradores) - [Funciones integradas de orden superior](#funciones-integradas-de-orden-superior) - [Python - función map](#python---función-map) - [Python - función filter](#python---función-filter) - [Python - función reduce](#python---función-reduce) - [💻 Ejercicios: Día 14](#-ejercicios-día-14) - [Ejercicios: Básico](#ejercicios-básico) - [Ejercicios: Intermedio](#ejercicios-intermedio) - [Ejercicios: Avanzado](#ejercicios-avanzado) # 📘 Día 14 ## Funciones de orden superior En Python, las funciones son tratadas como ciudadanos de primera clase; se pueden hacer las siguientes operaciones con funciones: - Una función puede recibir una o más funciones como parámetros - Una función puede ser el valor de retorno de otra función - Una función puede ser modificada - Una función puede asignarse a una variable En esta sección discutiremos: 1. Pasar funciones como parámetros 2. Devolver funciones como valores de retorno 3. Usar closures y decoradores en Python ### Funciones como parámetros ```py def sum_numbers(nums): # función normal return sum(nums) # usa la función incorporada sum def higher_order_function(f, lst): # pasar función como argumento summation = f(lst) return summation result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5]) print(result) # 15 ``` ### Funciones como valor de retorno ```py def square(x): # función que devuelve el cuadrado return x ** 2 def cube(x): # función que devuelve el cubo return x ** 3 def absolute(x): # función que devuelve el valor absoluto if x >= 0: return x else: return -(x) def higher_order_function(type): # función de orden superior que devuelve una función if type == 'square': return square elif type == 'cube': return cube elif type == 'absolute': return absolute result = higher_order_function('square') print(result(3)) # 9 result = higher_order_function('cube') print(result(3)) # 27 result = higher_order_function('absolute') print(result(-3)) # 3 ``` En los ejemplos anteriores se observa que la función de orden superior devuelve distintas funciones según el parámetro pasado. ## Closures en Python Python permite que una función anidada acceda al ámbito de su función envolvente externa. Esto se conoce como closure. Un closure en Python se crea al anidar una función dentro de otra función envolvente y devolver la función interna. Veamos un ejemplo. **Ejemplo:** ```py def add_ten(): ten = 10 def add(num): return num + ten return add closure_result = add_ten() print(closure_result(5)) # 15 print(closure_result(10)) # 20 ``` ## Decoradores en Python Un decorador es un patrón de diseño que permite añadir nueva funcionalidad a un objeto sin modificar su estructura. Los decoradores normalmente se usan aplicándolos antes de la definición de la función que se desea decorar. ### Crear decoradores Para crear un decorador necesitamos una función externa que contenga una función envoltura interna. **Ejemplo:** ```py # función normal def greeting(): return 'Welcome to Python' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper g = uppercase_decorator(greeting) print(g()) # WELCOME TO PYTHON # Implementando lo anterior con sintaxis de decorador '''Esta función decoradora es una función de orden superior que acepta una función como argumento''' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper @uppercase_decorator def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### Aplicar varios decoradores a una función ```py '''Estas funciones decoradoras son funciones de orden superior que reciben funciones como argumento''' # primer decorador def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper # segundo decorador def split_string_decorator(function): def wrapper(): func = function() splitted_string = func.split() return splitted_string return wrapper @split_string_decorator @uppercase_decorator # en este caso el orden importa, ya que .upper() no funciona sobre una lista def greeting(): return 'Welcome to Python' print(greeting()) # ['WELCOME', 'TO', 'PYTHON'] ``` ### Aceptar parámetros en decoradores A menudo necesitamos que nuestras funciones acepten parámetros; por eso definimos decoradores que también los aceptan. ```py def decorator_with_parameters(function): def wrapper_accepting_parameters(para1, para2, para3): function(para1, para2, para3) print("I live in {}".format(para3)) return wrapper_accepting_parameters @decorator_with_parameters def print_full_name(first_name, last_name, country): print("I am {} {}. I love to teach.".format( first_name, last_name, country)) print_full_name("Asabeneh", "Yetayeh",'Finland') ``` ## Funciones integradas de orden superior En esta sección veremos algunas funciones integradas de orden superior como map(), filter() y reduce(). Las funciones lambda se pueden pasar como argumentos; su caso de uso ideal es con map, filter y reduce. ### Python - función map map() es una función integrada que recibe una función y un iterable como parámetros. ```py # sintaxis map(function, iterable) ``` **Ejemplo 1** ```py numbers = [1, 2, 3, 4, 5] # iterable def square(x): return x ** 2 numbers_squared = map(square, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] # Usemos lambda numbers_squared = map(lambda x : x ** 2, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] ``` **Ejemplo 2** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable numbers_int = map(int, numbers_str) print(list(numbers_int)) # [1, 2, 3, 4, 5] ``` **Ejemplo 3** ```py names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def change_to_upper(name): return name.upper() names_upper_cased = map(change_to_upper, names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] # Usemos lambda names_upper_cased = map(lambda name: name.upper(), names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] ``` map itera sobre el iterable y devuelve un nuevo iterable transformado. ### Python - función filter filter() llama a la función especificada que retorna un valor booleano para cada elemento del iterable y filtra los elementos que cumplen la condición. ```py # sintaxis filter(function, iterable) ``` **Ejemplo 1** ```py # filtremos solo los pares numbers = [1, 2, 3, 4, 5] # iterable def is_even(num): if num % 2 == 0: return True return False even_numbers = filter(is_even, numbers) print(list(even_numbers)) # [2, 4] ``` **Ejemplo 2** ```py numbers = [1, 2, 3, 4, 5] # iterable def is_odd(num): if num % 2 != 0: return True return False odd_numbers = filter(is_odd, numbers) print(list(odd_numbers)) # [1, 3, 5] ``` ```py # filtrar nombres largos names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def is_name_long(name): if len(name) > 7: return True return False long_names = filter(is_name_long, names) print(list(long_names)) # ['Asabeneh'] ``` ### Python - función reduce reduce() se define en el módulo functools; es necesario importarla desde allí. Al igual que map y filter, recibe una función y un iterable. Sin embargo, no devuelve otro iterable sino un único valor acumulado. **Ejemplo 1** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable def add_two_nums(x, y): return int(x) + int(y) total = reduce(add_two_nums, numbers_str) print(total) # 15 ``` ## 💻 Ejercicios: Día 14 ```py countries = ['Estonia', 'Finland', 'Sweden', 'Denmark', 'Norway', 'Iceland'] names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ``` ### Ejercicios: Básico 1. Explica la diferencia entre map, filter y reduce. 2. Explica la diferencia entre funciones de orden superior, closures y decoradores. 3. Define la función que llama (ver ejemplo). 4. Imprime cada país de la lista countries usando un bucle for. 5. Imprime cada nombre de la lista names usando un bucle for. 6. Imprime cada número de la lista numbers usando un bucle for. ### Ejercicios: Intermedio 1. Usa map para convertir cada país en countries a mayúsculas y genera una nueva lista. 2. Usa map para elevar al cuadrado cada número en numbers y genera una nueva lista. 3. Usa map para convertir cada nombre en names a mayúsculas y genera una nueva lista. 4. Usa filter para filtrar países que contienen 'land'. 5. Usa filter para filtrar países con exactamente seis caracteres. 6. Usa filter para filtrar países con seis o más caracteres. 7. Usa filter para filtrar países que comienzan con 'E'. 8. Encadena dos o más iteradores de lista (por ejemplo arr.map(callback).filter(callback).reduce(callback)). 9. Declara una función get_string_lists que reciba una lista y devuelva una lista con solo los elementos de tipo cadena. 10. Usa reduce para sumar todos los números en la lista numbers. 11. Usa reduce para concatenar todos los países en una oración: Estonia, Finland, Sweden, Denmark, Norway, and Iceland are north European countries. 12. Declara una función categorize_countries que retorne una lista de países que siguen un patrón común (puedes ver la lista de países en el archivo countries.js del repositorio, por ejemplo 'land', 'ia', 'island', 'stan'). 13. Crea una función que devuelva un diccionario donde las claves sean la primera letra de los nombres de país y el valor sea el número de países que comienzan con esa letra. 14. Declara una función get_first_ten_countries que devuelva los primeros diez países de la lista countries.js en la carpeta data. 15. Declara una función get_last_ten_countries que devuelva los últimos diez países de la lista. ### Ejercicios: Avanzado 1. Usando el archivo countries_data.py (https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py), completa lo siguiente: - Ordena los países por nombre, capital y población. - Ordena y obtiene los diez idiomas más usados. - Ordena y obtiene los diez países con mayor población. 🎉 ¡Felicidades! 🎉 [<< Día 13](./13_list_comprehension_sp.md) | [Día 15 >>](./15_python_type_errors_cn_sp.md) ================================================ FILE: Spanish/15_python_type_errors_sp.md ================================================ # Desafío de programación Python: Día 15 - Errores (excepciones) en Python - [Día 15](#día-15) - [Tipos de error en Python](#tipos-de-error-en-python) - [SyntaxError (Error de sintaxis)](#syntaxerror-error-de-sintaxis) - [NameError (Error de nombre)](#nameerror-error-de-nombre) - [IndexError (Error de índice)](#indexerror-error-de-índice) - [ModuleNotFoundError (Módulo no encontrado)](#modulenotfounderror-módulo-no-encontrado) - [AttributeError (Error de atributo)](#attributeerror-error-de-atributo) - [KeyError (Error de clave)](#keyerror-error-de-clave) - [TypeError (Error de tipo)](#typeerror-error-de-tipo) - [ImportError (Error de importación)](#importerror-error-de-importación) - [ValueError (Error de valor)](#valueerror-error-de-valor) - [ZeroDivisionError (Error de división por cero)](#zerodivisionerror-error-de-división-por-cero) - [💻 Ejercicios - Día 15](#-ejercicios---día-15) # 📘 Día 15 ## Tipos de error en Python Al escribir código, con frecuencia cometemos errores tipográficos u otros errores comunes. Si nuestro código falla, el intérprete de Python muestra un mensaje que nos da retroalimentación sobre dónde ocurrió el problema y cuál es el tipo de error. A veces incluso sugiere posibles soluciones. Conocer los distintos tipos de errores en el lenguaje nos ayudará a depurar más rápido y a mejorar nuestras habilidades de programación. Revisemos los tipos de error más comunes uno por uno. Primero, abre el intérprete interactivo de Python. Ve a la terminal de tu equipo e ingresa 'python'. Se abrirá el intérprete interactivo de Python. ### SyntaxError (Error de sintaxis) **Ejemplo 1: SyntaxError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> ``` Como ves, cometimos un error de sintaxis porque olvidamos encerrar la cadena entre paréntesis; Python incluso sugiere la corrección. Arreglémoslo. ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> print('hello world') hello world >>> ``` Ese fue un SyntaxError. Tras corregirlo, el código se ejecuta correctamente. Veamos otros tipos de errores. ### NameError (Error de nombre) **Ejemplo 1: NameError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> ``` El mensaje indica que el nombre age no está definido. En efecto, no hemos declarado age pero intentamos imprimirlo. Solucionémoslo declarando la variable y asignándole un valor. ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> age = 25 >>> print(age) 25 >>> ``` Ese fue un NameError. Lo depuramos definiendo la variable. ### IndexError (Error de índice) **Ejemplo 1: IndexError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> numbers = [1, 2, 3, 4, 5] >>> numbers[5] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range >>> ``` En este ejemplo Python lanzó un IndexError porque los índices válidos de la lista son 0 a 4; el índice 5 está fuera de rango. ### ModuleNotFoundError (Módulo no encontrado) **Ejemplo 1: ModuleNotFoundError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> ``` Aquí añadí intencionadamente una 's' extra a math, lo que produjo un ModuleNotFoundError. Corrijámoslo quitando la 's'. ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> ``` Lo hemos corregido y ahora podemos usar el módulo math. ### AttributeError (Error de atributo) **Ejemplo 1: AttributeError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> ``` Aquí intenté acceder a math.PI en lugar de math.pi, lo que produjo un AttributeError porque ese atributo no existe. Corrijámoslo usando el nombre correcto: ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> math.pi 3.141592653589793 >>> ``` Ahora la llamada devuelve el valor esperado. ### KeyError (Error de clave) **Ejemplo 1: KeyError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> users = {'name':'Asab', 'age':250, 'country':'Finland'} >>> users['name'] 'Asab' >>> users['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> ``` Aquí hay un error de ortografía en la clave usada para obtener un valor del diccionario. Es un KeyError; la solución es usar la clave correcta. ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> user = {'name':'Asab', 'age':250, 'country':'Finland'} >>> user['name'] 'Asab' >>> user['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> user['country'] 'Finland' >>> ``` Error depurado; el código devuelve el resultado esperado. ### TypeError (Error de tipo) **Ejemplo 1: TypeError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> ``` En este caso aparece un TypeError porque no podemos sumar un entero y una cadena. Una solución es convertir la cadena a int o float; otra es convertir el entero a cadena para concatenarlos. Probemos la primera solución: ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> 4 + int('3') 7 >>> 4 + float('3') 7.0 >>> ``` El error desaparece y obtenemos el resultado esperado. ### ImportError (Error de importación) **Ejemplo 1: ImportError** ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> ``` El módulo math no tiene una función llamada power; la función correcta es pow. Corrijámoslo: ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> from math import pow >>> pow(2,3) 8.0 >>> ``` ### ValueError (Error de valor) ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> int('12a') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '12a' >>> ``` No podemos convertir la cadena dada a número porque contiene la letra 'a'. ### ZeroDivisionError (Error de división por cero) ```python asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1/0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero >>> ``` No podemos dividir un número por cero. Hemos revisado varios tipos de errores en Python; para más información, consulta la documentación oficial sobre excepciones en Python. Si te acostumbras a leer los mensajes de error, podrás corregir tus bugs rápidamente y convertirte en un mejor programador. 🌕 Vas progresando. Has completado la mitad del camino hacia algo genial. Ahora haz algunos ejercicios para entrenar tu cerebro y tus manos. ## 💻 Ejercicios - Día 15 1. Abre tu intérprete interactivo de Python y prueba todos los ejemplos mostrados en esta sección. 🎉 ¡Felicidades! 🎉 [<< Día 14](./14_higher_order_functions_sp.md) | [Día 16 >>](./16_python_datetime_sp.md) ================================================ FILE: Spanish/16_python_datetime_sp.md ================================================ # 30 Días de Python: Día 16 - datetime en Python - [Día 16](#-día-16) - [Python *datetime*](#python-datetime) - [Obtener información de *datetime*](#obtener-información-de-datetime) - [Formatear fecha con *strftime*](#formatear-fecha-con-strftime) - [Convertir cadena a fecha con *strptime*](#convertir-cadena-a-fecha-con-strptime) - [Usar *date* desde *datetime*](#usar-date-desde-datetime) - [Representar tiempo con objetos *time*](#representar-tiempo-con-objetos-time) - [Calcular la diferencia entre dos puntos en el tiempo](#calcular-la-diferencia-entre-dos-puntos-en-el-tiempo) - [Calcular diferencias con *timedelta*](#calcular-diferencias-con-timedelta) - [💻 Ejercicios - Día 16](#-ejercicios---día-16) # 📘 Día 16 ## Python *datetime* Python tiene un módulo _datetime_ para trabajar con fechas y horas. ```py import datetime print(dir(datetime)) ['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo'] ``` Con los comandos incorporados dir o help puedes ver las funciones disponibles de un módulo. Como ves, el módulo datetime tiene muchas clases y funciones; nos centraremos en _date_, _datetime_, _time_ y _timedelta_. Veámoslas una a una. ### Obtener información de *datetime* ```py from datetime import datetime now = datetime.now() print(now) # 2021-07-08 07:34:46.549883 day = now.day # 8 month = now.month # 7 year = now.year # 2021 hour = now.hour # 7 minute = now.minute # 38 second = now.second timestamp = now.timestamp() print(day, month, year, hour, minute) print('timestamp', timestamp) print(f'{day}/{month}/{year}, {hour}:{minute}') # 8/7/2021, 7:38 ``` El timestamp, o Unix timestamp, es el número de segundos transcurridos desde el 1 de enero de 1970 UTC. ### Formatear fecha con *strftime* ```py from datetime import datetime new_year = datetime(2020, 1, 1) print(new_year) # 2020-01-01 00:00:00 day = new_year.day month = new_year.month year = new_year.year hour = new_year.hour minute = new_year.minute second = new_year.second print(day, month, year, hour, minute) #1 1 2020 0 0 print(f'{day}/{month}/{year}, {hour}:{minute}') # 1/1/2020, 0:0 ``` Usa el método *strftime* para formatear fechas y horas; la documentación de formatos está [aquí](https://strftime.org/). ```py from datetime import datetime # fecha y hora actual now = datetime.now() t = now.strftime("%H:%M:%S") print("Hora:", t) time_one = now.strftime("%m/%d/%Y, %H:%M:%S") # formato mm/dd/YY H:M:S print("Formato uno:", time_one) time_two = now.strftime("%d/%m/%Y, %H:%M:%S") # formato dd/mm/YY H:M:S print("Formato dos:", time_two) ``` ```sh Hora: 01:05:01 Formato uno: 12/05/2019, 01:05:01 Formato dos: 05/12/2019, 01:05:01 ``` A continuación se muestran los símbolos de _strftime_ usados para formatear tiempos, como se ve en la imagen de referencia. ![strftime](../images/strftime.png) ### Convertir cadena a fecha con *strptime* Aquí hay una [guía](https://www.programiz.com/python-programming/datetime/strptimet) que ayuda a entender los formatos. ```py from datetime import datetime date_string = "5 December, 2019" print("date_string =", date_string) date_object = datetime.strptime(date_string, "%d %B, %Y") print("date_object =", date_object) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 ``` ### Usar *date* desde *datetime* ```py from datetime import date d = date(2020, 1, 1) print(d) print('Fecha actual:', d.today()) # fecha actual # objeto date de hoy today = date.today() print("Año actual:", today.year) # 2019 print("Mes actual:", today.month) # 12 print("Día actual:", today.day) # 5 ``` ### Representar tiempo con objetos *time* ```py from datetime import time # time(hour = 0, minute = 0, second = 0) a = time() print("a =", a) # time(hour, minute y second) b = time(10, 30, 50) print("b =", b) # time(hour, minute y second) c = time(hour=10, minute=30, second=50) print("c =", c) # time(hour, minute, second, microsecond) d = time(10, 30, 50, 200555) print("d =", d) ``` Salida: a = 00:00:00 b = 10:30:50 c = 10:30:50 d = 10:30:50.200555 ### Calcular la diferencia entre dos puntos en el tiempo ```py today = date(year=2019, month=12, day=5) new_year = date(year=2020, month=1, day=1) time_left_for_newyear = new_year - today # Tiempo hasta año nuevo: 27 days, 0:00:00 print('Tiempo hasta año nuevo: ', time_left_for_newyear) t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0) t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) diff = t2 - t1 print('Tiempo hasta año nuevo:', diff) # Tiempo hasta año nuevo: 26 days, 23:01:00 ``` ### Calcular diferencias con *timedelta* ```py from datetime import timedelta t1 = timedelta(weeks=12, days=10, hours=4, seconds=20) t2 = timedelta(days=7, hours=5, minutes=3, seconds=30) t3 = t1 - t2 print("t3 =", t3) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 t3 = 86 days, 22:56:50 ``` 🌕 Eres increíble. Has avanzado 16 pasos hacia la excelencia. Ahora haz algunos ejercicios para entrenar tu mente y tus manos. ## 💻 Ejercicios - Día 16 1. Obtén el día, mes, año, hora, minuto y timestamp actuales desde el módulo datetime. 2. Formatea la fecha actual con el formato: "%m/%d/%Y, %H:%M:%S" 3. Hoy es 5 de diciembre de 2019. Convierte esa cadena de fecha a un objeto datetime. 4. Calcula la diferencia entre ahora y el próximo año nuevo. 5. Calcula la diferencia entre el 1 de enero de 1970 y ahora. 6. Piensa: ¿para qué puedes usar el módulo datetime? Por ejemplo: - Análisis de series temporales - Obtener timestamps para eventos en una aplicación - Añadir la fecha de publicación en un blog 🎉 ¡Felicidades! 🎉 [<< Día 15](./15_python_type_errors_sp.md) | [Día 17 >>](./17_exception_handling_sp.md) ================================================ FILE: Spanish/17_exception_handling_sp.md ================================================ # 30 Días de Python: Día 17 - Manejo de excepciones - [Día 17](#-día-17) - [Manejo de excepciones](#manejo-de-excepciones) - [Empacar y desempacar parámetros en Python](#empacar-y-desempacar-parámetros-en-python) - [Desempaquetado](#desempaquetado) - [Desempaquetar listas](#desempaquetar-listas) - [Desempaquetar diccionarios](#desempaquetar-diccionarios) - [Empaquetado](#empaquetado) - [Empaquetar listas](#empaquetar-listas) - [Empaquetar diccionarios](#empaquetar-diccionarios) - [Expandir en Python](#expandir-en-python) - [Enumerar (enumerate)](#enumerar-enumerate) - [Zip](#zip) - [Ejercicios: Día 17](#ejercicios-día-17) # 📘 Día 17 ## Manejo de excepciones Python utiliza _try_ y _except_ para manejar errores de forma elegante. Salir de forma controlada (o manejar errores con elegancia) es una buena práctica: el programa detecta una condición de error y la maneja adecuadamente, normalmente mostrando un mensaje descriptivo en la terminal o en un registro. Las excepciones suelen deberse a factores externos al programa (entrada errónea, nombre de archivo incorrecto, archivo no encontrado, fallos de I/O, etc.). El manejo adecuado de excepciones evita que las aplicaciones se bloqueen. En la sección anterior hemos cubierto los distintos tipos de errores en Python. Si usamos _try_ y _except_ correctamente, podemos impedir que esos errores hagan que el programa falle. ![Try and Except](../images/try_except.png) ```py try: # si todo va bien, se ejecuta el código en este bloque except: # si ocurre un error, se ejecuta el código en este bloque ``` **Ejemplo:** ```py try: print(10 + '5') except: print('Ocurrió un error') ``` En el ejemplo anterior, el segundo operando es una cadena. Podemos convertirlo a int o float para sumarlo a un número; si no lo hacemos, se ejecutará el bloque _except_. **Ejemplo:** ```py try: name = input('Introduce tu nombre:') year_born = input('¿En qué año naciste?:') age = 2019 - year_born print(f'Eres {name}. Tu edad es {age}.') except: print('Ocurrió un error') ``` ```sh Ocurrió un error ``` En el ejemplo anterior, se ejecuta el bloque de excepción, pero no sabemos exactamente qué pasó. Para identificar el problema podemos capturar tipos de excepción concretos. En el siguiente ejemplo capturamos y mostramos el tipo de error: ```py try: name = input('Introduce tu nombre:') year_born = input('¿En qué año naciste?:') age = 2019 - year_born print(f'Eres {name}. Tu edad es {age}.') except TypeError: print('Se produjo un error de tipo (TypeError)') except ValueError: print('Se produjo un ValueError') except ZeroDivisionError: print('Se produjo una división por cero (ZeroDivisionError)') ``` ```sh Introduce tu nombre:Asabeneh ¿En qué año naciste?:1920 Se produjo un error de tipo (TypeError) ``` En el ejemplo anterior la salida será _TypeError_. Ahora añadamos bloques adicionales: ```py try: name = input('Introduce tu nombre:') year_born = input('¿En qué año naciste?:') age = 2019 - int(year_born) print(f'Eres {name}. Tu edad es {age}.') except TypeError: print('Se produjo un error de tipo (TypeError)') except ValueError: print('Se produjo un ValueError') except ZeroDivisionError: print('Se produjo una división por cero (ZeroDivisionError)') else: print('Este bloque se ejecuta normalmente después de try') finally: print('Este bloque siempre se ejecuta.') ``` ```sh Introduce tu nombre:Asabeneh ¿En qué año naciste?:1920 Eres Asabeneh. Tu edad es 99. Este bloque se ejecuta normalmente después de try Este bloque siempre se ejecuta. ``` También podemos simplificar el manejo de excepción así: ```py try: name = input('Introduce tu nombre:') year_born = input('¿En qué año naciste?:') age = 2019 - int(year_born) print(f'Eres {name}. Tu edad es {age}.') except Exception as e: print(e) ``` ## Empacar y desempacar parámetros en Python Usamos dos operadores: - * para tuplas/listas - ** para diccionarios Veamos un ejemplo. Supongamos que una función acepta parámetros separados, pero nosotros tenemos una lista. Podemos desempaquetarla y convertirla en argumentos. ### Desempaquetado #### Desempaquetar listas ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(lst)) # TypeError: sum_of_five_nums() missing 4 required positional arguments: 'b', 'c', 'd', and 'e' ``` Al ejecutar lo anterior ocurre un error porque la función espera números separados, no una lista. Desempaquetemos la lista: ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1, 2, 3, 4, 5] print(sum_of_five_nums(*lst)) # 15 ``` También podemos usar desempaquetado con range(), que acepta inicio y fin: ```py numbers = range(2, 7) # llamada normal con parámetros separados print(list(numbers)) # [2, 3, 4, 5, 6] args = [2, 7] numbers = range(*args) # llamada usando los parámetros desempaquetados desde la lista print(list(numbers)) # [2, 3, 4, 5, 6] ``` También podemos usar desempaquetado en asignaciones: ```py countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] fin, sw, nor, *rest = countries print(fin, sw, nor, rest) # Finland Sweden Norway ['Denmark', 'Iceland'] numbers = [1, 2, 3, 4, 5, 6, 7] one, *middle, last = numbers print(one, middle, last) # 1 [2, 3, 4, 5, 6] 7 ``` #### Desempaquetar diccionarios ```py def unpacking_person_info(name, country, city, age): return f'{name} vive en {city}, {country}. Tiene {age} años.' dct = {'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'age':250} print(unpacking_person_info(**dct)) # Asabeneh vive en Helsinki, Finland. Tiene 250 años. ``` ### Empaquetado A veces no sabemos cuántos argumentos nos pasarán a una función. Podemos usar empaquetado para aceptar un número variable de argumentos. ### Empaquetar listas ```py def sum_all(*args): s = 0 for i in args: s += i return s print(sum_all(1, 2, 3)) # 6 print(sum_all(1, 2, 3, 4, 5, 6, 7)) # 28 ``` #### Empaquetar diccionarios ```py def packing_person_info(**kwargs): # comprobar el tipo de kwargs: es un dict # print(type(kwargs)) # imprimir los pares clave-valor for key in kwargs: print(f"{key} = {kwargs[key]}") return kwargs print(packing_person_info(name="Asabeneh", country="Finland", city="Helsinki", age=250)) ``` ```sh name = Asabeneh country = Finland city = Helsinki age = 250 {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ## Expandir en Python Al igual que en JavaScript, Python permite expandir listas usando el operador *. Veámoslo: ```py lst_one = [1, 2, 3] lst_two = [4, 5, 6, 7] lst = [0, *lst_one, *lst_two] print(lst) # [0, 1, 2, 3, 4, 5, 6, 7] ``` ## Enumerar (enumerate) Si necesitamos los índices de una lista, usamos la función integrada enumerate. ```py for index, item in enumerate([20, 30, 40]): print(index, item) ``` ```py for index, i in enumerate(countries): print('hola') if i == 'Finland': print(f'El país {i} está en el índice {index}') ``` ```sh 0 20 1 30 2 40 ``` ## Zip A veces necesitamos combinar listas. Observa el ejemplo: ```py fruits = ['banana', 'orange', 'mango', 'lemon', 'lime'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits_and_veges = [] for f, v in zip(fruits, vegetables): fruits_and_veges.append({'fruit':f, 'veg':v}) print(fruits_and_veges) ``` ```sh [{'fruit': 'banana', 'veg': 'Tomato'}, {'fruit': 'orange', 'veg': 'Potato'}, {'fruit': 'mango', 'veg': 'Cabbage'}, {'fruit': 'lemon', 'veg': 'Onion'}, {'fruit': 'lime', 'veg': 'Carrot'}] ``` ## Ejercicios: Día 17 1. Crea en _countries.py_ funciones que usen los datos de _countries_data.py_: - una función para encontrar los 10 idiomas más usados - una función para encontrar los 10 países más poblados 🎉 ¡Felicidades! 🎉 [<< Día 16](./16_python_datetime_sp.md) | [Día 18 >>](./18_regular_expressions_sp.md) ================================================ FILE: Spanish/18_regular_expressions_sp.md ================================================ # 30 Días de Python: Día 18 - Expresiones regulares - [Día 18](#-día-18) - [Expresiones regulares](#expresiones-regulares) - [Módulo *re*](#módulo-re) - [Métodos en el módulo *re*](#métodos-en-el-módulo-re) - [Match (coincidencia al inicio)](#match-coincidencia-al-inicio) - [Search (búsqueda)](#search-búsqueda) - [Buscar todas las coincidencias con *findall*](#buscar-todas-las-coincidencias-con-findall) - [Reemplazar subcadenas](#reemplazar-subcadenas) - [Usar RegEx para dividir el texto](#usar-regex-para-dividir-texto) - [Construir patrones RegEx](#construir-patrones-regex) - [Corchetes](#corchetes) - [Caracteres de escape en RegEx (\\)](#caracteres-de-escape-en-regex) - [Una o más veces (+)](#una-o-más-veces-+) - [Punto (.)](#punto-) - [Cero o más veces (*)](#cero-o-más-veces-) - [Cero o una vez (?)](#cero-o-una-vez-?) - [Cuantificadores en RegEx](#cuantificadores-en-regex) - [Circunflejo (^) en RegEx](#circunflejo-^) - [💻 Ejercicios: Día 18](#-ejercicios-día-18) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 18 ## Expresiones regulares Las expresiones regulares (RegEx) son cadenas de texto especiales que ayudan a encontrar patrones en los datos. RegEx se puede usar para comprobar la existencia de ciertos patrones en diferentes tipos de datos. Para usar RegEx en Python debemos importar el módulo llamado *re*. ### Módulo *re* Una vez importado el módulo, podemos usarlo para detectar o buscar patrones. ```py import re ``` ### Métodos en el módulo *re* Para buscar patrones usamos diferentes conjuntos de caracteres y funciones de *re*, que permiten buscar coincidencias dentro de una cadena. - *re.match()*: busca solo al inicio de la cadena; devuelve un objeto Match si hay coincidencia, sino None. - *re.search*: busca en cualquier parte de la cadena (incluyendo textos multilínea); devuelve el primer objeto Match encontrado o None. - *re.findall*: devuelve una lista con todas las coincidencias. - *re.split*: acepta una cadena y la divide en los puntos donde hay coincidencia, devolviendo una lista. - *re.sub*: reemplaza una o más coincidencias en una cadena. #### Match (coincidencia al inicio) ```py # sintaxis re.match(substring, string, re.I) # substring es una cadena o patrón, string es el texto donde buscamos, re.I indica ignorar mayúsculas/minúsculas ``` ```py import re txt = 'I love to teach python and javaScript' # Devuelve un objeto Match con span y match match = re.match('I love to teach', txt, re.I) print(match) # # Podemos usar span para obtener la posición inicial y final como tupla span = match.span() print(span) # (0, 15) # Tomamos inicio y fin desde span start, end = span print(start, end) # 0, 15 substring = txt[start:end] print(substring) # I love to teach ``` Del ejemplo anterior se ve que el patrón buscado es *I love to teach*. La función match **solo** devuelve un objeto si el texto comienza con ese patrón. ```py import re txt = 'I love to teach python and javaScript' match = re.match('I like to teach', txt, re.I) print(match) # None ``` Esa cadena no comienza con *I like to teach*, por eso match devuelve None. #### Search (búsqueda) ```py # sintaxis re.search(substring, string, re.I) # substring es un patrón, string es el texto donde buscamos, re.I es la bandera para ignorar mayúsculas/minúsculas ``` ```py import re txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # Devuelve un objeto Match con span y match match = re.search('first', txt, re.I) print(match) # # Podemos usar span para obtener inicio y fin como tupla span = match.span() print(span) # (100, 105) # Tomamos inicio y fin start, end = span print(start, end) # 100 105 substring = txt[start:end] print(substring) # first ``` Como puedes ver, search es más potente que match porque busca en todo el texto. search devuelve la primera coincidencia; para obtener todas las coincidencias usamos findall. #### Buscar todas las coincidencias con *findall* *findall()* devuelve todas las coincidencias como una lista. ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # Devuelve una lista matches = re.findall('language', txt, re.I) print(matches) # ['language', 'language'] ``` La palabra *language* aparece dos veces en el texto. Practiquemos más: vamos a buscar 'Python' y 'python' en el texto: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' # Devuelve una lista matches = re.findall('python', txt, re.I) print(matches) # ['Python', 'python'] ``` Usando re.I se ignora mayúsculas/minúsculas. Si no usamos la bandera, podemos escribir el patrón de otras formas: ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' matches = re.findall('Python|python', txt) print(matches) # ['Python', 'python'] # matches = re.findall('[Pp]ython', txt) print(matches) # ['Python', 'python'] ``` #### Reemplazar subcadenas ```py txt = '''Python is the most beautiful language that a human being has ever created. I recommend python for a first programming language''' match_replaced = re.sub('Python|python', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created. # o bien match_replaced = re.sub('[Pp]ython', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human being has ever created. ``` Otro ejemplo: el siguiente texto es difícil de leer por los símbolos '%'. Reemplazarlos por cadena vacía limpia el texto. ```py txt = '''%I a%m te%%a%%che%r% a%n%d %% I l%o%ve te%ach%ing. T%he%re i%s n%o%th%ing as r%ewarding a%s e%duc%at%i%ng a%n%d e%m%p%ow%er%ing p%e%o%ple. I fo%und te%a%ching m%ore i%n%t%er%%es%ting t%h%an any other %jobs. D%o%es thi%s m%ot%iv%a%te %y%o%u to b%e a t%e%a%cher?''' matches = re.sub('%', '', txt) print(matches) ``` ```sh I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher? ``` ## Usar RegEx para dividir el texto ```py txt = '''I am teacher and I love teaching. There is nothing as rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher?''' print(re.split('\n', txt)) # dividir usando \n - salto de línea ``` ```sh ['I am teacher and I love teaching.', 'There is nothing as rewarding as educating and empowering people.', 'I found teaching more interesting than any other jobs.', 'Does this motivate you to be a teacher?'] ``` ## Construir patrones RegEx Para declarar una cadena usamos comillas simples o dobles. Para declarar un patrón RegEx usamos una cadena raw, escrita como r''. El siguiente patrón reconoce solo 'apple' en minúsculas; para ignorar mayúsculas/minúsculas reescribimos el patrón o añadimos la bandera re.I. ```py import re regex_pattern = r'apple' txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['apple'] # Para ignorar mayúsculas/minúsculas, añadimos la bandera matches = re.findall(regex_pattern, txt, re.I) print(matches) # ['Apple', 'apple'] # o podemos usar un conjunto de caracteres regex_pattern = r'[Aa]pple' # esto permite Apple o apple matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` * []: un conjunto de caracteres - [a-c] significa a o b o c - [a-z] cualquier letra de a a z - [A-Z] cualquier letra de A a Z - [0-3] 0 o 1 o 2 o 3 - [0-9] cualquier dígito del 0 al 9 - [A-Za-z0-9] cualquier carácter alfanumérico: a-z, A-Z o 0-9 ### Corchetes Practiquemos más con corchetes. Recuerda usar re.I para búsquedas sin distinción entre mayúsculas y minúsculas. ```py regex_pattern = r'[Aa]pple|[Bb]anana' # Apple o apple o Banana o banana txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'banana', 'apple', 'banana'] ``` Usando corchetes y alternación: ```py regex_pattern = r'[a-zA-Z0-9]' # caracteres a-z, A-Z, 0-9 txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away.' matches = re.findall(regex_pattern, txt) print(matches) # ['A', 'p', 'p', 'l', 'e', 'a', 'n', 'd', 'b', 'a', 'n', 'a', 'n', 'a', 'a', 'r', 'e',...] regex_pattern = r'\d' # \d es un metacarácter que representa dígitos txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2', '0', '1', '9', '8', '2', '0', '2', '1'] regex_pattern = r'\d+' # \d+ dígitos uno o más txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### Caracteres de escape en RegEx (\\) ```py regex_pattern = r'\d+' # \d dígito, + uno o más txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` Para buscar la barra invertida '\' en sí usamos doble backslash: ```py regex_pattern = r'\\d' # busca literal '\d' txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # [] ``` Si no hay '\d' literal en el texto, no se encuentran coincidencias. ### Una o más veces (+) ```py regex_pattern = r'\d+' # \d dígito, + uno o más txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### Punto (.) ```py regex_pattern = r'[a].' # a seguido de cualquier carácter (excepto nueva línea) txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['an', 'an', 'an', 'a ', 'ar'] regex_pattern = r'[a].+' # a seguido de cualquier carácter una o más veces matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Cero o más veces (*) Cero o más. Observa con atención el ejemplo. ```py regex_pattern = r'[a].*' # a seguido de cualquier carácter cero o más veces txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Cero o una vez (?) Cero o una vez: puede existir o no. ```py txt = '''I am not sure if there is a convention how to write the word e-mail. Some people write it as email others may write it as Email or E-mail.''' regex_pattern = r'[Ee]-?mail' # ? indica cero o una vez matches = re.findall(regex_pattern, txt) print(matches) # ['e-mail', 'email', 'Email', 'E-mail'] ``` ### Cuantificadores en RegEx Con llaves podemos especificar la longitud del patrón: ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{4}' # exactamente 4 dígitos matches = re.findall(regex_pattern, txt) print(matches) # ['2019', '2021'] txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'\d{1,4}' # entre 1 y 4 dígitos matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019', '8', '2021'] ``` ### Circunflejo (^) en RegEx - Indicar inicio ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'^This' # ^ indica que empieza con 'This' matches = re.findall(regex_pattern, txt) print(matches) # ['This'] ``` - Negación dentro de corchetes ```py txt = 'This regular expression example was made on December 6, 2019 and revised on July 8, 2021' regex_pattern = r'[^A-Za-z ]+' # ^ dentro de [] significa negación: no A-Z, no a-z, no espacio matches = re.findall(regex_pattern, txt) print(matches) # ['6,', '2019', '8,', '2021'] ``` ## 💻 Ejercicios: Día 18 ### Ejercicios: Nivel 1 1. ¿Qué es una expresión regular? 2. ¿Qué es una variable de expresión regular (regex variable)? 3. Recrea patrones que: a) Encuentren citas que contengan la palabra *talent* en un libro, b) Encuentren fechas en formato _DD-MM-YYYY_, por ejemplo 12-01-2021, c) Encuentren verbos en tiempo -ing en un texto. ### Ejercicios: Nivel 2 1. Escribe un patrón que valide un nombre de variable válido en Python. 2. Limpia el siguiente texto eliminando etiquetas HTML. ```python text = ''' HTML Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets. Tags such as and directly introduce content into the page. Other tags such as

surround and provide information about document text and may include other tags as sub-elements. Browsers do not display the HTML tags, but use them to interpret the content of the page. HTML can embed programs written in a scripting language such as JavaScript, which affects the behavior and content of web pages. Inclusion of CSS defines the look and layout of content. The World Wide Web Consortium (W3C), former maintainer of the HTML and current maintainer of the CSS standards, has encouraged the use of CSS over explicit presentational HTML since 1997. ''' ``` ### Ejercicios: Nivel 3 1. Limpia el siguiente texto y, tras limpiarlo, calcula las tres palabras más frecuentes: ```python paragraph = '''I love teaching. If you do not love teaching what else can you love. I love Python if you do not love something which can give you all the capabilities to develop an application what else can you love.''' ``` 2. El siguiente texto contiene varias direcciones de correo electrónico. Escribe un patrón que encuentre o extraiga las direcciones de email válidas: ```py email_address = ''' asabeneh@gmail.com alex@yahoo.com kofi@yahoo.com doe@arc.gov asabeneh.com asabeneh@gmail alex@yahoo ''' ``` 🎉 ¡Felicidades! 🎉 [<< Día 17](./17_exception_handling_sp.md) | [Día 19 >>](./19_file_handling_sp.md) ================================================ FILE: Spanish/19_file_handling_sp.md ================================================ # 30 Días de Python: Día 19 - Manejo de archivos - [Día 19](#-día-19) - [Manejo de archivos](#manejo-de-archivos) - [Abrir un archivo para lectura](#abrir-un-archivo-para-lectura) - [Abrir un archivo para escritura y actualización](#abrir-un-archivo-para-escritura-y-actualización) - [Eliminar archivos](#eliminar-archivos) - [Tipos de archivos](#tipos-de-archivos) - [Archivos con extensión txt](#archivos-con-extensión-txt) - [Archivos con extensión json](#archivos-con-extensión-json) - [Convertir JSON a diccionario](#convertir-json-a-diccionario) - [Convertir diccionario a JSON](#convertir-diccionario-a-json) - [Guardar como archivo JSON](#guardar-como-archivo-json) - [Archivos con extensión csv](#archivos-con-extensión-csv) - [Archivos con extensión xlsx](#archivos-con-extensión-xlsx) - [Archivos con extensión xml](#archivos-con-extensión-xml) - [💻 Ejercicios: Día 19](#-ejercicios-día-19) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 19 ## Manejo de archivos Hasta ahora hemos visto distintos tipos de datos en Python. Normalmente almacenamos datos en distintos formatos de archivo. Además de manejar archivos, en esta sección veremos diferentes formatos (.txt, .json, .xml, .csv, .tsv, .excel). Primero, familiaricémonos con el manejo de archivos usando un formato común (.txt). El manejo de archivos es una parte importante de la programación; nos permite crear, leer, actualizar y eliminar archivos. En Python usamos la función incorporada _open()_ para manipular archivos. ```py # sintaxis open('filename', mode) # mode(r, a, w, x, t, b) puede ser lectura, escritura o actualización ``` - "r" - lectura - valor por defecto. Abre el archivo solo para lectura; si no existe genera un error. - "a" - append (añadir) - abre el archivo para agregar contenido al final; crea el archivo si no existe. - "w" - escritura - abre el archivo para escribir, sobrescribe si existe; crea el archivo si no existe. - "x" - crear - crea el archivo; si existe genera un error. - "t" - texto - valor por defecto. Modo texto. - "b" - binario - modo binario (por ejemplo para imágenes). ### Abrir un archivo para lectura El modo por defecto de _open_ es lectura, así que no es necesario especificar 'r' o 'rt'. He creado un archivo llamado reading_file_example.txt en el directorio files. Veamos: ```py f = open('./files/reading_file_example.txt') print(f) # <_io.TextIOWrapper name='./files/reading_file_example.txt' mode='r' encoding='UTF-8'> ``` Como en el ejemplo, al imprimir el objeto archivo obtenemos información sobre él. Un archivo abierto permite distintos métodos de lectura: _read()_, _readline_, _readlines_. Debemos cerrar el archivo con _close()_ cuando terminemos. - _read()_: lee todo el texto como una cadena. Podemos limitar el número de caracteres pasando un entero a *read(number)*. ```py f = open('./files/reading_file_example.txt') txt = f.read() print(type(txt)) print(txt) f.close() ``` ```sh # salida This is an example to show how to open a file and read. This is the second line of the text. ``` En lugar de imprimir todo el texto, podemos leer solamente los primeros 10 caracteres: ```py f = open('./files/reading_file_example.txt') txt = f.read(10) print(type(txt)) print(txt) f.close() ``` ```sh # salida This is an ``` - _readline()_: lee solo la primera línea ```py f = open('./files/reading_file_example.txt') line = f.readline() print(type(line)) print(line) f.close() ``` ```sh # salida This is an example to show how to open a file and read. ``` - _readlines()_: lee todo el texto línea por línea y devuelve una lista de líneas ```py f = open('./files/reading_file_example.txt') lines = f.readlines() print(type(lines)) print(lines) f.close() ``` ```sh # salida ['This is an example to show how to open a file and read.\n', 'This is the second line of the text.'] ``` Otra forma de obtener todas las líneas como lista es usar _splitlines()_: ```py f = open('./files/reading_file_example.txt') lines = f.read().splitlines() print(type(lines)) print(lines) f.close() ``` ```sh # salida ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` Debemos cerrar los archivos después de abrirlos. Es fácil olvidarse; por eso existe la construcción _with_ que cierra automáticamente: ```py with open('./files/reading_file_example.txt') as f: lines = f.read().splitlines() print(type(lines)) print(lines) ``` ```sh # salida ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` ### Abrir un archivo para escritura y actualización Para escribir en un archivo hay que pasar el modo a _open()_: - "a" - append - añade al final; crea el archivo si no existe. - "w" - write - sobrescribe el contenido; crea el archivo si no existe. Añadamos texto al archivo que hemos estado leyendo: ```py with open('./files/reading_file_example.txt','a') as f: f.write('Este texto debe añadirse al final') ``` Si el archivo no existe, el siguiente ejemplo creará uno nuevo: ```py with open('./files/writing_file_example.txt','w') as f: f.write('Este texto será escrito en el nuevo archivo creado') ``` ### Eliminar archivos Como vimos anteriormente, podemos crear y eliminar directorios con el módulo _os_. Para eliminar archivos también usamos _os_. ```py import os os.remove('./files/example.txt') ``` Si el archivo no existe, remove lanzará un error, por lo que es mejor comprobar: ```py import os if os.path.exists('./files/example.txt'): os.remove('./files/example.txt') else: print('El archivo no existe') ``` ## Tipos de archivos ### Archivos con extensión txt Los archivos _txt_ son un formato muy común; ya vimos su uso más arriba. Ahora pasemos a JSON. ### Archivos con extensión json JSON significa JavaScript Object Notation. Es básicamente una representación en cadena de un objeto JavaScript o de un diccionario Python. _Ejemplo:_ ```py # diccionario person_dct= { "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScript", "React","Python"] } # JSON: la forma en cadena del diccionario person_json = "{'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']}" # Usamos triple comillas para que sea multilínea y más legible person_json = '''{ "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScript", "React","Python"] }''' ``` ### Convertir JSON a diccionario Para convertir JSON a diccionario importamos el módulo json y usamos _loads_. ```py import json # JSON person_json = '''{ "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] }''' # Convertir la cadena JSON a diccionario person_dct = json.loads(person_json) print(type(person_dct)) print(person_dct) print(person_dct['name']) ``` ```sh # salida {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']} Asabeneh ``` ### Convertir diccionario a JSON Para convertir un diccionario a JSON usamos _dumps_. ```py import json # diccionario en Python person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] } # convertir diccionario a cadena JSON person_json = json.dumps(person, indent=4) # indent puede ser 2, 4, 8; formatea la salida print(type(person_json)) print(person_json) ``` ```sh # salida { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": [ "JavaScript", "React", "Python" ] } ``` ### Guardar como archivo JSON También podemos guardar los datos en un archivo JSON: ```py import json # diccionario en Python person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScript", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` En el ejemplo usamos encoding y ensure_ascii para manejar caracteres no ASCII. Ejemplo con caracteres no ASCII: ```py import json person = { "name": "Mark Firenze", "country": "Spain", "city": "Madrid", "skills": ["JavaScript", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` Leamos el archivo JSON que acabamos de crear: ```py import json with open('./files/json_example.json', 'r', encoding='utf-8') as f: person = json.load(f) print(person) ``` ```sh # salida {'name': 'Mark Firenze', 'country': 'Spain', 'city': 'Madrid', 'skills': ['JavaScript', 'React', 'Python']} ``` ### Archivos con extensión csv CSV significa Comma Separated Values (valores separados por comas). Es un formato sencillo para datos tabulares (como hojas de cálculo o bases de datos) muy común en ciencia de datos. _Ejemplo CSV:_ ```csv "name","country","city","skills" "Asabeneh","Finland","Helsinki","JavaScript" ``` Ejemplo de lectura: ```py import csv with open('./files/csv_example.csv') as f: csv_reader = csv.reader(f, delimiter=',') # w+ crea el archivo si no existe line_count = 0 for row in csv_reader: if line_count == 0: print(f'Encabezados: {", ".join(row)}') line_count += 1 else: print(f'{row[0]} viene de {row[1]}, {row[2]}. Conoce {row[3]}') line_count += 1 print(f'Procesadas {line_count} líneas.') ``` ```sh # salida: Encabezados: name, country, city, skills Asabeneh viene de Finland, Helsinki. Conoce JavaScript Procesadas 2 líneas. ``` También podemos escribir CSV: ```py import csv with open('./files/csv_example.csv', 'w', encoding='UTF8', newline='') as f: writer = csv.writer(f) # escribir encabezados writer.writerow(['name', 'country', 'city', 'skills']) # escribir datos writer.writerow(['Asabeneh', 'Finland', 'Helsinki', 'JavaScript']) ``` ### Archivos con extensión xlsx Para leer archivos Excel necesitamos instalar la librería xlrd (u otras alternativas). Ejemplo: ```py import xlrd excel_book = xlrd.open_workbook('sample.xls') print(excel_book.nsheets) print(excel_book.sheet_names) ``` ### Archivos con extensión xml XML es un lenguaje de marcado similar a HTML. Permite etiquetas personalizadas y se usa para datos estructurados. En Python hay varias librerías; aquí usamos xml.etree.ElementTree. _Ejemplo XML:_ ```xml Asabeneh Finland Helsinki JavaScript React Python ``` Usamos xml.etree.ElementTree para parsear: ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Etiqueta raíz:', root.tag) print('Atributos:', root.attrib) for child in root: print('Campo: ', child.tag) ``` ```sh # salida Etiqueta raíz: person Atributos: {'gender': 'female'} Campo: name Campo: country Campo: city Campo: skills ``` Obtener más detalles: ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Etiqueta raíz:', root.tag) print('Atributos:', root.attrib) for child in root: print('Campo: ', child.tag) if child.tag != 'skills': print(child.text) else: for skill in child: print(skill.text) ``` ```sh # salida Etiqueta raíz: person Atributos: {'gender': 'female'} field: name Asabeneh field: country Finland field: city Helsinki field: skills JavaScript React Python ``` ## 💻 Ejercicios: Día 19 ### Ejercicios: Nivel 1 1. Escribe una función que reciba un parámetro (nombre de archivo) y cuente el número de palabras del archivo. 2. Lee el archivo obama_speech.txt y cuenta las palabras. 3. Lee michelle_obama_speech.txt y cuenta las palabras. 4. Lee donald_speech.txt y cuenta las palabras. 5. Lee melina_trump_speech.txt y cuenta las palabras. ### Ejercicios: Nivel 2 1. Extrae todos los archivos Python del directorio del curso: a) Recorre la carpeta 30DaysOfPython, extrae todos los archivos .py y guarda sus nombres en files_list.txt b) Crea un script llamado find_python.py que pueda ejecutarse desde la línea de comandos c) Añade una opción --version para manejar argumentos de línea de comandos ### Ejercicios: Nivel 3 1. Crea un archivo JSON a partir del siguiente dataset: ```py python_libraries = [ { "nombre_librería": "Django", "creador": "Adrian Holovaty", "primer_año_lanzamiento": 2005, "versión": "4.0.2", "uso": "Desarrollo web", "descripción": "Django permite construir aplicaciones web mejores y más rápido." }, { "nombre_librería": "Flask", "creador": "Armin Ronacher", "primer_año_lanzamiento": 2010, "versión": "2.0.2", "uso": "Desarrollo web", "descripción": "Flask es un micro framework WSGI para aplicaciones web." }, { "nombre_librería": "NumPy", "creador": "Travis Oliphant", "primer_año_lanzamiento": 2005, "versión": "1.22.0", "uso": "Cómputo científico", "descripción": "NumPy es la biblioteca fundamental para el cómputo científico en Python." }, { "nombre_librería": "Pandas", "creador": "Wes McKinney", "primer_año_lanzamiento": 2008, "versión": "1.4.0", "uso": "Análisis de datos", "descripción": "pandas es una librería open source para análisis y manipulación de datos." }, { "nombre_librería": "Matplotlib", "creador": "John D. Hunter", "primer_año_lanzamiento": 2003, "versión": "3.5.1", "uso": "Visualización de datos", "descripción": "Matplotlib es una librería para crear visualizaciones estáticas, animadas e interactivas en Python." } ] ``` 🎉 ¡Felicidades! 🎉 [<< Día 18](./18_regular_expressions_sp.md) | [Día 20 >>](./20_python_package_manager_sp.md) ================================================ FILE: Spanish/20_python_package_manager_sp.md ================================================ # 30 Días de Python: Día 20 - PIP - [Día 20](#-día-20) - [Python PIP - Gestor de paquetes de Python](#python-pip---gestor-de-paquetes-de-python) - [¿Qué es PIP?](#¿qué-es-pip) - [Instalar PIP](#instalar-pip) - [Instalar paquetes con pip](#instalar-paquetes-con-pip) - [Desinstalar paquetes](#desinstalar-paquetes) - [Lista de paquetes](#lista-de-paquetes) - [Mostrar información del paquete](#mostrar-información-del-paquete) - [PIP Freeze](#pip-freeze) - [Leer datos desde una URL](#leer-datos-desde-una-url) - [Crear paquetes](#crear-paquetes) - [Más información sobre paquetes](#más-información-sobre-paquetes) - [Ejercicios: Día 20](#ejercicios-día-20) # 📘 Día 20 ## Python PIP - Gestor de paquetes de Python ### ¿Qué es PIP? PIP significa Preferred Installer Program, que en español puede traducirse como «programa de instalación preferido». Usamos _pip_ para instalar paquetes de Python. Un paquete es una colección de módulos (o subpaquetes) que podemos instalar y luego importar en nuestras aplicaciones. En la práctica, en lugar de reescribir utilidades comunes, instalamos paquetes útiles y los importamos. ### Instalar PIP Si aún no tienes pip instalado, instálalo ahora. En la terminal o símbolo del sistema ejecuta: ```sh pip install pip ``` Comprueba si pip está instalado con: ```sh pip --version ``` ```py pip --version # ejemplo de salida: # pip 21.1.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.9.6) ``` Si ves un número diferente, significa que pip está instalado en tu sistema. ### Instalar paquetes con pip Probemos a instalar _numpy_, una librería numérica de Python muy usada en ciencia de datos y aprendizaje automático. - NumPy ofrece: - Potentes arrays N-dimensionales - Operaciones vectorizadas (broadcasting) - Herramientas para integrar con C/C++ y Fortran - Funciones de álgebra lineal, transformadas de Fourier y generadores aleatorios ```sh pip install numpy ``` Ejemplo de uso en el intérprete de Python: ```py >>> import numpy >>> numpy.version.version '1.20.1' >>> lst = [1, 2, 3, 4, 5] >>> np_arr = numpy.array(lst) >>> np_arr array([1, 2, 3, 4, 5]) >>> len(np_arr) 5 >>> np_arr * 2 array([ 2, 4, 6, 8, 10]) >>> np_arr + 2 array([3, 4, 5, 6, 7]) ``` Pandas es otra librería muy usada para estructuras de datos y análisis. Instalémosla: ```sh pip install pandas ``` ```py >>> import pandas ``` Esta sección no pretende profundizar en NumPy o Pandas, sino solo mostrar cómo instalar e importar paquetes. Hay módulos de la librería estándar, por ejemplo _webbrowser_, que permiten abrir sitios web. No necesitan instalación. ```py import webbrowser # módulo para abrir sitios web # lista de URLs de ejemplo url_lists = [ 'http://www.python.org', 'https://www.linkedin.com/in/asabeneh/', 'https://github.com/Asabeneh', 'https://twitter.com/Asabeneh', ] # abrir cada URL en una nueva pestaña for url in url_lists: webbrowser.open_new_tab(url) ``` ### Desinstalar paquetes Para eliminar un paquete instalado: ```sh pip uninstall packagename ``` ### Lista de paquetes Para listar los paquetes instalados en tu entorno: ```sh pip list ``` ### Mostrar información del paquete Para ver información de un paquete: ```sh pip show packagename ``` Ejemplo: ```sh pip show pandas ``` Salida de ejemplo: ```txt Name: pandas Version: 1.2.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: python-dateutil, pytz, numpy Required-by: ``` Si quieres más detalles puedes añadir --verbose. ### PIP Freeze Genera una lista de paquetes instalados y sus versiones (útil para requirements.txt): ```sh pip freeze ``` Salida de ejemplo: ```txt docutils==0.11 Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 ``` ### Leer datos desde una URL A veces queremos leer datos desde una URL (por ejemplo APIs que devuelven JSON). Para eso usamos el paquete _requests_. Instálalo con: ```sh pip install requests ``` En requests veremos métodos y atributos como _get()_, _status_code_, _headers_, _text_, _json()_: - _get()_: solicita una URL y devuelve un objeto Response - _status_code_: código HTTP de la respuesta - _headers_: cabeceras de la respuesta - _text_: contenido en texto - _json()_: parsea JSON y devuelve estructuras de Python Ejemplo leyendo un archivo de texto desde la web: ```py import requests # importar requests url = 'https://www.w3.org/TR/PNG/iso_8859-1.txt' # URL con texto response = requests.get(url) # solicitar URL print(response) print(response.status_code) # código de estado, 200 indica éxito print(response.headers) # cabeceras de la respuesta print(response.text) # contenido en texto ``` Ejemplo leyendo una API que devuelve JSON (API de países): ```py import requests url = 'https://restcountries.eu/rest/v2/all' # API con información de países response = requests.get(url) print(response) # objeto Response print(response.status_code) # 200 indica éxito countries = response.json() print(countries[:1]) # imprimimos el primer país por brevedad ``` Veamos otro ejemplo con la API del Banco Mundial (datos de Etiopía): ```py import requests from pprint import pp # pretty print para mostrar resultados legibles url = 'http://api.worldbank.org/countries/et?format=json' # API del Banco Mundial para Etiopía response = requests.get(url) print(response) # objeto Response print(response.status_code) # 200 indica éxito ethiopia_data = response.json() pp(ethiopia_data) # mostrar datos de forma legible ``` ### Crear paquetes También podemos crear nuestros propios paquetes y subirlos a PyPI. Ejemplo simple: crea un directorio llamado mypackage con un __init__.py (puede estar vacío) y los siguientes módulos. ```py # mypackage/arithmetics.py def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ``` ```py # mypackage/greet.py def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ``` __init__.py no es estrictamente necesario en Python ≥3.3, pero se recomienda para compatibilidad. Usando el paquete: ```py from mypackage import arithmetics print(arithmetics.add_numbers(1, 2, 3, 5)) print(arithmetics.subtract(5, 3)) print(arithmetics.multiple(5, 3)) print(arithmetics.division(5, 3)) print(arithmetics.remainder(5, 3)) print(arithmetics.power(5, 3)) from mypackage import greet print(greet.greet_person('Juan', 'Pérez')) ``` ### Más información sobre paquetes - Python tiene paquetes y módulos incorporados; otros deben instalarse. - pip es la herramienta recomendada para instalar y gestionar paquetes desde PyPI. - Para capturar las dependencias de un proyecto usa pip freeze > requirements.txt. - Para desinstalar: pip uninstall packagename o pip uninstall -r requirements.txt. - Virtualenv (y venv) permiten crear entornos aislados: - Instalar virtualenv: pip install virtualenv - Crear entornos aislados evita conflictos entre proyectos. ## Ejercicios: Día 20 1. Lee sobre entornos virtuales, crea uno e instala al menos un paquete dentro del entorno. 2. Usa una API de países para obtener todos los datos y encuentra los 10 países más poblados. 3. Encuentra todos los países cuyo idioma oficial sea inglés (código 'eng') a partir de los datos de la API. 4. A partir de los datos de la API, encuentra los 10 países con mayor superficie. 5. Encuentra todos los países recién listados (o filtrados según la API) y ordénalos por capital. 🎉 ¡Felicidades! 🎉 [<< Día 19](./19_file_handling_sp.md) | [Día 21 >>](./21_classes_and_objects_sp.md) ================================================ FILE: Spanish/21_classes_and_objects_sp.md ================================================ # 30 Días de Python: Día 21 - Clases y Objetos - [Día 21](#-día-21) - [Clases y objetos](#clases-y-objetos) - [Crear una clase](#crear-una-clase) - [Crear un objeto](#crear-un-objeto) - [Constructor de clase](#constructor-de-clase) - [Métodos de instancia](#métodos-de-instancia) - [Valores por defecto de los objetos](#valores-por-defecto-de-los-objetos) - [Modificar valores por defecto de la clase](#modificar-valores-por-defecto-de-la-clase) - [Herencia](#herencia) - [Sobrescribir métodos de la clase padre](#sobrescribir-métodos-de-la-clase-padre) - [💻 Ejercicios: Día 21](#-ejercicios-día-21) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 21 ## Clases y objetos Python es un lenguaje orientado a objetos. En Python todo es un objeto con atributos y métodos. Los números, cadenas, listas, diccionarios, tuplas, conjuntos, etc. que usamos en programas son instancias de las clases incorporadas correspondientes. Creamos clases para definir objetos. Una clase es como un constructor de objetos o un "molde" para crear objetos. Instanciamos una clase para crear un objeto. La clase define las propiedades y el comportamiento, mientras que el objeto representa la instancia. Desde el inicio de este reto hemos estado usando clases y objetos sin darnos cuenta. Cada elemento en un programa Python es un objeto perteneciente a alguna clase. Veamos que todo en Python pertenece a una clase: ```py asabeneh@Asabeneh:~$ python Python 3.9.6 (default, Jun 28 2021, 15:26:21) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> num = 10 >>> type(num) >>> string = 'string' >>> type(string) >>> boolean = True >>> type(boolean) >>> lst = [] >>> type(lst) >>> tpl = () >>> type(tpl) >>> set1 = set() >>> type(set1) >>> dct = {} >>> type(dct) ``` ### Crear una clase Para crear una clase usamos la palabra clave class seguida del nombre de la clase y dos puntos. El nombre de la clase debe usar CamelCase. ```sh # sintaxis class NombreClase: # código aquí ``` **Ejemplo:** ```py class Person: pass print(Person) ``` ```sh <__main__.Person object at 0x10804e510> ``` ### Crear un objeto Creamos un objeto llamando a la clase: ```py p = Person() print(p) ``` ### Constructor de clase En el ejemplo anterior creamos un objeto de la clase Person. Sin embargo, una clase sin constructor no es muy útil en la práctica. Usamos el método especial __init__ como constructor en Python. __init__ recibe self, que es la referencia a la instancia actual. **Ejemplo:** ```py class Person: def __init__(self, name): # self permite ligar parámetros a la instancia self.name = name p = Person('Asabeneh') print(p.name) print(p) ``` ```sh # salida Asabeneh <__main__.Person object at 0x2abf46907e80> ``` Añadamos más parámetros al constructor: ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.firstname) print(p.lastname) print(p.age) print(p.country) print(p.city) ``` ```sh # salida Asabeneh Yetayeh 250 Finland Helsinki ``` ### Métodos de instancia Un objeto puede tener métodos, que son funciones pertenecientes a esa instancia. **Ejemplo:** ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} tiene {self.age} años. Vive en {self.city}, {self.country}.' p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.person_info()) ``` ```sh # salida Asabeneh Yetayeh tiene 250 años. Vive en Helsinki, Finland. ``` ### Valores por defecto de los objetos A veces queremos proporcionar valores por defecto a los parámetros del constructor para evitar errores cuando la clase se instancia sin argumentos. **Ejemplo:** ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} tiene {self.age} años. Vive en {self.city}, {self.country}.' p1 = Person() print(p1.person_info()) p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) ``` ```sh # salida Asabeneh Yetayeh tiene 250 años. Vive en Helsinki, Finland. John Doe tiene 30 años. Vive en Noman city, Nomanland. ``` ### Modificar valores por defecto de la clase En el siguiente ejemplo todos los parámetros del constructor tienen valores por defecto y añadimos un atributo skills y un método add_skill para añadir habilidades. ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city self.skills = [] def person_info(self): return f'{self.firstname} {self.lastname} tiene {self.age} años. Vive en {self.city}, {self.country}.' def add_skill(self, skill): self.skills.append(skill) p1 = Person() print(p1.person_info()) p1.add_skill('HTML') p1.add_skill('CSS') p1.add_skill('JavaScript') p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) print(p1.skills) print(p2.skills) ``` ```sh # salida Asabeneh Yetayeh tiene 250 años. Vive en Helsinki, Finland. John Doe tiene 30 años. Vive en Noman city, Nomanland. ['HTML', 'CSS', 'JavaScript'] [] ``` ### Herencia La herencia nos permite definir una clase que hereda el comportamiento de otra, facilitando la reutilización del código. ```py # sintaxis class NombreSubclase(NombreSuperclase): # código aquí ``` Ejemplo: ```py class Student(Person): pass s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh # salida Eyob Yetayeh tiene 30 años. Vive en Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam tiene 28 años. Vive en Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` No hemos definido nuevos métodos en Student, pero puede usar los métodos del padre Person. Student hereda el constructor __init__ y el método person_info de Person. Si queremos añadir comportamiento específico en la subclase, definimos nuevos métodos o redefinimos los existentes. ```py class Student(Person): def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki', gender='male'): self.gender = gender super().__init__(firstname, lastname, age, country, city) def person_info(self): gender = 'él' if self.gender == 'male' else 'ella' return f'{self.firstname} {self.lastname} tiene {self.age} años. {gender.capitalize()} vive en {self.city}, {self.country}.' s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki', 'male') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo', 'female') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh # salida Eyob Yetayeh tiene 30 años. Él vive en Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam tiene 28 años. Ella vive en Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` Podemos usar super() o el nombre de la clase padre para invocar el comportamiento del padre. En el ejemplo anterior sobrescribimos el método person_info en la subclase con una implementación distinta. ### Sobrescribir métodos de la clase padre Como se mostró, podemos sobrescribir un método del padre definiendo en la subclase un método con el mismo nombre. ## 💻 Ejercicios: Día 21 ### Ejercicios: Nivel 1 1. Python tiene un módulo llamado _statistics_ que podemos usar para calcular estadísticas. Ahora intentemos desarrollar una clase que calcule count, sum, min, max, range, mean, median, mode, standard deviation, variance, frequency distribution y describe. ```py class Statistics: def __init__(self, data=[]): self.data = data def count(self): # tu propia implementación pass def sum(self): # tu propia implementación pass def min(self): # tu propia implementación pass def max(self): # tu propia implementación pass def range(self): # tu propia implementación pass def mean(self): # tu propia implementación pass def median(self): # tu propia implementación pass def mode(self): # tu propia implementación pass def standard_deviation(self): # tu propia implementación pass def variance(self): # tu propia implementación pass def frequency_distribution(self): # tu propia implementación pass def describe(self): # tu propia implementación pass ``` ```py # código de prueba data = [31, 26, 34, 37, 27, 26, 32, 32, 26, 27, 27, 24, 32, 33, 27, 25, 26, 38, 37, 31, 34, 24, 33, 29, 26] statistics = Statistics(data) print('Count:', statistics.count()) # 25 print('Sum: ', statistics.sum()) # 730 print('Min: ', statistics.min()) # 24 print('Max: ', statistics.max()) # 38 print('Range: ', statistics.range()) # 14 print('Mean: ', statistics.mean()) # 29.2 print('Median: ', statistics.median()) # 27 print('Mode: ', statistics.mode()) # {'mode': 26, 'count': 5} print('Standard Deviation: ', statistics.standard_deviation()) # 4.2 print('Variance: ', statistics.variance()) # 17.5 print('Frequency Distribution: ', statistics.frequency_distribution()) # [(24, 2), (25, 1), (26, 5), (27, 4), (29, 1), (31, 2), (32, 3), (33, 2), (34, 2), (37, 2), (38, 1)] ``` ### Ejercicios: Nivel 2 1. Crea una clase llamada PersonAccount. Debe tener firstname, lastname, incomes, expenses como atributos y métodos para añadir ingresos, añadir gastos y calcular el balance. ### Ejercicios: Nivel 3 1. El siguiente código es una función; conviértelo en una clase con comportamiento equivalente. ```python def print_products(*args, **kwargs): for product in args: print(product) print(kwargs) for key in kwargs: print(f"{key}: {kwargs[key]}") print_products("apple", "banana", "orange", vegetable="tomato", juice="orange") ``` ```sh apple banana orange {'vegetable': 'tomato', 'juice': 'orange'} vegetable: tomato juice: orange ``` 2. En la clase PersonAccount diseña atributos firstname, lastname, incomes y expenses y añade métodos para calcular el ingreso neto de la persona. 🎉 ¡Felicidades! 🎉 [<< Día 20](./20_python_package_manager_sp.md) | [Día 22 >>](./22_web_scraping_sp.md) ================================================ FILE: Spanish/22_web_scraping_sp.md ================================================ # 30 Días de Python: Día 22 - Web scraping - [Día 22](#-día-22) - [Web scraping con Python](#web-scraping-con-python) - [¿Qué es el web scraping?](#qué-es-el-web-scraping) - [💻 Ejercicios: Día 22](#-ejercicios-día-22) # 📘 Día 22 ## Web scraping con Python ### ¿Qué es el web scraping? Internet está lleno de datos que pueden utilizarse para distintos fines. Para recopilar esos datos necesitamos saber cómo extraerlos de sitios web. El web scraping es el proceso de extraer y recopilar datos de sitios web y almacenarlos en una máquina local o en una base de datos. En esta sección usaremos los paquetes requests y BeautifulSoup (versión 4). Para empezar necesitas _requests_,_beautifulsoup4_ y un _sitio web_: ```sh pip install requests pip install beautifulsoup4 ``` Para hacer scraping necesitas conocimientos básicos de etiquetas HTML y selectores CSS. Usamos etiquetas HTML,clases y/o IDs para localizar contenido en la página. Importemos requests y BeautifulSoup: ```py import requests from bs4 import BeautifulSoup ``` Declaremos una variable url con el sitio que queremos scrapear: ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' # Usamos requests.get para obtener datos de la URL response = requests.get(url) # Comprobar el estado status = response.status_code print(status) # 200 indica éxito ``` ```sh 200 ``` Parsear el contenido con BeautifulSoup: ```py import requests from bs4 import BeautifulSoup url = 'https://archive.ics.uci.edu/ml/datasets.php' response = requests.get(url) content = response.content # obtenemos todo el contenido del sitio soup = BeautifulSoup(content, 'html.parser') # BeautifulSoup nos permite parsear el HTML print(soup.title) # UCI Machine Learning Repository: Data Sets print(soup.title.get_text()) # UCI Machine Learning Repository: Data Sets print(soup.body) # muestra el cuerpo completo de la página print(response.status_code) tables = soup.find_all('table', {'cellpadding':'3'}) # Localizamos tablas cuyo atributo cellpadding tenga el valor 3 # Podemos usar id, class o etiquetas HTML para seleccionar elementos; consulta la documentación de BeautifulSoup para más información table = tables[0] # el resultado es una lista; tomamos el primer elemento for td in table.find('tr').find_all('td'): print(td.text) ``` Si ejecutas este código verás que la extracción está incompleta.Puedes continuar para completarla,ya que forma parte del ejercicio 1. Consulta la documentación de BeautifulSoup para más detalles: https://www.crummy.com/software/BeautifulSoup/bs4/doc/#quick-start 🌕 Vas por muy buen camino.Solo te faltan ocho días para alcanzar una meta impresionante.Ahora haz los ejercicios para practicar. ## 💻 Ejercicios: Día 22 1. Raspa el siguiente sitio y guarda los datos como un archivo JSON (url = 'http://www.bu.edu/president/boston-university-facts-stats/'). 2. Extrae las tablas de esta URL (https://archive.ics.uci.edu/ml/datasets.php) y conviértelas a un archivo JSON. 3. Raspa la tabla de presidentes y guarda los datos como JSON (https://en.wikipedia.org/wiki/List_of_presidents_of_the_United_States).Esta tabla no está muy bien estructurada,por lo que la extracción puede llevar tiempo. 🎉 ¡Felicidades!🎉 [<< Día 21](./21_classes_and_objects_sp.md) | [Día 23 >>](./23_virtual_environment_sp.md) ================================================ FILE: Spanish/23_virtual_environment_sp.md ================================================ # 30 Días de Python: Día 23 - Entornos virtuales - [Día 23](#-día-23) - [Configurar un entorno virtual](#configurar-un-entorno-virtual) - [💻 Ejercicios: Día 23](#-ejercicios-día-23) # 📘 Día 23 ## Configurar un entorno virtual Al comenzar un proyecto es recomendable usar un entorno virtual. Un entorno virtual nos permite crear un entorno aislado o independiente, evitando conflictos de dependencias entre proyectos. Si ejecutas pip freeze en la terminal verás todos los paquetes instalados en la máquina. Con virtualenv solo tendrás acceso a los paquetes instalados en ese entorno específico. Abre tu terminal e instala virtualenv: ```sh pip install virtualenv ``` Dentro de la carpeta 30DaysOfPython crea un directorio llamado flask_project. Una vez instalado virtualenv, entra en la carpeta del proyecto y crea el entorno virtual: Para Mac/Linux: ```sh virtualenv venv ``` Para Windows: ```sh python -m venv venv ``` A mí me gusta nombrar el entorno como venv, pero puedes elegir otro nombre. Usa ls (o dir en Windows) para comprobar que venv se creó: ```sh ls # venv/ ``` Activa el entorno virtual desde la carpeta del proyecto: Para Mac/Linux: ```sh source venv/bin/activate ``` En Windows la activación puede variar según PowerShell o Git Bash. Para Windows PowerShell: ```sh venv\Scripts\activate ``` Para Windows Git Bash: ```sh venv\Scripts\. activate ``` Tras ejecutar el comando de activación,el prompt mostrará el nombre del entorno (venv) al inicio.Ejemplo: ```sh (venv) user@host:~/Desktop/30DaysOfPython/flask_project$ ``` Ahora,si ejecutas pip freeze no verás los paquetes globales;solo los del entorno.Instalemos Flask para este proyecto: ```sh pip install Flask ``` Después,comprobemos los paquetes instalados: ```sh pip freeze # ejemplo de salida: # Click==7.0 # Flask==1.1.1 # itsdangerous==1.1.0 # Jinja2==2.10.3 # MarkupSafe==1.1.1 # Werkzeug==0.16.0 ``` Cuando termines,ejecuta deactivate para salir del entorno activo: ```sh deactivate ``` Los módulos necesarios para trabajar con Flask ya están instalados en el entorno del proyecto.Es buena práctica añadir venv al archivo .gitignore para no subir el entorno a GitHub. ## 💻 Ejercicios: Día 23 1. Crea un directorio de proyecto con un entorno virtual siguiendo el ejemplo anterior. 🎉 ¡Felicidades! 🎉 [<< Día 22](./22_web_scraping_sp.md) | [Día 24 >>](./24_statistics_sp.md) ================================================ FILE: Spanish/24_statistics_sp.md ================================================ # 30 Días de Python: Día 24 - Estadística - [Día 24](#-día-24) - [Análisis estadístico con Python](#análisis-estadístico-con-python) - [Estadística](#estadística) - [Datos](#datos) - [Módulo statistics](#módulo-statistics) - [NumPy](#numpy) - [Importar NumPy](#importar-numpy) - [Crear arrays con NumPy](#crear-arrays-con-numpy) - [Crear arrays enteros con NumPy](#crear-arrays-enteros-con-numpy) - [Crear arrays float con NumPy](#crear-arrays-float-con-numpy) - [Crear arrays booleanos con NumPy](#crear-arrays-booleanos-con-numpy) - [Crear arrays multidimensionales con NumPy](#crear-arrays-multidimensionales-con-numpy) - [Convertir arrays de NumPy a listas](#convertir-arrays-de-numpy-a-listas) - [Crear arrays desde tuplas](#crear-arrays-desde-tuplas) - [Forma (shape) de arrays de NumPy](#forma-shape-de-arrays-de-numpy) - [Tipo de datos de arrays de NumPy](#tipo-de-datos-de-arrays-de-numpy) - [Tamaño (size) de arrays de NumPy](#tamaño-size-de-arrays-de-numpy) - [Operaciones matemáticas con NumPy](#operaciones-matemáticas-con-numpy) - [Suma](#suma) # 📘 Día 24 ## Análisis estadístico con Python ## Estadística La estadística es la disciplina que estudia la recolección, organización, presentación, análisis, interpretación y comunicación de datos. La estadística es una rama de las matemáticas y es un conocimiento previo recomendable para ciencia de datos y machine learning. Es un campo muy amplio; en esta sección nos centraremos solo en las partes más relevantes. Al completar este reto puedes avanzar hacia desarrollo web, análisis de datos, machine learning o ciencia de datos. En algún punto de tu carrera profesional te enfrentarás a datos que necesitan ser procesados. Tener nociones de estadística te ayudará a tomar decisiones basadas en datos: como dice el dicho, "los datos nos hablan". ## Datos ¿Qué son los datos? Los datos son cualquier conjunto de caracteres recogidos y transformados con algún propósito, usualmente para análisis. Pueden ser texto, números, imágenes, audio o vídeo. Si los datos carecen de contexto son poco útiles para humanos o máquinas. Para extraer significado necesitamos herramientas que los procesen. El flujo de trabajo en análisis de datos, ciencia de datos o machine learning comienza siempre por los datos. Pueden provenir de fuentes externas o ser generados. Existen datos estructurados y no estructurados. Los datos pueden ser pequeños o masivos. Muchos de los formatos de datos que encontrarás ya se han presentado en la sección de manejo de archivos. ## Módulo statistics El módulo _statistics_ de Python ofrece funciones para cálculos estadísticos sobre datos numéricos. No compite con bibliotecas avanzadas de terceros (NumPy, SciPy) ni con paquetes profesionales de estadística, sino que provee funcionalidades a un nivel similar al de calculadoras científicas o gráficas. # NumPy Como lenguaje general, Python se potencia con librerías como numpy, scipy, matplotlib y pandas, transformándose en un entorno potente para computación científica. NumPy es la librería central para computación científica en Python; ofrece arrays multidimensionales de alto rendimiento y herramientas para operar con ellos. Para trabajar con notebooks es recomendable usar Jupyter. Puedes instalar Anaconda para disponer de Jupyter y muchas librerías preinstaladas. ```sh pip install numpy ``` ## Importar NumPy Si usas Jupyter (recomendado), puedes seguir este notebook de ejemplo. ```py # cómo importar numpy import numpy as np # cómo comprobar la versión de numpy print('numpy:', np.__version__) # ver métodos disponibles print(dir(np)) ``` ## Crear arrays con NumPy ### Crear arrays enteros con NumPy ```py # crear una lista de Python python_list = [1,2,3,4,5] # comprobar tipo print('Type:', type(python_list)) # print(python_list) # [1, 2, 3, 4, 5] two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] print(two_dimensional_list) # [[0, 1, 2], [3, 4, 5], [6, 7, 8]] # crear un array NumPy desde la lista de Python numpy_array_from_list = np.array(python_list) print(type(numpy_array_from_list)) # print(numpy_array_from_list) # array([1, 2, 3, 4, 5]) ``` ### Crear arrays float con NumPy ```py # lista de Python python_list = [1,2,3,4,5] numpy_array_from_list2 = np.array(python_list, dtype=float) print(numpy_array_from_list2) # array([1., 2., 3., 4., 5.]) ``` ### Crear arrays booleanos con NumPy ```py numpy_bool_array = np.array([0, 1, -1, 0, 0], dtype=bool) print(numpy_bool_array) # array([False, True, True, False, False]) ``` ### Crear arrays multidimensionales con NumPy Un array de NumPy puede tener múltiples filas y columnas: ```py two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] numpy_two_dimensional_list = np.array(two_dimensional_list) print(type(numpy_two_dimensional_list)) print(numpy_two_dimensional_list) ``` ```sh [[0 1 2] [3 4 5] [6 7 8]] ``` ### Convertir arrays de NumPy a listas ```py # podemos usar tolist() para convertir un array a lista de Python np_to_list = numpy_array_from_list.tolist() print(type(np_to_list)) print('Array 1D:', np_to_list) print('Array 2D: ', numpy_two_dimensional_list.tolist()) ``` ```sh Array 1D: [1, 2, 3, 4, 5] Array 2D: [[0, 1, 2], [3, 4, 5], [6, 7, 8]] ``` ### Crear arrays desde tuplas ```py # crear una tupla en Python python_tuple = (1,2,3,4,5) print(type(python_tuple)) # print('python_tuple: ', python_tuple) # python_tuple: (1, 2, 3, 4, 5) numpy_array_from_tuple = np.array(python_tuple) print(type(numpy_array_from_tuple)) # print('numpy_array_from_tuple: ', numpy_array_from_tuple) # numpy_array_from_tuple: [1 2 3 4 5] ``` ### Forma (shape) de arrays de NumPy El método shape devuelve una tupla con la forma del array: filas y columnas. Si el array es 1D devuelve su longitud. ```py nums = np.array([1, 2, 3, 4, 5]) print(nums) print('Forma de nums: ', nums.shape) print(numpy_two_dimensional_list) print('Forma de numpy_two_dimensional_list: ', numpy_two_dimensional_list.shape) three_by_four_array = np.array([[0, 1, 2, 3], [4,5,6,7], [8,9,10, 11]]) print(three_by_four_array.shape) ``` ```sh [1 2 3 4 5] Forma de nums: (5,) [[0 1 2] [3 4 5] [6 7 8]] Forma de numpy_two_dimensional_list: (3, 3) (3, 4) ``` ### Tipo de datos de arrays de NumPy Tipos de datos: str, int, float, complex, bool, list, None ```py int_lists = [-3, -2, -1, 0, 1, 2,3] int_array = np.array(int_lists) float_array = np.array(int_lists, dtype=float) print(int_array) print(int_array.dtype) print(float_array) print(float_array.dtype) ``` ```sh [-3 -2 -1 0 1 2 3] int64 [-3. -2. -1. 0. 1. 2. 3.] float64 ``` ### Tamaño (size) de arrays de NumPy Para conocer el número de elementos de un array utilizamos size: ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) two_dimensional_list = np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) print('Tamaño:', numpy_array_from_list.size) # 5 print('Tamaño:', two_dimensional_list.size) # 9 ``` ```sh Tamaño: 5 Tamaño: 9 ``` ## Operaciones matemáticas con NumPy Los arrays de NumPy permiten operaciones vectorizadas sin necesidad de bucles. Operaciones disponibles: - Suma (+) - Resta (-) - Multiplicación (*) - División (/) - Módulo (%) - División entera (//) - Potencia (**) ### Suma ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('Suma: ', numpy_array_from_list + 2) print('Suma: ', np.add(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] Suma: [3 4 5 6 7] Suma: [3 4 5 6 7] ``` ### Resta ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('Resta: ', numpy_array_from_list - 2) print('Resta: ', np.subtract(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] Resta: [-1 0 1 2 3] Resta: [-1 0 1 2 3] ``` ### Multiplicación ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('Multiplicación: ', numpy_array_from_list * 2) print('Multiplicación: ', np.multiply(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] Multiplicación: [ 2 4 6 8 10] Multiplicación: [ 2 4 6 8 10] ``` ### División ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('División: ', numpy_array_from_list / 2) print('División: ', np.divide(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] División: [0.5 1. 1.5 2. 2.5] División: [0.5 1. 1.5 2. 2.5] ``` ### Módulo ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('Módulo: ', numpy_array_from_list % 2) print('Módulo: ', np.mod(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] Módulo: [1 0 1 0 1] Módulo: [1 0 1 0 1] ``` ### División entera ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('División entera: ', numpy_array_from_list // 2) print('División entera: ', np.floor_divide(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] División entera: [0 1 1 2 2] División entera: [0 1 1 2 2] ``` ### Potencia ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('Array original: ', numpy_array_from_list) print('Potencia: ', numpy_array_from_list ** 2) print('Potencia: ', np.power(numpy_array_from_list, 2)) ``` ```sh Array original: [1 2 3 4 5] Potencia: [ 1 4 9 16 25] Potencia: [ 1 4 9 16 25] ``` ## Comprobar tipos de datos ```py numpy_int_arr = np.array([1, 2, 3, 4]) numpy_float_arr = np.array([1.1, 2.0, 3.2]) numpy_bool_arr = np.array([-3, -2, 0, 1, 2, 3], dtype='bool') print(numpy_int_arr.dtype) print(numpy_float_arr.dtype) print(numpy_bool_arr.dtype) ``` ```sh int64 float64 bool ``` ## Convertir tipos Podemos convertir tipos con astype: ```py numpy_int_arr = np.array([1, 2, 3, 4], dtype='float') numpy_int_arr.astype('int').dtype numpy_float_arr = np.array([1.1, 2.0, 3.2]) numpy_float_arr.astype('int').dtype numpy_int_arr = np.array([-3, -2, 0, 1, 2, 3]) numpy_int_arr.astype('bool').dtype ``` ```sh int64 int64 bool ``` ## Arrays multidimensionales Una de las ventajas de NumPy es el manejo de arrays multidimensionales: ```py two_dimension_array = np.array([(1,2,3),(4,5,6), (7,8,9)]) print(type(two_dimension_array)) print(two_dimension_array) print('Forma: ', two_dimension_array.shape) print('Tamaño: ', two_dimension_array.size) print('Tipo de datos: ', two_dimension_array.dtype) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] Forma: (3, 3) Tamaño: 9 Tipo de datos: int64 ``` ### Acceder a elementos en arrays NumPy ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_row = two_dimension_array[0] second_row = two_dimension_array[1] third_row = two_dimension_array[2] print('Primera fila:', first_row) print('Segunda fila:', second_row) print('Tercera fila: ', third_row) ``` ```sh Primera fila: [1 2 3] Segunda fila: [4 5 6] Tercera fila: [7 8 9] ``` Obtener columnas: ```py first_column= two_dimension_array[:,0] second_column = two_dimension_array[:,1] third_column = two_dimension_array[:,2] print('Primera columna:', first_column) print('Segunda columna:', second_column) print('Tercera columna: ', third_column) ``` ```sh Primera columna: [1 4 7] Segunda columna: [2 5 8] Tercera columna: [3 6 9] ``` ## Slicing en arrays NumPy El slicing es similar al de listas, pero admite dos dimensiones. ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) print('Array original:', numpy_array_from_list) # primer parámetro: inicio # segundo parámetro: parada # tercer parámetro: paso ten_first_items = numpy_array_from_list[0:10] print('Primeras 10:', ten_first_items) first_five_items = numpy_array_from_list[:5] print('Primeras 5:', first_five_items) last_five_items = numpy_array_from_list[5:] print('Últimas 5:', last_five_items) # índice negativo last_five_items = numpy_array_from_list[-5:] print('Últimas 5:', last_five_items) ``` ```sh Array original: [ 1 2 3 4 5 6 7 8 9 10] Primeras 10: [ 1 2 3 4 5 6 7 8 9 10] Primeras 5: [1 2 3 4 5] Últimas 5: [ 6 7 8 9 10] Últimas 5: [ 6 7 8 9 10] ``` Seleccionar cada segundo elemento: ```py every_two_item = numpy_array_from_list[::2] print('Cada dos elementos:', every_two_item) ``` ```sh Cada dos elementos: [1 3 5 7 9] ``` Invertir array: ```py reversed_array = numpy_array_from_list[::-1] print('Array invertido:', reversed_array) ``` ```sh Array invertido: [10 9 8 7 6 5 4 3 2 1] ``` Slicing en 2D: ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) print(two_dimension_array) print(two_dimension_array[1, 1]) print(two_dimension_array[1, 1:3]) print(two_dimension_array[1:3, 1:3]) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] 5 [5 6] [[5 6] [8 9]] ``` ## Concatenación de arrays en NumPy ```py first_array = np.array([1, 2, 3]) second_array = np.array([4, 5, 6]) third_array = np.array([7, 8, 9]) print('Primer array:', first_array) print('Segundo array:', second_array) print('Tercer array:', third_array) ``` ```sh Primer array: [1 2 3] Segundo array: [4 5 6] Tercer array: [7 8 9] ``` ### Concatenación horizontal ```py horizontal_concat = np.hstack((first_array, second_array, third_array)) print('Concatenación horizontal:', horizontal_concat) ``` ```sh Concatenación horizontal: [1 2 3 4 5 6 7 8 9] ``` ### Concatenación vertical ```py vertical_concat = np.vstack((first_array, second_array, third_array)) print('Concatenación vertical:', vertical_concat) ``` ```sh Concatenación vertical: [[1 2 3] [4 5 6] [7 8 9]] ``` ## Funciones comunes de NumPy ### Mínimo, máximo, media, mediana y percentiles ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) print('Mínimo:', numpy_array_from_list.min()) print('Máximo:', numpy_array_from_list.max()) print('Media:', numpy_array_from_list.mean()) ``` 🎉 ¡Felicidades! 🎉 [<< Día 23](./23_virtual_environment_sp.md) | [Día 25 >>](./25_pandas_sp.md) ================================================ FILE: Spanish/25_pandas_sp.md ================================================ # 30 días de desafío de programación en Python: Día 25 - Pandas - [Día 25](#-día-25) - [Pandas](#pandas) - [InstalarPandas](#instalarpandas) - [ImportarPandas](#importarpandas) - [Crear serie de Pandas con índice por defecto](#crear-serie-de-pandas-con-índice-por-defecto) - [Crear serie de Pandas con índice personalizado](#crear-serie-de-pandas-con-índice-personalizado) - [Crear serie de Pandas a partir de un diccionario](#crear-serie-de-pandas-a-partir-de-un-diccionario) - [Crear serie de Pandas constante](#crear-serie-de-pandas-constante) - [Crear serie de Pandas con Linspace](#crear-serie-de-pandas-con-linspace) - [DataFrames](#dataframes) - [Crear DataFrame a partir de una lista de listas](#crear-dataframe-a-partir-de-una-lista-de-listas) - [Crear DataFrame a partir de un diccionario](#crear-dataframe-a-partir-de-un-diccionario) - [Crear DataFrame a partir de una lista de diccionarios](#crear-dataframe-a-partir-de-una-lista-de-diccionarios) - [Leer archivos CSV con Pandas](#leer-archivos-csv-con-pandas) - [Exploración de datos](#exploración-de-datos) - [Modificar DataFrame](#modificar-dataframe) - [Crear DataFrame](#crear-dataframe) - [Añadir nueva columna](#añadir-nueva-columna) - [Modificar valores de una columna](#modificar-valores-de-una-columna) - [Formatear columnas del DataFrame](#formatear-columnas-del-dataframe) - [Comprobar tipos de datos de columnas](#comprobar-tipos-de-datos-de-columnas) - [Indexación booleana](#indexación-booleana) - [Ejercicios: Día 25](#ejercicios-día-25) # 📘 Día 25 ## Pandas Pandas es una librería open source, de alto rendimiento y fácil de usar para el manejo y análisis de estructuras de datos en Python. Pandas aporta estructuras y herramientas para manejar datos tabulares: *Series* y *DataFrames*. Pandas proporciona utilidades para operaciones de datos como: - reshape (remodelar) - merge (fusionar) - sort (ordenar) - slice (rebanar) - aggregate (agregar) - interpolate (interpolar) Si usas Anaconda no es necesario instalar pandas. ### InstalarPandas Para Mac: ```sh pip install conda conda install pandas ``` Para Windows: ```sh pip install conda pip install pandas ``` Las estructuras de datos de Pandas se basan en *Series* y *DataFrames*. Una *Serie* es una columna, mientras que un DataFrame es una tabla multidimensional compuesta por un conjunto de *Series*. Para crear una serie de Pandas, debemos usar un array unidimensional de NumPy o una lista de Python. Veamos un ejemplo de una serie: Serie de Pandas de nombres ![pandas series](../images/pandas-series-1.png) Serie de países ![pandas series](../images/pandas-series-2.png) Serie de ciudades ![pandas series](../images/pandas-series-3.png) Como puedes ver, una serie de Pandas es simplemente una columna de datos. Si queremos tener varias columnas, usamos un DataFrame. El siguiente ejemplo muestra un DataFrame de Pandas. Veamos un ejemplo de un DataFrame de Pandas: ![Pandas data frame](../images/pandas-dataframe-1.png) Un DataFrame es una colección de filas y columnas. Mira la tabla a continuación; tiene más columnas que el ejemplo anterior: ![Pandas data frame](../images/pandas-dataframe-2.png) A continuación, veremos cómo importar Pandas y cómo crear Series y DataFrames con Pandas. ### Importar Pandas ```python import pandas as pd # importar pandas como pd import numpy as np # importar numpy como np ``` ### Crear serie de Pandas con índice por defecto ```python nums = [1, 2, 3, 4,5] s = pd.Series(nums) print(s) ``` ```sh 0 1 1 2 2 3 3 4 4 5 dtype: int64 ``` ### Crear serie de Pandas con índice personalizado ```python nums = [1, 2, 3, 4, 5] s = pd.Series(nums, index=[1, 2, 3, 4, 5]) print(s) ``` ```sh 1 1 2 2 3 3 4 4 5 5 dtype: int64 ``` ```python fruits = ['Orange','Banana','Mango'] fruits = pd.Series(fruits, index=[1, 2, 3]) print(fruits) ``` ```sh 1 Orange 2 Banana 3 Mango dtype: object ``` ### Crear serie de Pandas a partir de un diccionario ```python dct = {'name':'Asabeneh','country':'Finland','city':'Helsinki'} ``` ```python s = pd.Series(dct) print(s) ``` ```sh name Asabeneh country Finland city Helsinki dtype: object ``` ### Crear serie de Pandas constante ```python s = pd.Series(10, index = [1, 2, 3]) print(s) ``` ```sh 1 10 2 10 3 10 dtype: int64 ``` ### Crear serie de Pandas con Linspace ```python s = pd.Series(np.linspace(5, 20, 10)) # linspace(inicio, fin, número_de_elementos) print(s) ``` ```sh 0 5.000000 1 6.666667 2 8.333333 3 10.000000 4 11.666667 5 13.333333 6 15.000000 7 16.666667 8 18.333333 9 20.000000 dtype: float64 ``` ## DataFrames Pandas DataFrame se puede crear de diferentes maneras: - Crear a partir de una lista de listas - Crear a partir de un diccionario - Crear a partir de una lista de diccionarios - Crear a partir de un archivo CSV ### Crear DataFrame a partir de una lista de listas ```python data = [ ['Asabeneh', 'Finland', 'Helsinki'], ['David', 'UK', 'London'], ['John', 'Sweden', 'Stockholm'] ] df = pd.DataFrame(data, columns=['Name', 'Country', 'City']) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ### Crear DataFrame a partir de un diccionario ```python data = {'Name': ['Asabeneh', 'David', 'John'], 'Country':[ 'Finland', 'UK', 'Sweden'], 'City': ['Helsinki', 'London', 'Stockholm']} df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ### Crear DataFrame a partir de una lista de diccionarios ```python data = [ {'Name': 'Asabeneh', 'Country': 'Finland', 'City': 'Helsinki'}, {'Name': 'David', 'Country': 'UK', 'City': 'London'}, {'Name': 'John', 'Country': 'Sweden', 'City': 'Stockholm'}] df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 Asabeneh Finland Helsinki 1 David UK London 2 John Sweden Stockholm ``` ## Leer archivos CSV con Pandas Leamos el archivo en el directorio de datos, leeremos el archivo weight-height.csv pasando la ruta del archivo como parámetro a la función pd.read_csv(). Usemos el método head() para ver las primeras cinco filas. ```python import pandas as pd df = pd.read_csv('./data/weight-height.csv') print(df.head()) # por defecto muestra las primeras 5 filas ``` ```sh Gender Height Weight 0 Male 73.847017 241.893563 1 Male 68.781904 162.310473 2 Male 74.110105 212.740856 3 Male 71.730978 220.042470 4 Male 69.881796 206.349801 ``` Veamos las últimas cinco filas usando el método tail(): ```python print(df.tail()) # últimas 5 filas ``` ```sh Gender Height Weight 9995 Female 66.172652 136.777454 9996 Female 67.067155 170.867906 9997 Female 63.867992 128.475319 9998 Female 69.034243 163.852461 9999 Female 61.944246 113.649103 ``` ### Exploración de datos Obtenemos el número de filas y columnas con la propiedad shape: ```python print(df.shape) # número de filas y columnas ``` ```sh (10000, 3) ``` Como puedes ver, este conjunto de datos tiene 10000 filas y 3 columnas. Obtengamos más información sobre los datos: ```python print(df.columns) # nombres de las columnas print(df.head(10)) # primeras 10 filas print(df.tail(10)) # últimas 10 filas print(df['Gender'].value_counts()) # contar cuántos hay de cada uno print(df.describe()) # resumen estadístico de los datos ``` ```sh Index(['Gender', 'Height', 'Weight'], dtype='object') Gender Height Weight 0 Male 73.847017 241.893563 1 Male 68.781904 162.310473 2 Male 74.110105 212.740856 3 Male 71.730978 220.042470 4 Male 69.881796 206.349801 5 Male 68.767792 152.212156 6 Male 67.961960 183.927889 7 Male 68.563817 175.929316 8 Male 71.267570 196.028855 9 Male 72.040119 205.801386 Gender Height Weight 9990 Female 64.744846 139.725595 9991 Female 62.109532 132.451630 9992 Female 62.593008 130.727432 9993 Female 62.100222 131.220717 9994 Female 63.421888 133.330246 9995 Female 66.172652 136.777454 9996 Female 67.067155 170.867906 9997 Female 63.867992 128.475319 9998 Female 69.034243 163.852461 9999 Female 61.944246 113.649103 Gender Male 5000 Female 5000 Name: count, dtype: int64 Height Weight count 10000.000000 10000.000000 mean 66.367560 161.440357 std 3.847528 32.108439 min 54.263133 64.700127 25% 63.505620 135.818051 50% 66.318070 161.212928 75% 69.174262 187.169525 max 78.998742 269.989699 ``` ## Modificar DataFrame ### Crear DataFrame Primero, creemos un DataFrame usando lo que aprendimos anteriormente: ```python # importar pandas y numpy import pandas as pd import numpy as np # datos data = [ {"Name": "Juan Pérez", "Country":"China", "City":"Shanghái"}, {"Name": "Luis", "Country":"China", "City":"Pekín"}, {"Name": "Carlos", "Country":"China", "City":"Cantón"}] # crear DataFrame df = pd.DataFrame(data) print(df) ``` ```sh Name Country City 0 Juan Pérez China Shanghái 1 Luis China Pekín 2 Carlos China Cantón ``` ### Añadir nueva columna ```python weights = [74, 78, 69] df['Weight'] = weights df ``` ```sh Name Country City Weight 0 Juan Pérez China Shanghái 74 1 Luis China Pekín 78 2 Carlos China Cantón 69 ``` ```python heights = [173, 175, 169] df['Height'] = heights df ``` ```sh Name Country City Weight Height 0 Juan Pérez China Shanghái 74 173 1 Luis China Pekín 78 175 2 Carlos China Cantón 69 169 ``` ### Modificar valores de una columna Podemos modificar una columna de tres maneras: 1. Asignación directa: ```python df['Name'] = ['Miguel', 'Ana', 'Sofía'] df ``` ```sh Name Country City Weight Height 0 Miguel China Shanghái 74 173 1 Ana China Pekín 78 175 2 Sofía China Cantón 69 169 ``` 2. Modificando con loc: ```python df.loc[1, 'Name'] = 'Lucía' df ``` ```sh Name Country City Weight Height 0 Miguel China Shanghái 74 173 1 Lucía China Pekín 78 175 2 Sofía China Cantón 69 169 ``` 3. Modificando con iloc: ```python print('Datos originales:\n', df) df.iloc[1, 0] = 'Paco' print('Datos modificados:\n', df) ``` ```sh Datos originales: Name Country City Weight Height 0 Miguel China Shanghái 74 173 1 Lucía China Pekín 78 175 2 Sofía China Cantón 69 169 Datos modificados: Name Country City Weight Height 0 Miguel China Shanghái 74 173 1 Paco China Pekín 78 175 2 Sofía China Cantón 69 169 ``` ### Formatear columnas del DataFrame ```python # añadir columna BMI: peso(kg) / altura^2(m). Redondear a 2 decimales. df['BMI'] = np.round(df['Weight'] / ((df['Height'] * 0.01) ** 2), 2) print(df) ``` ```sh Name Country City Weight Height BMI 0 Miguel China Shanghái 74 173 24.73 1 Paco China Pekín 78 175 25.47 2 Sofía China Cantón 69 169 24.16 ``` ## Comprobar tipos de datos de columnas ```python print(df.dtypes) ``` ```sh Name object Country object City object Weight int64 Height int64 BMI float64 dtype: object ``` ### Indexación booleana ```python # crear DataFrame df = pd.DataFrame({ 'name': ['Juan', 'Luis', 'Carlos', 'Pedro'], 'country': ['China', 'Estados Unidos', 'Reino Unido', 'España'], 'age': [25, 15, 22, 28], 'empleado': [True, False, True, False] }) print(df) ``` ```sh name country age empleado 0 Juan China 25 True 1 Luis Estados Unidos 15 False 2 Carlos Reino Unido 22 True 3 Pedro España 28 False ``` Filtrando edad > 20 y empleado == True: ```python print(df[(df['age'] > 20) & (df['empleado'] == True)]) ``` ```sh name country age empleado 0 Juan China 25 True 2 Carlos Reino Unido 22 True ``` ## Ejercicios: Día 25 1. Lee el archivo [hacker_news.csv](../data/hacker_news.csv) y muestra las primeras cinco filas. 2. Obtén la columna de títulos. 3. Obtén el número de filas y columnas. 4. Obtén las primeras diez y las últimas diez filas. 5. Obtén la segunda y cuarta fila, columnas 2 a 4. 6. Filtra las filas cuyo tema sea Python. 7. Cuenta cuántas filas tienen tema Python. 8. Filtra las filas con votos mayores a 200. 9. Ordena el DataFrame por votos (ascendente). 10. Ordena el DataFrame por votos (descendente). 11. Excluye las filas con tema Python y ordena por votos. 🎉 ¡Felicidades! 🎉 [<< Día 24](./24_statistics_sp.md) | [Día 26 >>](./26_python_web_sp.md) ================================================ FILE: Spanish/26_python_web_sp.md ================================================ # 30 días de desafío de programación en Python: Día 26 - Programación web con Python - [Día 26](#-día-26) - [Programación web con Python](#programación-web-con-python) - [Flask](#flask) - [Estructura de carpetas](#estructura-de-carpetas) - [Configurar el proyecto](#configurar-el-proyecto) - [Crear rutas](#crear-rutas) - [Crear plantillas](#crear-plantillas) - [Script de Python](#script-de-python) - [Navegación](#navegación) - [Crear plantilla base](#crear-plantilla-base) - [Servir archivos estáticos](#servir-archivos-estáticos) - [Despliegue](#despliegue) - [Crear cuenta en Heroku](#crear-cuenta-en-heroku) - [Iniciar sesión en Heroku](#iniciar-sesión-en-heroku) - [Crear requirements y Procfile](#crear-requirements-y-procfile) - [Enviar el proyecto a Heroku](#enviar-el-proyecto-a-heroku) - [Ejercicios: Día 26](#ejercicios-día-26) # 📘 Día 26 ## Programación web con Python Python es un lenguaje de programación versátil que se puede utilizar para una variedad de propósitos. En esta sección, veremos cómo usar Python para el desarrollo web. Python tiene muchos marcos web disponibles. Django y Flask son los más populares. Hoy, aprenderemos a usar Flask para el desarrollo web. ### Flask Flask es un marco de desarrollo web escrito en Python. Flask utiliza el motor de plantillas Jinja2. Flask también se puede usar con otras bibliotecas modernas de frontend como React. Si aún no has instalado el paquete virtualenv, instálalo primero. Un entorno virtual permitirá aislar las dependencias del proyecto de las dependencias de la máquina local. #### Estructura de carpetas Después de completar todos los pasos, la estructura de archivos de tu proyecto debería ser la siguiente: ```sh ├── Procfile ├── app.py ├── env │ ├── bin ├── requirements.txt ├── static │ └── css │ └── main.css └── templates ├── about.html ├── home.html ├── layout.html ├── post.html └── result.html ``` ### Configurar el proyecto Comienza a usar Flask siguiendo estos pasos. Paso 1: Instala virtualenv con el siguiente comando. ```sh pip install virtualenv ``` Paso 2: ```sh asabeneh@Asabeneh:~/Desktop$ mkdir python_for_web asabeneh@Asabeneh:~/Desktop$ cd python_for_web/ asabeneh@Asabeneh:~/Desktop/python_for_web$ virtualenv venv asabeneh@Asabeneh:~/Desktop/python_for_web$ source venv/bin/activate (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install Flask (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` Hemos creado un directorio de proyecto llamado python_for_web. Dentro del proyecto, hemos creado un entorno virtual llamado *venv*, que puede tener cualquier nombre. Luego, activamos el entorno virtual. Usamos pip freeze para verificar los paquetes instalados en el directorio del proyecto. El resultado de pip freeze está vacío porque aún no se han instalado paquetes. Ahora, creemos el archivo app.py en el directorio del proyecto y escribamos el siguiente código. El archivo app.py será el archivo principal del proyecto. El siguiente código contiene el módulo flask y el módulo os. ### Crear rutas Ruta de inicio. ```py # importar flask from flask import Flask import os # importar el módulo del sistema operativo app = Flask(__name__) @app.route('/') # este decorador crea la ruta de inicio def home (): return '

Bienvenido

' @app.route('/about') def about(): return '

Acerca de nosotros

' if __name__ == '__main__': # usamos variables de entorno para despliegue # funciona tanto para producción como para desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Para ejecutar la aplicación flask, ingresa python app.py en el directorio principal de la aplicación flask. Después de ejecutar _python app.py_, verifica el puerto 5000 de tu localhost. Agreguemos una ruta adicional creando la ruta "acerca de". ```py # importar flask from flask import Flask import os # importar el módulo del sistema operativo app = Flask(__name__) @app.route('/') # este decorador crea la ruta de inicio def home (): return '

Bienvenido

' @app.route('/about') def about(): return '

Acerca de nosotros

' if __name__ == '__main__': # usamos variables de entorno para despliegue # funciona tanto para producción como para desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Ahora, hemos agregado la ruta acerca de en el código anterior. ¿Pero qué pasa si queremos renderizar un archivo HTML en lugar de una cadena? Podemos renderizar un archivo HTML usando la función *render_template*. Creamos una carpeta llamada templates en el directorio del proyecto y dentro de ella, creamos home.html y about.html. También importamos *render_template* desde flask. ### Crear plantillas Crea archivos HTML dentro de la carpeta templates. home.html ```html Página principal

Bienvenido de vuelta

``` about.html ```html Acerca

Acerca de nosotros

``` ### Script de Python (con render_template) app.py ```py # importar flask from flask import Flask, render_template import os # importar el módulo del sistema operativo app = Flask(__name__) @app.route('/') # este decorador crea la ruta de inicio def home (): return render_template('home.html') @app.route('/about') def about(): return render_template('about.html') if __name__ == '__main__': # usamos variables de entorno para despliegue # funciona tanto para producción como para desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Como puedes ver, para acceder a diferentes páginas o navegar, necesitamos un sistema de navegación. Agreguemos un enlace para cada página, o creemos un diseño que usemos para cada página. ### Navegación ```html ``` Ahora, podemos navegar entre páginas usando los enlaces anteriores. Creamos una página adicional para manejar los datos del formulario. Puedes nombrarla como quieras, yo prefiero llamarla post.html. Podemos inyectar datos en el archivo HTML usando el motor de plantillas Jinja2. ```py # importar flask from flask import Flask, render_template, request, redirect, url_for import os # importar el módulo del sistema operativo app = Flask(__name__) @app.route('/') # este decorador crea la ruta de inicio def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 días de desafío de programación en Python' return render_template('home.html', techs=techs, name=name, title='Página principal') @app.route('/about') def about(): name = '30 días de desafío de programación en Python' return render_template('about.html', name=name, title='Acerca de nosotros') @app.route('/post') def post(): name = 'Artículos sobre programación' path = request.path return render_template('post.html', name=name, path=path, title='Artículos') if __name__ == '__main__': # usamos variables de entorno para despliegue # funciona tanto para producción como para desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` home.html ```html {{title}}

Bienvenido de vuelta a {{name}}

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
``` about.html ```html {{title}}

Acerca de {{name}}

``` post.html ```html {{title}}

{{name}}

Ruta actual: {{path}}

``` Ahora, agreguemos una ruta que procese los datos del formulario. Usamos el método POST porque recibiremos datos del formulario. ```py # importar flask from flask import Flask, render_template, request, redirect, url_for import os # importar el módulo del sistema operativo app = Flask(__name__) @app.route('/') # este decorador crea la ruta de inicio def home(): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 días de desafío de programación en Python' return render_template('home.html', techs=techs, name=name, title='Página principal') @app.route('/about') def about(): name = '30 días de desafío de programación en Python' return render_template('about.html', name=name, title='Acerca de nosotros') @app.route('/post') def post(): name = 'Artículos' return render_template('post.html', name=name, title='Artículos') @app.route('/result', methods=['POST']) def result(): first_name = request.form['first_name'] last_name = request.form['last_name'] old_job = request.form['old_job'] current_job = request.form['current_job'] country = request.form['country'] print(first_name, last_name, old_job, current_job, country) result_data = { 'first_name':first_name, 'last_name':last_name, 'old_job': old_job, 'current_job': current_job, 'country':country } return render_template('result.html', result_data = result_data, title= 'Resultado') if __name__ == '__main__': # usamos variables de entorno para despliegue # funciona tanto para producción como para desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` result.html ```html {{title}}

Datos del formulario

  • Nombre: {{result_data.first_name}}
  • Apellido: {{result_data.last_name}}
  • Trabajo anterior: {{result_data.old_job}}
  • Trabajo actual: {{result_data.current_job}}
  • País: {{result_data.country}}
``` En el mundo real, no repetiríamos el código HTML en todas las páginas. En su lugar, crearíamos una plantilla base y las demás heredarían de ella. Usemos la herencia (plantillas). Ahora, en lugar de tres archivos diferentes, necesitamos crear un archivo de diseño llamado layout.html. Luego, otros archivos heredarán de él. ### Crear plantilla base (layout) layout.html ```html {% if title %} 30 Días de Python - {{ title}} {% else %} 30 Días de Python {% endif %}
{% block content %} {% endblock %}
``` En el diseño anterior, hemos creado una plantilla común que puede ser utilizada por todas las páginas que heredan de ella. Dentro del diseño, podemos ver los enlaces de navegación. Usamos las etiquetas {% block content %}{% endblock %} para permitir que las subplantillas agreguen contenido. home.html ```html {% extends 'layout.html' %} {% block content %}

Bienvenido de vuelta a {{name}}

Este proyecto fue construido usando las siguientes tecnologías: Flask, Python y HTML, CSS

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
{% endblock %} ``` about.html ```html {% extends 'layout.html' %} {% block content %}

Acerca de {{name}}

Este desafío es un desafío de programación de 30 días diseñado para ayudarte a aprender el lenguaje de programación Python, resolviendo un problema de Python cada día.

{% endblock %} ``` post.html ```html {% extends 'layout.html' %} {% block content %}

{{name}}

{{path}}

{% endblock %} ``` result.html ```html {% extends 'layout.html' %} {% block content %}

Datos del formulario

  • Nombre: {{result_data.first_name}}
  • Apellido: {{result_data.last_name}}
  • Trabajo anterior: {{result_data.old_job}}
  • Trabajo actual: {{result_data.current_job}}
  • País: {{result_data.country}}
{% endblock %} ``` #### Servir archivos estáticos A continuación se muestra el archivo main.css, que colocaremos en el directorio static/css: ```css /* === GENERAL === */ body { margin: 0; padding: 0; font-family: "Lato", sans-serif; background-color: #f0f8ea; } .container { max-width: 80%; margin: auto; padding: 30px; } ul { list-style-type: none; padding: 0; } .tech { color: #5bbc2e; } /* === HEADER === */ header { background-color: #5bbc2e; } .menu-container { display: flex; justify-content: space-between; padding: 20px 30px; } .brand-name { color: white; font-weight: 800; font-size: 24px; } .nav-lists { display: flex; } .nav-list { margin-right: 15px; } .nav-link { text-decoration: none; color: white; font-weight: 300; } /* === FORM === */ form { margin: 30px 0; border: 1px solid #ddd; padding: 30px; border-radius: 10px; } form > div { margin-bottom: 15px; } input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; outline: 0; font-size: 16px; box-sizing: border-box; margin-top: 5px; } button { padding: 12px 24px; border: 0; background-color: #5bbc2e; color: white; border-radius: 10px; font-size: 16px; outline: 0; cursor: pointer; } button:hover { background-color: #4b9c25; } ``` ### Despliegue #### Crear cuenta en Heroku Heroku ofrece un servicio de alojamiento gratuito. Si deseas desplegar una aplicación, debes tener una cuenta en Heroku. #### Iniciar sesión en Heroku ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku login heroku: Press any key to open up the browser to login or q to exit: Opening browser to https://cli-auth.heroku.com/auth/cli/browser/ec0972d5-d8c6-4adf-b004-a42a22dd09a8 Logging in... done Logged in as asabeneh@gmail.com asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` #### Crear requirements y Procfile Antes de desplegar la aplicación, necesitamos informar a Heroku qué dependencias instalar y cómo ejecutar la aplicación. Heroku utiliza el archivo requirements.txt para obtener información sobre las dependencias de la aplicación. Usa el comando pip freeze para listar todas las dependencias y sus versiones, y escríbelas en requirements.txt. ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt ``` Procfile le dice a Heroku cómo ejecutar la aplicación. En este caso, usamos Gunicorn como servidor HTTP WSGI para ejecutar aplicaciones web en Python. Necesitamos agregar Gunicorn a nuestras dependencias. ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install gunicorn asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt ``` Ahora, creemos un Procfile y agreguemos el siguiente contenido: ```sh web: gunicorn app:app ``` #### Enviar el proyecto a Heroku ```sh asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku create 30-days-of-python-app Creating ⬢ 30-days-of-python-app... done https://30-days-of-python-app.herokuapp.com/ | https://git.heroku.com/30-days-of-python-app.git asabeneh@Asabeneh:~/Desktop/python_for_web$ git init Initialized empty Git repository in /home/asabeneh/Desktop/python_for_web/.git/ asabeneh@Asabeneh:~/Desktop/python_for_web$ heroku git:remote -a 30-days-of-python-app set git remote heroku to https://git.heroku.com/30-days-of-python-app.git asabeneh@Asabeneh:~/Desktop/python_for_web$ echo -e "venv\n.vscode" > .gitignore asabeneh@Asabeneh:~/Desktop/python_for_web$ git add . asabeneh@Asabeneh:~/Desktop/python_for_web$ git commit -m "primer aplicación web en python" [master (root-commit) 9dfcc6a] primer aplicación web en python 9 files changed, 403 insertions(+) create mode 100644 .gitignore create mode 100644 Procfile create mode 100644 app.py create mode 100644 requirements.txt create mode 100644 static/css/main.css create mode 100644 templates/about.html create mode 100644 templates/home.html create mode 100644 templates/layout.html create mode 100644 templates/post.html create mode 100644 templates/result.html asabeneh@Asabeneh:~/Desktop/python_for_web$ git push heroku master Enumerating objects: 14, done. Counting objects: 100% (14/14), done. Delta compression using up to 2 threads Compressing objects: 100% (12/12), done. Writing objects: 100% (14/14), 6.08 KiB | 1.52 MiB/s, done. Total 14 (delta 2), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source: remote: remote: -----> Python app detected remote: -----> Installing python-3.6.10 remote: -----> Installing pip remote: -----> Installing dependencies with Pipenv 2018.5.18… remote: Installing dependencies from Pipfile.lock (872ae5)… remote: -----> Installing SQLite3 remote: -----> $ python manage.py collectstatic --noinput remote: Traceback (most recent call last): remote: File "manage.py", line 10, in remote: from app import app remote: ModuleNotFoundError: No module named 'app' remote: remote: ! Error while running '$ python manage.py collectstatic --noinput'. remote: See traceback above for details. remote: remote: You may need to update application code to resolve this error. remote: Or, you can disable collectstatic for this application: remote: remote: $ heroku config:set DISABLE_COLLECTSTATIC=1 remote: remote: https://devcenter.heroku.com/articles/django-assets remote: -----> Discovering process types remote: Procfile declares types -> web remote: remote: -----> Compressing... remote: Done: 55.7M remote: -----> Launching... remote: Released v3 remote: https://30-days-of-python-app.herokuapp.com/ deployed to Heroku remote: remote: Verifying deploy... done. To https://git.heroku.com/30-days-of-python-app.git * [new branch] master -> master asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` Como puedes ver, hemos creado con éxito nuestra primera aplicación web, la hemos desplegado y la hemos alojado en Heroku. Puedes probar esta aplicación usando este [enlace](https://30-days-of-python-app.herokuapp.com/). Sin más preámbulos, realicemos algunos ejercicios para reforzar lo aprendido. ## Ejercicios: Día 26 1. Crea una aplicación Flask llamada "Calculadora de calificaciones". El usuario ingresa la nota y el nombre de la asignatura, y la aplicación debe mostrar un mensaje según la nota: - Si nota ≥ 90: "¡Excelente! Tu calificación en [Asignatura] es [Nota]". - Si 80 ≤ nota < 90: "¡Muy bien! Tu calificación en [Asignatura] es [Nota]". - Si 70 ≤ nota < 80: "Regular. Tu calificación en [Asignatura] es [Nota]". - Si 60 ≤ nota < 70: "Aprobaste. Tu calificación en [Asignatura] es [Nota]". - Si nota < 60: "¡Necesitas esforzarte más! Tu calificación en [Asignatura] es [Nota]". 2. Crea una aplicación "Calculadora de IMC" que calcule el índice de masa corporal (IMC = peso(kg) / altura(m)²) y muestre el estado según el IMC: - IMC < 18.5: "Bajo peso" - 18.5 ≤ IMC < 24.9: "Peso saludable" - 25 ≤ IMC < 29.9: "Sobrepeso" - IMC ≥ 30: "Obesidad" 3. Crea una aplicación de blog donde los usuarios puedan añadir, editar y eliminar publicaciones. 4. Crea una aplicación "Gestor de tareas" donde los usuarios puedan añadir, ver y eliminar tareas. 🎉 ¡Felicidades! 🎉 [<< Día 25](./25_pandas_sp.md) | [>> Día 27](./27_python_with_mongodb_sp.md) ================================================ FILE: Spanish/27_python_with_mongodb_sp.md ================================================ # Reto de 30 días de Python: Día 27 - Python y MongoDB - [Día 27](#-día-27) - [Python y MongoDB](#python-y-mongodb) - [MongoDB](#mongodb) - [Comparación entre SQL y NoSQL](#comparación-entre-sql-y-nosql) - [Obtener la cadena de conexión (URI de MongoDB)](#obtener-la-cadena-de-conexión-uri-de-mongodb) - [Conectar una aplicación Flask a un clúster de MongoDB](#conectar-una-aplicación-flask-a-un-clúster-de-mongodb) - [Crear base de datos y colecciones](#crear-base-de-datos-y-colecciones) - [Insertar múltiples documentos en una colección](#insertar-múltiples-documentos-en-una-colección) - [Consultas en MongoDB](#consultas-en-mongodb) - [Buscar usando una consulta](#buscar-usando-una-consulta) - [Buscar con modificadores](#buscar-con-modificadores) - [Limitar la cantidad de documentos](#limitar-la-cantidad-de-documentos) - [Buscar con ordenamiento](#buscar-con-ordenamiento) - [Actualizar usando una consulta](#actualizar-usando-una-consulta) - [Eliminar documentos](#eliminar-documentos) - [Eliminar una colección](#eliminar-una-colección) - [💻 Ejercicio: Día 27](#-ejercicio-día-27) # 📘 Día 27 # Python y MongoDB Python es una tecnología backend que puede conectarse a distintas bases de datos. Puede conectarse a bases de datos SQL y NoSQL. En esta sección conectaremos Python con la base de datos MongoDB, que es una base de datos NoSQL. ## MongoDB MongoDB es una base de datos NoSQL. MongoDB almacena datos en documentos tipo JSON, lo que hace a MongoDB muy flexible y escalable. Veamos la terminología que difiere entre bases de datos SQL y NoSQL. La siguiente tabla mostrará la diferencia entre SQL y NoSQL. ### Comparación entre SQL y NoSQL ![SQL vs NoSQL](../images/mongoDB/sql-vs-nosql.png) En esta sección nos centraremos en la base de datos NoSQL MongoDB. Regístrate en [MongoDB](https://www.mongodb.com/) haciendo clic en registrarse y luego en la página siguiente confirma el registro. ![Página de registro de MongoDB](../images/mongoDB/mongodb-signup-page.png) Rellena el formulario y haz clic en continuar.. ![Registro MongoDB](../images/mongoDB/mongodb-register.png) Elige el plan gratuito ![Plan gratuito de MongoDB](../images/mongoDB/mongodb-free.png) Elige la región gratuita más cercana y ponle un nombre a tu clúster. ![Nombre del clúster de MongoDB](../images/mongoDB/mongodb-cluster-name.png) Ahora se ha creado un sandbox gratuito ![Sandbox de MongoDB](../images/mongoDB/mongodb-sandbox.png) Permitir el acceso desde todos los hosts locales ![Permitir acceso IP en MongoDB](../images/mongoDB/mongodb-allow-ip-access.png) Agregar usuario y contraseña ![Agregar usuario en MongoDB](../images/mongoDB/mongodb-add-user.png) Crear enlace URI de MongoDB ![Crear URI de MongoDB](../images/mongoDB/mongodb-create-uri.png) Selecciona el driver para Python 3.6 o superior ![Driver Python para MongoDB](../images/mongoDB/mongodb-python-driver.png) ### Obtener la cadena de conexión (URI de MongoDB) Copia la cadena de conexión; obtendrás algo similar a esto: ```sh mongodb+srv://asabeneh:@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` No te preocupes por esta URL; es la forma de conectar tu aplicación con MongoDB. Reemplaza el marcador de contraseña con la contraseña que creaste al añadir el usuario. Ejemplo: ```sh mongodb+srv://asabeneh:123123123@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` En este ejemplo reemplacé todo y la contraseña es 123123123; el nombre de la base de datos es *thirty_days_python*. Esto solo es un ejemplo; tu contraseña debe ser más segura. Python necesita drivers para acceder a MongoDB. Usaremos _pymongo_ y _dnspython_ para conectar nuestra aplicación con la base de MongoDB. Instala pymongo y dnspython en tu directorio de proyecto: ```sh pip install pymongo dnspython ``` Para usar el URI mongodb+srv:// debes instalar el módulo "dnspython". dnspython es un paquete de utilidades DNS para Python que soporta prácticamente todos los tipos de registros. ### Conectar una aplicación Flask a un clúster de MongoDB ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Al ejecutar el código anterior obtendremos las bases de datos por defecto de MongoDB. ```sh ['admin', 'local'] ``` ### Crear base de datos y colecciones Creemos una base de datos; si la base de datos y la colección no existen en MongoDB, se crearán. Crearemos una base de datos llamada *thirty_days_of_python* y una colección *students*. Formas de crear la base de datos: ```sh db = client.name_of_database # podemos crear la base de datos así, o usar la segunda forma db = client['name_of_database'] ``` ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) # crear la base de datos db = client.thirty_days_of_python # crear la colección students e insertar un documento db.students.insert_one({'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250}) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Después de crear la base de datos, también creamos la colección students y usamos *insert_one()* para insertar un documento. Ahora la base de datos *thirty_days_of_python* y la colección *students* han sido creadas y el documento insertado. Revisa tu clúster MongoDB y verás la base de datos y la colección, con un documento dentro. ```sh ['thirty_days_of_python', 'admin', 'local'] ``` Si ves lo anterior en tu clúster, significa que has creado con éxito una base de datos y una colección. ![Crear base de datos y colección](../images/mongoDB/mongodb-creating_database.png) Si ves la imagen anterior, el documento fue creado con un ID largo como clave primaria. Cada vez que incrustamos un documento, MongoDB le asigna un ID único. ### Insertar múltiples documentos en una colección *insert_one()* inserta un elemento a la vez; si queremos insertar múltiples documentos de una vez podemos usar *insert_many()* o un bucle for. Podemos usar un bucle for para insertar varios documentos a la vez. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) students = [ {'name':'David','country':'UK','city':'London','age':34}, {'name':'John','country':'Sweden','city':'Stockholm','age':28}, {'name':'Sami','country':'Finland','city':'Helsinki','age':25}, ] for student in students: db.students.insert_one(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Consultas en MongoDB Los métodos *find()* y *findOne()* son formas comunes de buscar datos en una colección MongoDB. Son similares al SELECT en MySQL. Usemos _find_one()_ para obtener un documento de la colección. - *find_one({"_id": ObjectId("id")}): si no se proporciona id, devuelve la primera aparición. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos student = db.students.find_one() print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` La consulta anterior devuelve la primera entrada, pero podemos usar un _id_ específico para ubicar un documento concreto. Por ejemplo, usemos el id de David para obtener el objeto David. '_id':ObjectId('5df68a23f106fe2d315bbc8c') ```py # importar flask from flask import Flask, render_template import os # importar el módulo os from bson.objectid import ObjectId # objeto id MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos student = db.students.find_one({'_id':ObjectId('5df68a23f106fe2d315bbc8c')}) print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` Hemos visto cómo usar _find_one()_. Veamos ahora _find()_. - _find()_: si no pasamos un objeto consulta devuelve todas las apariciones en la colección. El resultado es un objeto pymongo.cursor. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos students = db.students.find() for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Podemos especificar los campos a devolver pasando un segundo objeto a _find({}, {})_. 0 significa excluir, 1 incluir; no se puede mezclar 0 y 1 excepto para _id. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos students = db.students.find({}, {"_id":0, "name": 1, "country":1}) # 0 excluir, 1 incluir for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'name': 'Asabeneh', 'country': 'Finland'} {'name': 'David', 'country': 'UK'} {'name': 'John', 'country': 'Sweden'} {'name': 'Sami', 'country': 'Finland'} ``` ### Buscar usando una consulta En MongoDB, find acepta un objeto de consulta. Podemos pasar ese objeto para filtrar los documentos que queremos. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = { "country":"Finland" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Buscar con modificadores ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = { "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Buscar con modificadores (combinados) ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = { "country":"Finland", "city":"Helsinki" } students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Ejemplos con operadores: ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = {"age":{"$lt":30}} students = db.students.find(query) for student in students: print(student) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Limitar la cantidad de documentos Podemos usar el método _limit()_ para restringir el número de documentos devueltos. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos db.students.find().limit(3) ``` ### Buscar con ordenamiento Por defecto el orden es ascendente. Podemos cambiar a descendente pasando -1. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos students = db.students.find().sort('name') for student in students: print(student) students = db.students.find().sort('name',-1) for student in students: print(student) students = db.students.find().sort('age') for student in students: print(student) students = db.students.find().sort('age',-1) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Ascendente ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Descendente ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ### Actualizar usando una consulta Usaremos *update_one()* para actualizar un documento. Acepta dos objetos: la consulta y el nuevo valor. La primera persona, Asabeneh, tenía una edad poco razonable. Actualicemos la edad de Asabeneh. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = {'age':250} new_value = {'$set':{'age':38}} db.students.update_one(query, new_value) # verifiquemos el resultado para ver si la edad fue modificada for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Si queremos actualizar varios documentos a la vez usamos *update_many()*. ### Eliminar documentos El método *delete_one()* elimina un documento. Acepta un objeto consulta y elimina la primera aparición. Eliminemos a John de la colección. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos query = {'name':'John'} db.students.delete_one(query) for student in db.students.find(): print(student) # verifiquemos el resultado app = Flask(__name__) if __name__ == '__main__': # en despliegue usamos variables de entorno # para que funcione tanto en producción como en desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Como puedes ver, John ha sido eliminado de la colección. Si queremos eliminar varios documentos usamos *delete_many()* con un objeto consulta. Si pasamos un objeto vacío *delete_many({})* eliminará todos los documentos en la colección. ### Eliminar una colección Usando el método _drop()_ podemos eliminar una colección de la base de datos. ```py # importar flask from flask import Flask, render_template import os # importar el módulo os import pymongo MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos db.students.drop() ``` Ahora hemos eliminado la colección students de la base de datos. ## 💻 Ejercicio: Día 27 🎉 ¡Felicidades! 🎉 [<< Día 26](./26_python_web_sp.md) | [Día 28 >>](./28_API_sp.md) ================================================ FILE: Spanish/28_API_sp.md ================================================ # Reto de 30 días de Python: Día 28 - API - [Día 28](#-día-28) - [Interfaz de Programación de Aplicaciones (API)](#interfaz-de-programación-de-aplicaciones-api) - [API](#api) - [Construir una API](#construir-una-api) - [HTTP (Protocolo de transferencia de hipertexto)](#http-protocolo-de-transferencia-de-hipertexto) - [Estructura de HTTP](#estructura-de-http) - [Línea inicial de solicitud (línea de estado)](#línea-inicial-de-solicitud-línea-de-estado) - [Línea inicial de respuesta (línea de estado)](#línea-inicial-de-respuesta-línea-de-estado) - [Campos de cabecera](#campos-de-cabecera) - [Cuerpo del mensaje](#cuerpo-del-mensaje) - [Métodos de solicitud](#métodos-de-solicitud) - [💻 Ejercicio: Día 28](#-ejercicio-día-28) # 📘 Día 28 # Interfaz de Programación de Aplicaciones (API) ## API API son las siglas de Application Programming Interface (Interfaz de Programación de Aplicaciones). El tipo de API que veremos en esta sección es la Web API. Una Web API es una interfaz definida que permite la interacción entre organizaciones y las aplicaciones que consumen sus recursos; también actúa como un contrato de nivel de servicio (SLA) que especifica al proveedor de la funcionalidad y expone rutas o URLs de servicio a los usuarios de la API. En el contexto del desarrollo web, una API se define como un conjunto de especificaciones, por ejemplo mensajes de solicitud HTTP y la estructura de los mensajes de respuesta, normalmente en formato XML o JSON (JavaScript Object Notation). Las Web APIs han evolucionado de servicios web basados en SOAP y arquitecturas orientadas a servicios (SOA) hacia recursos web más directos en estilo REST. Los servicios de redes sociales y las Web APIs han permitido a la comunidad web compartir contenido y datos entre comunidades y plataformas. Con las APIs, el contenido creado en un lugar puede publicarse y actualizarse dinámicamente en múltiples lugares de la web. Por ejemplo, la REST API de Twitter permite a los desarrolladores acceder a los datos principales de Twitter, mientras que la Search API ofrece formas de interactuar con los datos de búsqueda y tendencias de Twitter. Muchas aplicaciones exponen endpoints de API. Algunos ejemplos de APIs son la [API de países](https://restcountries.eu/rest/v2/all) y la [API de razas de gatos](https://api.thecatapi.com/v1/breeds). En esta sección presentaremos una API RESTful que utiliza métodos de solicitud HTTP como GET, PUT, POST y DELETE para manejar datos. ## Construir una API Una API RESTful es una interfaz que usa solicitudes HTTP para GET, PUT, POST y DELETE datos. En secciones anteriores aprendimos Python, Flask y MongoDB. Aprovecharemos ese conocimiento para desarrollar una API RESTful usando Python, Flask y la base de datos MongoDB. Toda aplicación con operaciones CRUD (Crear, Leer, Actualizar, Eliminar) suele exponer una API para crear datos en la base, obtener datos, actualizarlos o borrarlos. Para construir una API es útil entender el protocolo HTTP y el ciclo de solicitud-respuesta HTTP. ## HTTP (Protocolo de transferencia de hipertexto) HTTP es el protocolo de comunicación establecido entre cliente y servidor. En este caso, el cliente es el navegador y el servidor es el lugar desde donde obtienes los datos. HTTP es un protocolo de red utilizado para transferir recursos en la web, como archivos HTML, imágenes, resultados de consultas, scripts u otros tipos de archivos. El navegador actúa como cliente HTTP porque envía solicitudes al servidor HTTP (servidor web), y el servidor responde al cliente. ## Estructura de HTTP HTTP utiliza un modelo cliente-servidor. El cliente HTTP abre una conexión y envía un mensaje de solicitud al servidor HTTP; el servidor HTTP devuelve un mensaje de respuesta, es decir, el recurso solicitado. Cuando el ciclo solicitud-respuesta termina, el servidor cierra la conexión. ![Ciclo de solicitud-respuesta HTTP](../images/http_request_response_cycle.png) Los formatos de los mensajes de solicitud y respuesta son similares. Ambos mensajes contienen: - Una línea inicial - Cero o más líneas de cabecera - Una línea en blanco (es decir, un CRLF por separado) - Un cuerpo de mensaje opcional (por ejemplo, un archivo, datos de formulario o la salida de una consulta) Navega por este sitio para ver un ejemplo de mensaje de solicitud y respuesta: https://thirtydaysofpython-v1-final.herokuapp.com/. Este sitio está desplegado en un dyno gratuito de Heroku y puede no estar disponible en algunos meses debido al alto tráfico. Apoyar este proyecto ayuda a mantener el servidor activo. ![Cabeceras de solicitud y respuesta](../images/request_response_header.png) ## Línea inicial de solicitud (línea de estado) La línea inicial de la solicitud difiere de la de la respuesta. La línea de solicitud tiene tres partes separadas por espacios: - El nombre del método (GET, POST, HEAD) - La ruta del recurso solicitado - La versión HTTP utilizada. Por ejemplo: GET / HTTP/1.1 GET es el método HTTP más común, usado para obtener o leer recursos, mientras que POST es un método común para crear recursos. ### Línea inicial de respuesta (línea de estado) La línea inicial de la respuesta, llamada línea de estado, también tiene tres partes separadas por espacios: - La versión HTTP - El código de estado de la respuesta, que indica el resultado de la solicitud, junto con una razón que describe dicho código. Ejemplos de líneas de estado: HTTP/1.0 200 OK o HTTP/1.0 404 Not Found **Nota:** Los códigos de estado más comunes son: 200 OK: la solicitud fue exitosa y el recurso generado (por ejemplo un archivo o la salida de un script) se devuelve en el cuerpo del mensaje. 500 Error del servidor La lista completa de códigos de estado HTTP puede encontrarse [aquí](https://httpstatuses.com/). También puedes verla [aquí](https://httpstatusdogs.com/). ### Campos de cabecera Como se observa en la captura anterior, las líneas de cabecera proporcionan información sobre la solicitud o la respuesta, o sobre el objeto enviado en el cuerpo del mensaje. ```sh GET / HTTP/1.1 Host: thirtydaysofpython-v1-final.herokuapp.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 Sec-Fetch-User: ?1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: navigate Referer: https://thirtydaysofpython-v1-final.herokuapp.com/post Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.9,fi-FI;q=0.8,fi;q=0.7,en-CA;q=0.6,en-US;q=0.5,fr;q=0.4 ``` ### Cuerpo del mensaje Un mensaje HTTP puede llevar un cuerpo después de las cabeceras. En una respuesta, este es el lugar donde el recurso solicitado se devuelve al cliente (el uso más común del cuerpo). Si hay un error, puede contener texto explicativo. En una solicitud, es el lugar donde se envían los datos introducidos por el usuario o los archivos subidos al servidor. Si un mensaje HTTP contiene un cuerpo, normalmente hay cabeceras que describen ese cuerpo, en particular: Content-Type: indica el tipo MIME de los datos en el cuerpo (text/html, application/json, text/plain, text/css, image/gif). Content-Length: indica el número de bytes en el cuerpo del mensaje. ### Métodos de solicitud GET, POST, PUT y DELETE son los métodos HTTP que usaremos para implementar la API y las operaciones CRUD. 1. GET: el método GET se usa para recuperar y obtener información desde el servidor dado un URI. Las solicitudes GET deben únicamente recuperar datos y no producir otros efectos. 2. POST: las solicitudes POST se usan para crear datos y enviar datos al servidor, por ejemplo al crear una nueva entrada con un formulario HTML o subir archivos. 3. PUT: reemplaza la representación actual completa del recurso objetivo con la carga enviada; lo usamos para modificar o actualizar datos. 4. DELETE: elimina datos. ## 💻 Ejercicio: Día 28 1. Lee recursos sobre APIs y HTTP 🎉 ¡Felicidades! 🎉 [<< Día 27](./27_python_with_mongodb_sp.md) | [Día 29 >>](./29_building_API_sp.md) ================================================ FILE: Spanish/29_building_API_sp.md ================================================ # Reto de 30 días de Python: Día 29 - Construyendo una API - [Día 29](#día-29) - [Construyendo una API](#construyendo-una-api) - [Estructura de la API](#estructura-de-la-api) - [Obtener datos con GET](#obtener-datos-con-get) - [Obtener un documento por ID](#obtener-un-documento-por-id) - [Crear datos con POST](#crear-datos-con-post) - [Actualizar con PUT](#actualizar-con-put) - [Eliminar documentos con DELETE](#eliminar-documentos-con-delete) - [💻 Ejercicio: Día 29](#-ejercicio-día-29) ## Día 29 ## Construyendo una API En esta sección presentaremos una API RESTful que utiliza métodos HTTP como GET, PUT, POST y DELETE para manejar datos. Una API RESTful es una interfaz de programación de aplicaciones (API) que usa solicitudes HTTP para GET, PUT, POST y DELETE datos. En secciones anteriores aprendimos Python, Flask y MongoDB. Aprovecharemos ese conocimiento para desarrollar una API RESTful usando Python, Flask y MongoDB. Toda aplicación con operaciones CRUD (Crear, Leer, Actualizar, Eliminar) suele exponer una API para crear datos en la base, obtener datos, actualizarlos o borrarlos. Los navegadores solo manejan solicitudes GET. Por eso necesitamos una herramienta que nos permita manejar todos los métodos (GET, POST, PUT, DELETE). Ejemplos de APIs: - API de países: https://restcountries.eu/rest/v2/all - API de razas de gatos: https://api.thecatapi.com/v1/breeds [Postman](https://www.getpostman.com/) es una herramienta muy popular en el desarrollo de APIs. Si quieres seguir esta sección, descarga [Postman](https://www.getpostman.com/). Una alternativa a Postman es [Insomnia](https://insomnia.rest/download). ![Postman](../images/postman.png) ### Estructura de la API Un endpoint de API es una URL que ayuda a recuperar, crear, actualizar o eliminar un recurso. La estructura suele ser: Ejemplo de endpoint: https://api.twitter.com/1.1/lists/members.json Este endpoint devuelve los miembros de una lista específica. Las listas privadas muestran miembros solo si el usuario autenticado posee la lista. El nombre de la empresa va seguido de la versión y del propósito de la API. Métodos: Métodos HTTP: método y URL La API usa los siguientes métodos HTTP para operar sobre objetos: ```sh GET para recuperar objetos POST para crear objetos y operaciones relacionadas PUT para actualizar objetos DELETE para eliminar objetos ``` Construiremos una API para recopilar información sobre estudiantes de 30DaysOfPython. Recogemos nombre, país, ciudad, año de nacimiento, habilidades y biografía. Para implementar esta API utilizaremos: - Postman - Python - Flask - MongoDB ### Obtener datos con GET En este paso usaremos datos ficticios y los devolveremos como JSON. Para retornarlos como JSON usaremos el módulo json y Response. ```py # importar flask from flask import Flask, Response import json app = Flask(__name__) @app.route('/api/v1.0/students', methods = ['GET']) def students (): student_list = [ { 'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'skills':['HTML', 'CSS','JavaScript','Python'] }, { 'name':'David', 'country':'UK', 'city':'London', 'skills':['Python','MongoDB'] }, { 'name':'John', 'country':'Sweden', 'city':'Stockholm', 'skills':['Java','C#'] } ] return Response(json.dumps(student_list), mimetype='application/json') if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Si solicitas http://localhost:5000/api/v1.0/students en el navegador obtendrás: ![GET en navegador](../images/get_on_browser.png) Si solicitas la misma URL en Postman obtendrás: ![GET en Postman](../images/get_on_postman.png) En lugar de datos ficticios, conectaremos la aplicación Flask a MongoDB y obtendremos datos desde la base. ```py # importar flask from flask import Flask, Response import json import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' #Nota: nunca incluyas credenciales reales en el código. client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Al conectar Flask con MongoDB podemos obtener la colección students de la base thirty_days_of_python: ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8c" }, "name": "David", "country": "UK", "city": "London", "age": 34 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8e" }, "name": "Sami", "country": "Finland", "city": "Helsinki", "age": 25 } ] ``` ### Obtener un documento por ID Podemos acceder a un documento individual por su ID. Por ejemplo, accedamos a Asabeneh: http://localhost:5000/api/v1.0/students/5df68a21f106fe2d315bbc8b ```py # importar flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' #Nota: nunca incluyas credenciales reales en el código. client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Respuesta de ejemplo: ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 } ] ``` ### Crear datos con POST Usamos el método POST para crear datos. ```py # importar flask from flask import Flask, Response, Request import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' #Nota: nunca incluyas credenciales reales en el código. client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return ; def update_student (id): if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Actualizar con PUT ```py # importar flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' #Nota: nunca incluyas credenciales reales en el código. client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # este decorador crea la ruta para actualizar def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, {"$set": student}) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return def update_student (id): if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Eliminar documentos con DELETE ```py # importar flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' #Nota: nunca incluyas credenciales reales en el código. client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # acceder a la base de datos @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # este decorador crea la ruta para actualizar def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, {"$set": student}) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return ; @app.route('/api/v1.0/students/', methods = ['DELETE']) def delete_student (id): db.students.delete_one({"_id":ObjectId(id)}) return if __name__ == '__main__': # usado en despliegue # para que funcione en producción y desarrollo port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ## 💻 Ejercicio: Día 29 1. Implementa los ejemplos anteriores y desarrolla [esta API](https://thirtydayofpython-api.herokuapp.com/) 🎉 ¡Felicidades! 🎉 [<< Día 28](./28_API_sp.md) | [Día 30 >>](./30_conclusions_sp.md) ================================================ FILE: Spanish/30_conclusions_sp.md ================================================ # Reto de 30 días de Python: Día 30 - Conclusiones - [Día 30](#día-30) - [Resumen](#resumen) - [Testimonios](#testimonios) # Día 30 ## Resumen Al preparar este material aprendí mucho y ustedes me motivaron a hacer más. Felicidades por llegar hasta aquí. Si has completado todos los ejercicios y proyectos, ahora tienes la capacidad de avanzar en análisis de datos, ciencia de datos, aprendizaje automático o desarrollo web. [Apoya al autor para más material educativo](https://www.paypal.com/paypalme/asabeneh). ## Testimonios Ahora es el momento de compartir tus pensamientos sobre el autor y el reto de 30 días de Python. Puedes dejar tu testimonio en este [enlace](https://www.asabeneh.com/testimonials). Enviar comentarios/retroalimentación: http://thirtydayofpython-api.herokuapp.com/feedback 🎉 ¡Felicidades! 🎉 [<< Día 29](./29_building_API_sp.md) ================================================ FILE: Spanish/README_sp.md ================================================ # 🐍 30 Días de Python | # Día | Tema | | ------ | :--------------------------------------------------------------------------------------: | | 01 | [Introducción](./readme_sp.md) | | 02 | [Variables y funciones integradas](./02_variables_builtin_functions_sp.md) | | 03 | [Operadores](./03_operators_sp.md) | | 04 | [Cadenas](./04_strings_sp.md) | | 05 | [Listas](./05_lists_sp.md) | | 06 | [Tuplas](./06_tuples_sp.md) | | 07 | [Conjuntos](./07_sets_sp.md) | | 08 | [Diccionarios](./08_dictionaries_sp.md) | | 09 | [Condicionales](./09_conditionals_sp.md) | | 10 | [Bucles](./10_loops_sp.md) | | 11 | [Funciones](./11_functions_sp.md) | | 12 | [Módulos](./12_modules_sp.md) | | 13 | [Comprensión de listas](./13_list_comprehension_sp.md) | | 14 | [Funciones de orden superior](./14_higher_order_functions_sp.md) | | 15 | [Errores de tipo](./15_python_type_errors_sp.md) | | 16 | [Fechas y horas en Python](./16_python_datetime_sp.md) | | 17 | [Manejo de excepciones](./17_exception_handling_sp.md) | | 18 | [Expresiones regulares](./18_regular_expressions_sp.md) | | 19 | [Manejo de archivos](./19_file_handling_sp.md) | | 20 | [Gestor de paquetes](./20_python_package_manager_sp.md) | | 21 | [Clases y objetos](./21_classes_and_objects_sp.md) | | 22 | [Web scraping](./22_web_scraping_sp.md) | | 23 | [Entornos virtuales](./23_virtual_environment_sp.md) | | 24 | [Estadística](./24_statistics_sp.md) | | 25 | [Pandas](./25_pandas_sp.md) | | 26 | [Python en la web](./26_python_web_sp.md) | | 27 | [Python y MongoDB](./27_python_with_mongodb_sp.md) | | 28 | [API](./28_API_sp.md) | | 29 | [Construir API](./29_building_API_sp.md) | | 30 | [Conclusiones](./30_conclusions_sp.md) | 🧡🧡🧡 Feliz codificación 🧡🧡🧡
Ayuda al autor a crear más material educativo
Paypal Logo

30 Días de Python: Día 1 - Introducción

Twitter Follow Autor: Asabeneh Yetayeh
Segunda edición: julio de 2021
[Ir al Día 2 >>](./02_variables_builtin_functions_sp.md) ![30DaysOfPython](.././images/30DaysOfPython_banner3@2x.png) - [🐍 30 Días de Python](#-30-días-de-python) - [📘 Día 1](#-día-1) - [¡Bienvenido!](#¡bienvenido!) - [Introducción](#introducción) - [¿Por qué elegir Python?](#¿por-qué-elegir-python?) - [Configuración del entorno](#configuración-del-entorno) - [Instalar Python](#instalar-python) - [Python Shell](#python-shell) - [Instalar Visual Studio Code](#instalar-visual-studio-code) - [Cómo usar Visual Studio Code](#cómo-usar-visual-studio-code) - [Fundamentos de Python](#fundamentos-de-python) - [Sintaxis de Python](#sintaxis-de-python) - [Indentación en Python](#indentación-en-python) - [Comentarios](#comentarios) - [Ejemplo: comentario de una sola línea](#ejemplo-comentario-de-una-sola-línea) - [Ejemplo: comentario multilínea (docstring)](#ejemplo-comentario-multilínea-docstring) - [Tipos de datos](#tipos-de-datos) - [Números](#números) - [Cadenas](#cadenas) - [Booleanos](#booleanos) - [Listas](#listas) - [Diccionarios](#diccionarios) - [Tuplas](#tuplas) - [Conjuntos](#conjuntos) - [Comprobar tipos de datos](#comprobar-tipos-de-datos) - [Archivos Python](#archivos-python) - [💻 Ejercicios - Día 1](#-ejercicios---día-1) - [Ejercicios: Nivel 1](#ejercicios-nivel-1) - [Ejercicios: Nivel 2](#ejercicios-nivel-2) - [Ejercicios: Nivel 3](#ejercicios-nivel-3) # 📘 Día 1 ## ¡Bienvenido! **Felicidades** por decidir participar en el desafío de programación _30 Días de Python_. En este reto aprenderás todo lo necesario para convertirte en programador Python y la mayoría de los conceptos de programación. Al finalizar el reto recibirás un certificado del desafío _30DaysOfPython_. Si quieres participar activamente, únete al grupo de Telegram [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython). ## Introducción Python es un lenguaje de programación de alto nivel, de propósito general. Es un lenguaje de código abierto, interpretado y orientado a objetos. Python fue creado por el programador holandés Guido van Rossum. El nombre del lenguaje proviene del show cómico británico _Monty Python's Flying Circus_. La primera versión se lanzó el 20 de febrero de 1991. Este desafío de 30 días te ayudará a aprender progresivamente la versión más reciente de Python, Python 3. Cada día cubre un tema diferente con explicaciones claras, ejemplos del mundo real, y muchos ejercicios y proyectos prácticos. El reto es adecuado para principiantes y profesionales que quieran aprender Python. Completar el reto puede tomar de 30 a 100 días; los miembros activos del grupo de Telegram tienen más probabilidades de terminarlo. Este reto fue escrito inicialmente en inglés sencillo, y luego traducido al chino. El reto es motivador, accesible y desafiante. Requiere dedicación para completarlo. Si aprendes mejor con vídeos, visita el canal Washera en YouTube: Washera YouTube channel. Puedes empezar por el video [Python for absolute beginners](https://youtu.be/OCCWZheOesI). Suscríbete, deja tus preguntas en los comentarios y sé proactivo; el autor te podrá notar. El autor aprecia tus comentarios, que compartas el contenido y la retroalimentación sobre el reto 30DaysOfPython. Puedes dejar feedback aquí: [link](https://www.asabeneh.com/testimonials) ## ¿Por qué elegir Python? Python es un lenguaje con sintaxis cercana al lenguaje humano, sencillo y fácil de aprender y usar. Python es usado en muchas industrias y empresas (incluido Google). Se usa para desarrollar aplicaciones web, de escritorio, administración de sistemas y librerías de aprendizaje automático. Python está ampliamente adoptado en la comunidad de ciencia de datos y machine learning. Si esto no te convence, ¡es hora de empezar! ## Configuración del entorno ### Instalar Python Para ejecutar scripts escritos en Python necesitas instalar Python. Visita la página de descargas de Python: [https://www.python.org/](https://www.python.org/). Si usas Windows haz clic en el botón marcado en la imagen. [![Instalar en Windows](.././images/installing_on_windows.png)](https://www.python.org/) Si usas macOS haz clic en el botón marcado en la imagen. [![Instalar en macOS](.././images/installing_on_macOS.png)](https://www.python.org/) Para comprobar si Python está instalado, abre la terminal y ejecuta: ```shell python --version ``` ![Versión de Python](../images/python_versio.png) En mi terminal aparece Python 3.7.5. Tu versión puede variar, pero debe ser 3.6 o superior. Si ves la versión, Python está instalado. Continúa al siguiente apartado. ### Python Shell Python es un lenguaje interpretado, no necesita compilación. Se ejecuta línea por línea. Python incluye el Python Shell (intérprete interactivo), también llamado REPL (Read Eval Print Loop). Se usa para ejecutar comandos Python individuales y ver resultados al instante. El Python Shell espera código Python. Al escribir código lo interpreta y muestra el resultado. Abre la terminal o el símbolo del sistema (cmd) y escribe: ```shell python ``` ![Python Scripting Shell](../images/opening_python_shell.png) El intérprete interactivo de Python estará abierto y mostrará el prompt >>> para que escribas comandos Python. Escribe tu primer script y pulsa Enter. Veamos un ejemplo en el Shell interactivo. ![Script Python en el shell](../images/adding_on_python_shell.png) Genial: escribiste tu primer script en el Shell interactivo. ¿Cómo salir del Shell? Para salir escribe **exit()** y pulsa Enter. ![Salir del shell de Python](../images/exit_from_shell.png) Ahora sabes cómo abrir y cerrar el intérprete interactivo. Si escribes código inválido, Python mostrará un error. Probemos un error intencional: ![Error de sintaxis inválida](../images/invalid_syntax_error.png) El error indica Syntax Error: Invalid Syntax. Usar x para multiplicar no es válido en Python; el operador correcto es el asterisco (*). El error señala exactamente lo que hay que corregir. El proceso de encontrar y corregir errores se llama depuración (debugging). Reemplazamos x por * y volvemos a ejecutar: ![Corrigiendo Error de sintaxis](../images/fixing_syntax_error.png) El error se corrige y el código produce el resultado esperado. Verás errores así a diario; aprender a depurar es esencial. Para depurar bien debes reconocer los tipos de errores: SyntaxError, IndexError, NameError, ModuleNotFoundError, KeyError, ImportError, AttributeError, TypeError, ValueError, ZeroDivisionError, etc. Los explicaremos más adelante. Practiquemos más en el Python Shell. Abre la terminal y escribe python. ![Python Scripting Shell](../images/opening_python_shell.png) Con el Shell abierto hagamos operaciones matemáticas básicas: suma, resta, multiplicación, división, módulo y potencia. Antes de programar, hagamos algunos cálculos: - 2 + 3 = 5 - 3 - 2 = 1 - 3 * 2 = 6 - 3 / 2 = 1.5 - 3 ** 2 = 9 En Python también tenemos: - 3 % 2 = 1 => resto de la división - 3 // 2 = 1 => división entera (sin resto) Conviértelo a código Python en el Shell. Primero escribe un comentario. Un comentario es texto ignorado por Python. Sirve para documentar y mejorar la legibilidad. En Python los comentarios empiezan con #. Así se escribe un comentario en Python: ```python # Los comentarios comienzan con una almohadilla # Este es un comentario en Python porque empieza con (#) ``` ![Operaciones en el shell de Python](../images/maths_on_python_shell.png) Antes de continuar, practica más: cierra el Shell con _exit()_ y vuelve a abrirlo; escribe texto en el Shell: ![Escribir cadena en el shell de Python](./images/writing_string_on_shell.png) ### Instalar Visual Studio Code El Python Shell está bien para probar fragmentos, pero para proyectos más grandes se usan editores de código. En este reto usaremos Visual Studio Code. VS Code es un editor de texto de código abierto muy popular. Recomiendo instalar Visual Studio Code, aunque puedes usar otro editor si lo prefieres. [![Visual Studio Code](../images/vscode.png)](https://code.visualstudio.com/) Si ya tienes Visual Studio Code, veamos cómo usarlo. Si prefieres vídeos, mira el tutorial de instalación y configuración de VS Code para Python: https://www.youtube.com/watch?v=bn7Cx4z-vSo #### Cómo usar Visual Studio Code Abre Visual Studio Code haciendo doble clic en su icono. Aparecerá la interfaz. Interactúa con los iconos marcados en la imagen. ![Visual Studio Code](../images/vscode_ui.png) Crea en el escritorio una carpeta llamada 30DaysOfPython. Ábrela con Visual Studio Code. ![Abrir proyecto en Visual Studio](../images/how_to_open_project_on_vscode.png) ![Abrir un proyecto](../images/opening_project.png) Dentro del proyecto verás accesos para crear archivos y carpetas. Yo creé el primer archivo helloworld.py; tú puedes hacer lo mismo. ![Crear archivo Python](../images/helloworld.png) Cuando termines de programar puedes cerrar el proyecto desde el editor: ![Cerrar proyecto abierto](../images/closing_opened_project.png) ¡Enhorabuena! El entorno está listo. ¡Manos a la obra! ## Fundamentos de Python ### Sintaxis de Python Los scripts Python se pueden escribir en el Shell interactivo o en un editor. Los archivos Python usan la extensión .py. ### Indentación en Python La indentación son espacios en blanco en el código. En muchos lenguajes se usa para mejorar legibilidad; en Python se usa para definir bloques de código. En otros lenguajes se usan llaves. Un error común en Python es el error de indentación. ![Error de indentación](../images/indentation.png) ### Comentarios Los comentarios son importantes para la legibilidad. Python no ejecuta el texto dentro de comentarios. Cualquier texto que comience con # en Python es un comentario. # Ejemplo: comentario de una sola línea ```shell # Este es el primer comentario # Este es el segundo comentario # Python se está apoderando del mundo ``` # Ejemplo: comentario multilínea (docstring) Se pueden usar comillas triples para comentarios multilínea si no se asignan a una variable. ```shell """Este es un comentario multilínea Los comentarios multilínea ocupan varias líneas. Python se está apoderando del mundo """ ``` ### Tipos de datos Python tiene varios tipos de datos. Empecemos por los más comunes. Veremos otros tipos más en detalle en secciones posteriores. A continuación un resumen para familiarizarte. #### Números - Enteros: ... -3, -2, -1, 0, 1, 2, 3 ... - Flotantes: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complejos: 1 + j, 2 + 4j #### Cadenas Texto entre comillas simples o dobles; para multilínea se usan comillas triples. **Ejemplos:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Booleanos True o False. Deben estar en mayúscula. **Ejemplo:** ```python True # ¿La luz está encendida? Si sí, el valor es True False # ¿La luz está encendida? Si no, el valor es False ``` #### Listas Lista ordenada que puede contener distintos tipos, similar a un array en JavaScript. **Ejemplos:** ```py [0, 1, 2, 3, 4, 5] # todos números ['Banana', 'Orange', 'Mango', 'Avocado'] # todos cadenas ['Finland','Estonia', 'Sweden','Norway'] # todos cadenas (países) ['Banana', 10, False, 9.81] # mezcla de tipos ``` #### Diccionarios Colección no ordenada de pares clave:valor. **Ejemplo:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tuplas Colección ordenada e inmutable. **Ejemplo:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # nombres ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # planetas ``` #### Conjuntos Colección no ordenada que almacena elementos únicos (sin duplicados). **Ejemplos:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # el orden en un set no importa ``` Detallaremos cada tipo de dato en secciones posteriores. ### Comprobar tipos de datos Usa la función built-in **type** para comprobar el tipo de una variable. En la imagen puedes ver ejemplos: ![Comprobando tipos de datos](../images/checking_data_types.png) ### Archivos Python Abre tu carpeta de proyecto 30DaysOfPython (créala si no existe). Dentro crea helloworld.py. Repite lo que hicimos en el Shell pero usando print() para ver resultados en consola desde un archivo. En el intérprete se imprime sin print, pero en VS Code debes usar la función _print()_. Ejemplo de uso: _print('argumento1', 'argumento2')_. **Ejemplo:** archivo helloworld.py ```py # Día 1 - Desafío 30DaysOfPython print(2 + 3) # Suma (+) print(3 - 1) # Resta (-) print(2 * 3) # Multiplicación (*) print(3 / 2) # División (/) print(3 ** 2) # Potencia (**) print(3 % 2) # Módulo (%) print(3 // 2) # División entera (//) # Comprobar tipos de datos print(type(10)) # entero print(type(3.14)) # flotante print(type(1 + 3j)) # complejo print(type('Asabeneh')) # cadena print(type([1, 2, 3])) # lista print(type({'name':'Asabeneh'})) # diccionario print(type({9.8, 3.14, 2.7})) # conjunto print(type((9.8, 3.14, 2.7))) # tupla ``` Para ejecutar el archivo: en VS Code usa el botón verde o en la terminal escribe _python helloworld.py_. ![Ejecutando script Python](../images/running_python_script.png) Genial. Completaste el Día 1. Practica con los ejercicios siguientes. ## 💻 Ejercicios - Día 1 ### Ejercicios: Nivel 1 1. Comprueba la versión de Python que usas. 2. Abre el Python Shell e intenta con los operandos 3 y 4: - Suma (+) - Resta (-) - Multiplicación (*) - Módulo (%) - División (/) - Potencia (**) - División entera (//) 3. En el Python Shell escribe las siguientes cadenas: - Tu nombre - Tu apellido - Tu país - Estoy disfrutando 30 días de Python 4. Comprueba el tipo de los siguientes datos: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Tu nombre - Tu apellido - Tu país ### Ejercicios: Nivel 2 1. Crea en la carpeta 30DaysOfPython una carpeta llamada day_1. Dentro crea helloworld.py y repite las preguntas 1, 2, 3 y 4. Recuerda usar _print()_ en archivos. Navega a la carpeta donde guardaste el archivo y ejecútalo. ### Ejercicios: Nivel 3 1. Escribe ejemplos para distintos tipos de datos en Python: números (enteros, flotantes, complejos), cadenas, booleanos, listas, tuplas, conjuntos y diccionarios. 2. Calcula la distancia euclídea entre (2, 3) y (10, 8): [Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance). 🎉 ¡Felicidades! 🎉 [Ir al Día 2 >>](./02_variables_builtin_functions_sp.md) ================================================ FILE: Spanish/readme.md ================================================ # 🐍 30 Days Of Python |# Day | Topics | |------|:---------------------------------------------------------:| | 01 | [Introducción](./readme.md)| | 02 | [Variables, funciones integradas](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md)| | 03 | [Operadores](./03_Day_Operators/03_operators.md)| | 04 | [Strings](./04_Day_Strings/04_strings.md)| | 05 | [Lists](./05_Day_Lists/05_lists.md)| | 06 | [Tuplas](./06_Day_Tuples/06_tuples.md)| | 07 | [Sets](./07_Day_Sets/07_sets.md)| | 08 | [Diccionarios](./08_Day_Dictionaries/08_dictionaries.md)| | 09 | [Condicionales](./09_Day_Conditionals/09_conditionals.md)| | 10 | [Bucles](./10_Day_Loops/10_loops.md)| | 11 | [Funciones](./11_Day_Functions/11_functions.md)| | 12 | [Módulos](./12_Day_Modules/12_modules.md)| | 13 | [Lista de comprensión](./13_Day_List_comprehension/13_list_comprehension.md)| | 14 | [Funciones de orden superior](./14_Day_Higher_order_functions/14_higher_order_functions.md)| | 15 | [Errores de tipo Python](./15_Day_Python_type_errors/15_python_type_errors.md)| | 16 | [Fecha y hora de Python](./16_Day_Python_date_time/16_python_datetime.md) | | 17 | [Manejo de excepciones](./17_Day_Exception_handling/17_exception_handling.md)| | 18 | [Expresiones regulares](./18_Day_Regular_expressions/18_regular_expressions.md)| | 19 | [Manejo de archivos](./19_Day_File_handling/19_file_handling.md)| | 20 | [Administrador de paquetes de Python](./20_Day_Python_package_manager/20_python_package_manager.md)| | 21 | [Clases y Objetos](./21_Day_Classes_and_objects/21_classes_and_objects.md)| | 22 | [Raspado web](./22_Day_Web_scraping/22_web_scraping.md)| | 23 | [Ambiente virtual](./23_Day_Virtual_environment/23_virtual_environment.md)| | 24 | [Estadísticas](./24_Day_Statistics/24_statistics.md)| | 25 | [Pandas](./25_Day_Pandas/25_pandas.md)| | 26 | [Python web](./26_Day_Python_web/26_python_web.md)| | 27 | [Python con MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md)| | 28 | [API](./28_Day_API/28_API.md)| | 29 | [Building API](./29_Day_Building_API/29_building_API.md)| | 30 | [Conclusiones](./30_Day_Conclusions/30_conclusions.md)| 🧡🧡🧡 FELIZ CODIGO 🧡🧡🧡
Support the author to create more educational materials
Paypal Logo

30 días de Python: Día 1 - Introducción

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[Dia 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ![30DaysOfPython](./../images/30DaysOfPython_banner3@2x.png) - [🐍 30 Days Of Python](#-30-days-of-python) - [📘 Day 1](#-day-1) - [Welcome](#welcome) - [Introduction](#introduction) - [Why Python ?](#why-python-) - [Environment Setup](#environment-setup) - [Installing Python](#installing-python) - [Python Shell](#python-shell) - [Installing Visual Studio Code](#installing-visual-studio-code) - [How to use visual studio code](#how-to-use-visual-studio-code) - [Basic Python](#basic-python) - [Python Syntax](#python-syntax) - [Python Indentation](#python-indentation) - [Comments](#comments) - [Data types](#data-types) - [Number](#number) - [String](#string) - [Booleans](#booleans) - [List](#list) - [Dictionary](#dictionary) - [Tuple](#tuple) - [Set](#set) - [Checking Data types](#checking-data-types) - [Python File](#python-file) - [💻 Exercises - Day 1](#-exercises---day-1) - [Exercise: Level 1](#exercise-level-1) - [Exercise: Level 2](#exercise-level-2) - [Exercise: Level 3](#exercise-level-3) # 📘 Day 1 ## Welcome **Congratulations** for deciding to participate in a _30 days of Python_ programming challenge . In this challenge you will learn everything you need to be a python programmer and the whole concept of programming. In the end of the challenge you will get a _30DaysOfPython_ programming challenge certificate. If you would like to actively engage in the challenge, you may join the [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython) telegram group. ## Introduction Python is a high-level programming language for general-purpose programming. It is an open source, interpreted, objected-oriented programming language. Python was created by a Dutch programmer, Guido van Rossum. The name of Python programming language was derived from a British sketch comedy series, _Monty Python's Flying Circus_. The first version was released on February 20, 1991. This 30 days of Python challenge will help you learn the latest version of Python, Python 3 step by step. The topics are broken down into 30 days, where each day contains several topics with easy-to-understand explanations, real-world examples, many hands on exercises and projects. This challenge is designed for beginners and professionals who want to learn python programming language. It may take 30 to 100 days to complete the challenge, people who actively participate on the telegram group have a high probability of completing the challenge. This challenge is easy to read, written in conversational English, engaging, motivating and at the same time, it is very demanding. You need to allocate much time to finish this challenge. If you are a visual learner, you may get the video lesson on Washera YouTube channel. You may start from [Python for Absolute Beginners video](https://youtu.be/OCCWZheOesI). Subscribe the channel, comment and ask questions on YouTube vidoes and be proactive, the author will eventually notice you. The author likes to hear your opinion about the challenge, share the author by expressing your thoughts about the 30DaysOfPython challenge. You can leave your testimonial on this [link](https://testimonial-vdzd.onrender.com/) ## Why Python ? It is a programming language which is very close to human language and because of that it is easy to learn and use. Python is used by various industries and companies (including Google). It has been used to develop web applications, desktop applications, system adminstration, and machine learning libraries. Python is highly embraced language in the data science and machine learning community. I hope this is enough to convince you to start learning Python. Python is eating the world and you are killing it before it eats you. ## Environment Setup ### Installing Python To run a python script you need to install python. Let's [download](https://www.python.org/) python. If your are a windows user. Click the button encircled in red. [![installing on Windows](./images/installing_on_windows.png)](https://www.python.org/) If you are a macOS user. Click the button encircled in red. [![installing on Windows](./images/installing_on_macOS.png)](https://www.python.org/) To check if python is installed write the following command on your device terminal. ```shell python --version ``` ![Python Version](./images/python_versio.png) As you can see from the terminal, I am using _Python 3.7.5_ version at the moment. Your version of Python might be different from mine by but it should be 3.6 or above. If you mange to see the python version, well done. Python has been installed on your machine. Continue to the next section. ### Python Shell Python is an interpreted scripting language, so it does not need to be compiled. It means it executes the code line by line. Python comes with a _Python Shell (Python Interactive Shell)_. It is used to execute a single python command and get the result. Python Shell waits for the Python code from the user. When you enter the code, it interprets the code and shows the result in the next line. Open your terminal or command prompt(cmd) and write: ```shell python ``` ![Python Scripting Shell](./images/opening_python_shell.png) The Python interactive shell is opened and it is waiting for you to write Python code(Python script). You will write your Python script next to this symbol >>> and then click Enter. Let us write our very first script on the Python scripting shell. ![Python script on Python shell](./images/adding_on_python_shell.png) Well done, you wrote your first Python script on Python interactive shell. How do we close the Python interactive shell ? To close the shell, next to this symbol >> write **exit()** command and press Enter. ![Exit from python shell](./images/exit_from_shell.png) Now, you know how to open the Python interactive shell and how to exit from it. Python will give you results if you write scripts that Python understands, if not it returns errors. Let's make a deliberate mistake and see what Python will return. ![Invalid Syntax Error](./images/invalid_syntax_error.png) As you can see from the returned error, Python is so clever that it knows the mistake we made and which was _Syntax Error: invalid syntax_. Using x as multiplication in Python is a syntax error because (x) is not a valid syntax in Python. Instead of (**x**) we use asterisk (*) for multiplication. The returned error clearly shows what to fix. The process of identifying and removing errors from a program is called _debugging_. Let us debug it by putting * in place of **x**. ![Fixing Syntax Error](./images/fixing_syntax_error.png) Our bug was fixed, the code ran and we got a result we were expecting. As a programmer you will see such kind of errors on daily basis. It is good to know how to debug. To be good at debugging you should understand what kind of errors you are facing. Some of the Python errors you may encounter are _SyntaxError_, _IndexError_, _NameError_, _ModuleNotFoundError_, _KeyError_, _ImportError_, _AttributeError_, _TypeError_, _ValueError_, _ZeroDivisionError_ etc. We will see more about different Python **_error types_** in later sections. Let us practice more how to use Python interactive shell. Go to your terminal or command prompt and write the word **python**. ![Python Scripting Shell](./images/opening_python_shell.png) The Python interactive shell is opened. Let us do some basic mathematical operations (addition, subtraction, multiplication, division, modulus, exponential). Let us do some maths first before we write any Python code: - 2 + 3 is 5 - 3 - 2 is 1 - 3 \* 2 is 6 - 3 / 2 is 1.5 - 3 ** 2 is the same as 3 * 3 In python we have the following additional operations: - 3 % 2 = 1 => which means finding the remainder - 3 // 2 = 1 => which means removing the remainder Let us change the above mathematical expressions to Python code. The Python shell has been opened and let us write a comment at the very beginning of the shell. A _comment_ is a part of the code which is not executed by python. So we can leave some text in our code to make our code more readable. Python does not run the comment part. A comment in python starts with hash(#) symbol. This is how you write a comment in python ```shell # comment starts with hash # this is a python comment, because it starts with a (#) symbol ``` ![Maths on python shell](./images/maths_on_python_shell.png) Before we move on to the next section, let us practice more on the Python interactive shell. Close the opened shell by writing _exit()_ on the shell and open it again and let us practice how to write text on the Python shell. ![Writing String on python shell](./images/writing_string_on_shell.png) ### Installing Visual Studio Code The Python interactive shell is good to try and test small script codes but it will not be for a big project. In real work environment, developers use different code editors to write codes. In this 30 days of Python programming challenge we will use visual studio code. Visual studio code is a very popular open source text editor. I am a fan of vscode and I would recommend to [download](https://code.visualstudio.com/) visual studio code, but if you are in favor of other editors, feel free to follow with what you have. [![Visual Studio Code](./images/vscode.png)](https://code.visualstudio.com/) If you installed visual studio code, let us see how to use it. If you prefer a video, you can follow this Visual Studio Code for Python [Video tutorial](https://www.youtube.com/watch?v=bn7Cx4z-vSo) #### How to use visual studio code Open the visual studio code by double clicking the visual studio icon. When you open it you will get this kind of interface. Try to interact with the labeled icons. ![Visual studio Code](./images/vscode_ui.png) Create a folder named 30DaysOfPython on your desktop. Then open it using visual studio code. ![Opening Project on Visual studio](./images/how_to_open_project_on_vscode.png) ![Opening a project](./images/opening_project.png) After opening it you will see shortcuts for creating files and folders inside of 30DaysOfPython project's directory. As you can see below, I have created the very first file, helloworld.py. You can do the same. ![Creating a python file](./images/helloworld.png) After a long day of coding, you want to close your code editor, right? This is how you will close the opened project. ![Closing project](./images/closing_opened_project.png) Congratulations, you have finished setting up the development environment. Let us start coding. ## Basic Python ### Python Syntax A Python script can be written in Python interactive shell or in the code editor. A Python file has an extension .py. ### Python Indentation An indentation is a white space in a text. Indentation in many languages is used to increase code readability, however Python uses indentation to create block of codes. In other programming languages curly brackets are used to create blocks of codes instead of indentation. One of the common bugs when writing python code is wrong indentation. ![Indentation Error](./images/indentation.png) ### Comments Comments are very important to make the code more readable and to leave remarks in our code. Python does not run comment parts of our code. Any text starting with hash(#) in Python is a comment. **Example: Single Line Comment** ```shell # This is the first comment # This is the second comment # Python is eating the world ``` **Example: Multiline Comment** Triple quote can be used for multiline comment if it is not assigned to a variable ```shell """This is multiline comment multiline comment takes multiple lines. python is eating the world """ ``` ### Data types In Python there are several types of data types. Let us get started with the most common ones. Different data types will be covered in detail in other sections. For the time being, let us just go through the different data types and get familiar with them. You do not have to have a clear understanding now. #### Number - Integer: Integer(negative, zero and positive) numbers Example: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: Decimal number Example ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex Example 1 + j, 2 + 4j #### String A collection of one or more characters under a single or double quote. If a string is more than one sentence then we use a triple quote. **Example:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Booleans A boolean data type is either a True or False value. T and F should be always uppercase. **Example:** ```python True # Is the light on? If it is on, then the value is True False # Is the light on? If it is off, then the value is False ``` #### List Python list is an ordered collection which allows to store different data type items. A list is similar to an array in JavaScript. **Example:** ```py [0, 1, 2, 3, 4, 5] # all are the same data types - a list of numbers ['Banana', 'Orange', 'Mango', 'Avocado'] # all the same data types - a list of strings (fruits) ['Finland','Estonia', 'Sweden','Norway'] # all the same data types - a list of strings (countries) ['Banana', 10, False, 9.81] # different data types in the list - string, integer, boolean and float ``` #### Dictionary A Python dictionary object is an unordered collection of data in a key value pair format. **Example:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tuple A tuple is an ordered collection of different data types like list but tuples can not be modified once they are created. They are immutable. **Example:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # Names ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # planets ``` #### Set A set is a collection of data types similar to list and tuple. Unlike list and tuple, set is not an ordered collection of items. Like in Mathematics, set in Python stores only unique items. In later sections, we will go in detail about each and every Python data type. **Example:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # order is not important in set ``` ### Checking Data types To check the data type of certain data/variable we use the **type** function. In the following terminal you will see different python data types: ![Checking Data types](./images/checking_data_types.png) ### Python File First open your project folder, 30DaysOfPython. If you don't have this folder, create a folder name called 30DaysOfPython. Inside this folder, create a file called helloworld.py. Now, let's do what we did on python interactive shell using visual studio code. The Python interactive shell was printing without using **print** but on visual studio code to see our result we should use a built in function _print(). The _print()_ built-in function takes one or more arguments as follows _print('arument1', 'argument2', 'argument3')_. See the examples below. **Example:** The file name is helloworld.py ```py # Day 1 - 30DaysOfPython Challenge print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex number print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name':'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Set print(type((9.8, 3.14, 2.7))) # Tuple ``` To run the python file check the image below. You can run the python file either by running the green button on Visual Studio Code or by typing _python helloworld.py_ in the terminal . ![Running python script](./images/running_python_script.png) 🌕 You are amazing. You have just completed day 1 challenge and you are on your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises - Day 1 ### Exercise: Level 1 1. Check the python version you are using 2. Open the python interactive shell and do the following operations. The operands are 3 and 4. - addition(+) - subtraction(-) - multiplication(\*) - modulus(%) - division(/) - exponential(\*\*) - floor division operator(//) 3. Write strings on the python interactive shell. The strings are the following: - Your name - Your family name - Your country - I am enjoying 30 days of python 4. Check the data types of the following data: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Your name - Your family name - Your country ### Exercise: Level 2 1. Create a folder named day_1 inside 30DaysOfPython folder. Inside day_1 folder, create a python file helloworld.py and repeat questions 1, 2, 3 and 4. Remember to use _print()_ when you are working on a python file. Navigate to the directory where you have saved your file, and run it. ### Exercise: Level 3 1. Write an example for different Python data types such as Number(Integer, Float, Complex), String, Boolean, List, Tuple, Set and Dictionary. 2. Find an [Euclidian distance](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) between (2, 3) and (10, 8) 🎉 CONGRATULATIONS ! 🎉 [Day 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ================================================ FILE: Ukrainian/readme.md ================================================ # 🐍 30 днів з Python | № дня | Теми | |-------|:-------------------------------------------------------------------------------------------------------:| | 01 | [Вступ](./readme.md) | | 02 | [Variables, Built-in Functions](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | | 03 | [Operators](../03_Day_Operators/03_operators.md) | | 04 | [Strings](../04_Day_Strings/04_strings.md) | | 05 | [Lists](../05_Day_Lists/05_lists.md) | | 06 | [Tuples](../06_Day_Tuples/06_tuples.md) | | 07 | [Sets](../07_Day_Sets/07_sets.md) | | 08 | [Dictionaries](../08_Day_Dictionaries/08_dictionaries.md) | | 09 | [Conditionals](../09_Day_Conditionals/09_conditionals.md) | | 10 | [Loops](../10_Day_Loops/10_loops.md) | | 11 | [Functions](../11_Day_Functions/11_functions.md) | | 12 | [Modules](../12_Day_Modules/12_modules.md) | | 13 | [List Comprehension](../13_Day_List_comprehension/13_list_comprehension.md) | | 14 | [Higher Order Functions](../14_Day_Higher_order_functions/14_higher_order_functions.md) | | 15 | [Python Type Errors](../15_Day_Python_type_errors/15_python_type_errors.md) | | 16 | [Python Date time](../16_Day_Python_date_time/16_python_datetime.md) | | 17 | [Exception Handling](../17_Day_Exception_handling/17_exception_handling.md) | | 18 | [Regular Expressions](../18_Day_Regular_expressions/18_regular_expressions.md) | | 19 | [File Handling](../19_Day_File_handling/19_file_handling.md) | | 20 | [Python Package Manager](../20_Day_Python_package_manager/20_python_package_manager.md) | | 21 | [Classes and Objects](../21_Day_Classes_and_objects/21_classes_and_objects.md) | | 22 | [Web Scraping](../22_Day_Web_scraping/22_web_scraping.md) | | 23 | [Virtual Environment](../23_Day_Virtual_environment/23_virtual_environment.md) | | 24 | [Statistics](../24_Day_Statistics/24_statistics.md) | | 25 | [Pandas](../25_Day_Pandas/25_pandas.md) | | 26 | [Python web](../26_Day_Python_web/26_python_web.md) | | 27 | [Python with MongoDB](../27_Day_Python_with_mongodb/27_python_with_mongodb.md) | | 28 | [API](../28_Day_API/28_API.md) | | 29 | [Building API](../29_Day_Building_API/29_building_API.md) | | 30 | [Conclusions](../30_Day_Conclusions/30_conclusions.md) | 🧡🧡🧡 ЩАСЛИВОГО ПРОГРАМУВАННЯ 🧡🧡🧡
Підтримайте автора, щобм він створював більше навчальних матеріалів
Paypal Logo

30 днів Python: День 1 - Вступ

Twitter Follow Автор: Asabeneh Yetayeh
Друге видання: Липень, 2021
[День 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ![30 днів з Python](../images/30DaysOfPython_banner3@2x.png) - [🐍 30 днів Python](#-30-days-of-python) - [📘 День 1](#-день-1) - [Ласкаво просимо](#ласкаво-просимо) - [Вступ](#вступ) - [Чому Python ?](#чому-python-) - [Налаштування середовища](#налаштування-середовища) - [Установлення Python](#установлення-python) - [Оболонка Python](#оболонка-python) - [Установлення Visual Studio Code](#установлення-visual-studio-code) - [Як використовувати Visual studio code](#як-використовувати-visual-studio-code) - [Початковий Python](#початковий-python) - [Синтаксис у Python](#синтаксис-у-python) - [Відступи у Python](#відступи-у-python) - [Коментарі](#коментарі) - [Типи даних](#типи-даних) - [Number (числовий)](#number--число-) - [String (рядок)](#string--рядок-) - [Booleans (логічний двійковий)](#booleans--логічний-тип-даних-) - [List (список)](#list--список-) - [Dictionary (словник)](#dictionary--словник-) - [Tuple (кортеж)](#tuple--кортеж-) - [Set (набір)](#set--набір-) - [Перевірка типів даних](#перевірка-типів-даних) - [Файл Python](#файл-python) - [💻 Вправи - День 1](#-вправи---день-1) - [Вправи: Рівень 1](#вправи--рівень-1) - [Вправи: Рівень 2](#вправи--рівень-2) - [Вправи: Рівень 3](#вправи--рівень-3) # 📘 День 1 ## Ласкаво просимо **Вітаємо** з прийняттям рішення про участь у 30-денному випробуванні з програмування на Python _(30DaysOfPython challenge). У цьому випробуванні ви дізнаєтеся все, що вам потрібно для того, щоб стати програмістом на python, і всю концепцію програмування. У кінці цього випробування ви отримаєте сертифікат про проходження випробування з програмування _30DaysOfPython_. Якщо ви бажаєте активно долучитися до випробуванні, ви можете приєднатися до групи у Telegram [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython). ## Вступ Python - це мова програмування високого рівня для програмування загального призначення. Це об'єктноорієнтована мова програмування з відкритим вихідним кодом, що інтерпретується. Python була створена голландським програмістом Гвідо ван Россумом. Назва мови програмування Python походить від британського скетч-комедійного серіалу "Летючий цирк Монті Пайтона". Перша версія була випущена 20 лютого 1991 року. Це 30-денне випробування з Python допоможе вам крок за кроком вивчити останню версію Python, Python 3. Теми розбиті на 30 днів, де кожен день містить кілька тем з простими для розуміння поясненнями, реальними прикладами, безліччю практичних вправ і проектів. Це випробування призначене для початківців та професіоналів, які хочуть вивчити мову програмування Python. На проходження випробування може знадобитися від 30 до 100 днів, люди, які беруть активну участь у телеграм-групі, мають високу ймовірність завершити випробування. Якщо ви навчаєтесь з використанням візуальних засобів або віддаєте перевагу відео, ви можете почати з цього [відео з Python для абсолютних новачків (англійською)](https://www.youtube.com/watch?v=11OYpBrhdyM). ## Чому Python ? Це мова програмування, яка дуже близька до людської мови, і тому її легко вивчати та використовувати. Python використовується різними галузями та компаніями (включаючи Google). Її використовують для розробки вебзастосунків, настільних застосунків, системного адміністрування та бібліотек машинного навчання. Python дуже популярна мова у спільноті, що займається наукою про дані та машинним навчанням. Сподіваюся, цього достатньо, щоби переконати вас почати вивчати Python. Python поглинає світ, а ви вбиваєте його до того, як він з'їсть вас. ## Налаштування середовища ### Установлення Python Для запуску скрипту на Python, вам потрібно встановити Python. Нумо [завантажимо](https://www.python.org/) Python. Якщо ви є користувачем Windows. Натисніть кнопку, обведену червоним кольором. [![установлення на Windows](../images/installing_on_windows.png)](https://www.python.org/) Якщо ви є користувачем MacOS. Натисніть кнопку, обведену червоним кольором. [![установлення на Windows](../images/installing_on_macOS.png)](https://www.python.org/) Щоб перевірити, чи встановлено Python, напишіть наступну команду у терміналі вашого пристрою. ```shell python --version ``` ![Версія Python](../images/python_versio.png) Як ви можете бачити з термінала, наразі я використовую версію _Python 3.7.5_. Ваша версія Python може відрізнятися від моєї, але вона має бути 3.6 або вище. Вам вдалося побачити версію Python? Чудова робота, Python встановлено на вашому комп'ютері. Перейдіть до наступного розділу. ### Оболонка Python Python - це інтерпретована скриптова мова, тому її не потрібно компілювати. Це означає, що вона виконує код рядок за рядком. Python постачається з _Python Shell (Python Interactive Shell)_. Вона використовується для виконання однієї команди Python і отримання результату. Python Shell чекає на код Python від користувача. Коли ви вводите код, вона інтерпретує його і показує результат у наступному рядку. Відкрийте термінал або командний рядок (cmd) і напишіть: ```shell python ``` ![Скриптова оболонка Python](../images/opening_python_shell.png) Відкриється інтерактивна оболонка Python, яка чекає на написання коду на Python (скрипт Python). Ви напишете свій скрипт Python поруч з цими символами >>>, а потім натиснете Enter. Гайда напишемо наш перший скрипт у скриптовій оболонці Python. ![Python script on Python shell](../images/adding_on_python_shell.png) Чудово, ви написали свій перший Python-скрипт в інтерактивній оболонці Python. Як закрити інтерактивну оболонку Python? Щоби закрити оболонку, поруч з цим символом >> напишіть команду **exit()** і натисніть Enter. ![Вихід з оболонки Python](../images/exit_from_shell.png) Тепер ви знаєте, як відкрити інтерактивну оболонку Python і як вийти з неї. Python дасть вам результати, якщо ви напишете скрипти, які розуміє Python, якщо ні - він поверне помилки. Зробімо навмисну помилку і подивимося, що поверне Python. ![Неправильний синтаксис](../images/invalid_syntax_error.png) Як ви можете бачити з повернутої помилки, Python настільки розумний, що знає, якої помилки ми припустилися і яка була _ Syntax Error: invalid syntax (Синтаксична помилка: невірний синтаксис)_. Використання x як множника у Python є синтаксичною помилкою, оскільки (x) не є допустимим синтаксисом у Python. Замість (**x**) ми використовуємо зірочку (*) для множення. Повернута помилка чітко показує, що потрібно виправити. Процес виявлення та усунення помилок у програмі називається *зневадженням (англ. debugging)*. Гайда розберемось з помилками, підставивши * замість **x**. ![Виправлення синтаксичної помилки](../images/fixing_syntax_error.png) Наша помилка була виправлена, код запустився і ми отримали очікуваний результат. Як програміст, ви будете бачити подібні помилки щодня. Корисно знати, як їх зневаджувати. Щоб добре зневаджувати, ви повинні розуміти, з якими типами помилок ви стикаєтесь. Деякі з помилок Python, з якими ви можете зіткнутися: *SyntaxError*, *IndexError*, *NameError*, *ModuleNotFoundError*, *KeyError*, *ImportError*, *AttributeError*, *TypeError*, *ValueError*, *ZeroDivisionError* тощо. Ми побачимо більше про різні типи **_помилок_** у Python у наступних розділах. Попрактикуймось у використанні інтерактивної оболонки Python. Перейдіть до свого термінала або командного рядка і напишіть слово **python**. ![Скриптова оболонка Python](../images/opening_python_shell.png) Відкрито інтерактивну оболонку Python. Виконаємо деякі базові математичні операції (додавання, віднімання, множення, ділення, піднесення до степеня, показник степеня). Перш ніж писати код на Python, спочатку зробімо деякі розрахунки: - 2 + 3 = 5 - 3 - 2 = 1 - 3 \* 2 = 6 - 3 / 2 = 1.5 - 3 ^ 2 = 3 x 3 = 9 У Python ми маємо наступні додаткові операції: - 3 % 2 = 1 => що означає знаходження залишку - 3 // 2 = 1 => що означає видалення залишку Змінимо наведені вище математичні вирази на код Python. Відкриємо оболонку Python і напишемо коментар на самому початку оболонки. _Коментар_ - це частина коду, яка не виконується Python. Таким чином, ми можемо залишити деякий текст у нашому коді, щоби зробити його більш читабельним. Python не виконує частину коментаря. Коментар у Python починається з символу hash(#). Ось як можна написати коментар у Python ```shell # comment starts with hash (коментарі починаються з решітки) # this is a Python comment, because it starts with a (#) symbol (це коментар Python, оскільки він починається з символу (#)) ``` ![Математика у Python Shell](../images/maths_on_python_shell.png) Перш ніж ми перейдемо до наступного розділу, попрактикуймось в інтерактивній оболонці Python. Закрийте відкриту оболонку, написавши у ній _exit()_, і знову відкрийте її, щоб попрактикуватися у написанні тексту в оболонці Python. ![Написання рядка Python Shell](../images/writing_string_on_shell.png) ### Установлення Visual Studio Code Інтерактивна оболонка Python добре підходить для тестування невеликих скриптових кодів, але вона не підійде для великого проєкту. У реальному робочому середовищі розробники використовують різні редактори коду для написання коду. У цьому 30-денному випробуванні з програмування на Python ми будемо використовувати Visual Studio Code. Visual Studio Code - це дуже популярний текстовий редактор з відкритим вихідним кодом. Я є прихильником vscode і рекомендую [завантажити](https://code.visualstudio.com/) Visual Studio Code, але якщо ви віддаєте перевагу іншим редакторам, не соромтеся користуватися тим, що у вас є. [![Visual Studio Code](../images/vscode.png)](https://code.visualstudio.com/) Якщо ви встановили Visual Studio Code, подивімося, як ним користуватися. Якщо ви віддаєте перевагу відео, ви можете слідувати за цим [відео-посібнком](https://www.youtube.com/watch?v=bn7Cx4z-vSo) #### Як використовувати Visual Studio Code Відкрийте Visual Studio Code, двічі натиснувши на іконці Visual Studio Code. Коли ви відкриєте її, ви отримаєте такий інтерфейс. Спробуйте взаємодіяти з підписаними іконками. ![Visual Studio Code](../images/vscode_ui.png) Створіть теку з назваю 30DaysOfPython на вашому робочому столі. Потім відкрийте її за допомогою Visual Studio Code. ![Відкриття проєкту у Visual studio](../images/how_to_open_project_on_vscode.png) ![Відкриття проєкту](../images/opening_project.png) Відкривши його, ви побачите ярлики для створення файлів і тек всередині каталогу проєкту 30DaysOfPython. Як ви можете бачити нижче, я створив перший файл, helloworld.py. Ви можете зробити те ж саме. ![Створення Python-файлу](../images/helloworld.png) Після довгого дня кодування ви хочете закрити редактор коду, чи не так? Саме так ви закриєте відкритий проєкт. ![Закриття проєкту](../images/closing_opened_project.png) Вітаємо, ви завершили налаштування середовища розробки. Почнімо кодування. ## Початковий Python ### Синтаксис у Python Скрипт на Python можна написати в інтерактивній оболонці Python або в редакторі коду. Файл Python має розширення .py. ### Відступи у Python Відступ - це пробіл у тексті. Відступ у багатьох мовах використовується для покращення читабельності коду, однак у Python відступ використовується для створення блоків коду. В інших мовах програмування для створення блоків коду замість відступів використовуються фігурні дужки. Однією з поширених помилок при написанні коду на Python є неправильний відступ. ![Помилка з відступом](../images/indentation.png) ### Коментарі Коментарі дуже важливі для того, щоби зробити код більш читабельним і залишати зауваження в нашому коді. Python не виконує коментовані частини нашого коду. Будь-який текст, що починається з решітки(#) у Python, є коментарем. **Приклад: однорядковий коментар** ```shell # This is the first comment (це перший коментар) # This is the second comment (це другий коментар) # Python is eating the world (Python поглинає світ) ``` **Приклад: багаторядковий коментар** Потрійні лапки можна використовувати для багаторядкового коментаря, якщо вони не присвоєні змінній ```shell """This is multiline comment (це багаторядковий коментар) multiline comment takes multiple lines. (багаторядковий коментар займає багато рядків) Python is eating the world (Python поглинає світ) """ ``` ### Типи даних У Python існує декілька типів даних. Почнімо з найпоширеніших. Детально різні типи даних будуть розглянуті в інших розділах. Наразі, давайте просто пройдемося по різних типах даних і познайомимося з ними. Вам не обов'язково мати чітке розуміння зараз. #### Number (число) - Integer (цілі числа): Integer(негативні, нуль та позитивні) числа Приклад: ... -3, -2, -1, 0, 1, 2, 3 ... - Float (числа з рухомою комою): десяткове число Приклад: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex numbers (уявні числа) Приклад: 1 + j, 2 + 4j #### String (рядок) Набір з одного або більше символів, взятих в одинарні або подвійні лапки. Якщо рядок складається з більш ніж одного речення, ми використовуємо потрійні лапки. **Приклад:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Booleans (логічний тип даних) Логічний тип даних - це значення True або False. T і F завжди повинні бути великими літерами. **Приклад:** ```python True # Чи увімкнене світло? Якщо увімкнене, то значення True (істинне) False # Чи увімкнене світло? Якщо вимкнене, то значення False (хибне) ``` #### List (список) Список у Python - це впорядкована колекція, яка дозволяє зберігати елементи різних типів даних. Список схожий на масив у JavaScript. **Приклад:** ```py [0, 1, 2, 3, 4, 5] # всі мають однаковий тип даних - список чисел ['Banana', 'Orange', 'Mango', 'Avocado'] # однакові типи даних - список рядків (фруктів) ['Finland','Estonia', 'Sweden','Norway'] # однакові типи даних - список рядків (країн) ['Banana', 10, False, 9.81] # різні типи даних у списку - string (рядок), integer (цілі числа), boolean (логічний) та float (числа з рухомою комою) ``` #### Dictionary (словник) Об'єкт словника Python - це невпорядкований набір даних у форматі пари ключ-значення. **Приклад:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tuple (кортеж) Кортеж - це впорядкована колекція різних типів даних, таких як список, але кортежі не можуть бути змінені після їх створення. Вони є незмінними. **Приклад:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # Імена ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # планети ``` #### Set (набір) Набір - це набір типів даних, подібних до списку та кортежу. На відміну від списку та кортежу, множина не є впорядкованою колекцією елементів. Як і в математиці, множина у Python зберігає лише унікальні елементи. У наступних розділах ми детально розглянемо кожен тип даних у Python. **Приклад:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # порядок у наборі не важливий ``` ### Перевірка типів даних Для перевірки типу даних певних даних/змінних ми використовуємо функцію **type**. У наведеному нижче терміналі ви побачите різні типи даних Python: ![Перевірка типів даних](../images/checking_data_types.png) ### Файл Python По-перше, відкрийте свою теку з проєктому 30DaysOfPython. Якщо ви не маєте цієї теки, то створіть її з назвою 30DaysOfPython. Усередині цієї теки, створіть файл з назвою helloworld.py. Тепер зробімо те, що ми робили в інтерактивній оболонці Python, використовуючи Visual Studio Code. Інтерактивна оболонка Python виконувала друк без використання **print**, але у коді візуальної студії, щоб побачити результат, ми повинні використати вбудовану функцію *print()*. Вбудована функція *print()* приймає один або декілька аргументів у вигляді *print('аргумент1', 'аргумент2', 'аргумент3')*. Дивіться приклади нижче. **Приклад:** Назва файлу: helloworld.py ```py # День 1 з випробування 30DaysOfPython print(2 + 3) # додавання(+) print(3 - 1) # віднімання(-) print(2 * 3) # множення(*) print(3 / 2) # ділення(/) print(3 ** 2) # взяття в ступіні(**) print(3 % 2) # взяття залишку з ділення(%) print(3 // 2) # взяття цілого числа з ділення(//) # Перевірка типів даних print(type(10)) # Int (цілочисельний) print(type(3.14)) # Float (числа з рухомою комою) print(type(1 + 3j)) # Complex number (уявне число) print(type('Asabeneh')) # String (рядок) print(type([1, 2, 3])) # List (список) print(type({'name':'Asabeneh'})) # Dictionary (словник) print(type({9.8, 3.14, 2.7})) # Set (набір) print(type((9.8, 3.14, 2.7))) # Tuple (кортеж) ``` Для запуску Python-файл перевірте зображення нижче. Ви можете запустити файл Python, натиснувши зелену кнопку на Visual Studio Code або ввівши *python helloworld.py* в терміналі. ![Запуск Python-скрипту](../images/running_python_script.png) 🌕 Ви дивовижні. Ви щойно виконали завдання першого дня і вже на шляху до величі. Тепер виконайте кілька вправ для мозку та м'язів. ## 💻 Вправи - день 1 ### Вправи: рівень 1 1. Перевірте версію Python, яку ви використовуєте 2. Відкрийте інтерактивну оболонку Python і виконайте наступні дії. Параметрами є числа 3 та 4. - додавання(+) - віднімання(-) - множення(\*) - залишок від числа(%) - ділення(/) - показник(\*\*) - ціла частина від числа(//) 3. Напишіть рядки в інтерактивній оболонці Python. Рядки подано наступним чином: - Ваше ім'я - Ваше прізвище - Ваша країна - Я насолоджуюся 30 днями з Python 4. Перевірте типи наступних даних: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Ваше ім'я - Ваше прізвище - Ваша країна ### Вправи: рівень 2 1. Створіть теку з назвою day_1 всередині теки 30DaysOfPython. Усередині теки day_1, створити Python-файл helloworld.py і повторіть питання 1, 2, 3 та 4. Пам'ятайте використовувати _print()_, коли ви працюєте над Python-файлом. Перейдіть до теки, куди ви зберегли файл, і запустіть його. ### Вправи: рівень 3 1. Напишіть приклад для різних типів даних Python, як-от Number(Integer, Float, Complex), String, Boolean, List, Tuple, Set та Dictionary. 2. Знайдіть [Евклідову відстань](https://uk.wikipedia.org/wiki/%D0%95%D0%B2%D0%BA%D0%BB%D1%96%D0%B4%D0%BE%D0%B2%D0%B0_%D0%B2%D1%96%D0%B4%D1%81%D1%82%D0%B0%D0%BD%D1%8C) між (2, 3) та (10, 8) 🎉 ВІТАННЯ ! 🎉 [День 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ================================================ FILE: data/F500.csv ================================================ "id";"rank";"name";"employees";"previousrank";"revenues";"revenuechange";"profits";"profitschange";"assets";"marketvalue" "2";"1";"Walmart";"2,300,000";"1";"$485,873";"0.8%";"$13,643.0 ";"-7.2%";"$198,825";"$218,619" "3";"2";"Berkshire Hathaway";"367,700";"4";"$223,604";"6.1%";"$24,074.0 ";"0.0%";"$620,854";"$411,035" "4";"3";"Apple";"116,000";"3";"$215,639";"-7.7%";"$45,687.0 ";"-14.4%";"$321,686";"$753,718" "5";"4";"Exxon Mobil";"72,700";"2";"$205,004";"-16.7%";"$7,840.0 ";"-51.5%";"$330,314";"$340,056" "6";"5";"McKesson";"68,000";"5";"$192,487";"6.2%";"$2,258.0 ";"53.0%";"$56,563";"$31,439" "7";"6";"UnitedHealth Group";"230,000";"6";"$184,840";"17.7%";"$7,017.0 ";"20.7%";"$122,810";"$157,793" "8";"7";"CVS Health";"204,000";"7";"$177,526";"15.8%";"$5,317.0 ";"1.5%";"$94,462";"$81,310" "9";"8";"General Motors";"225,000";"8";"$166,380";"9.2%";"$9,427.0 ";"-2.7%";"$221,690";"$52,968" "10";"9";"AT&T";"268,540";"10";"$163,786";"11.6%";"$12,976.0 ";"-2.8%";"$403,821";"$255,679" "11";"10";"Ford Motor";"201,000";"9";"$151,800";"1.5%";"$4,596.0 ";"-37.7%";"$237,951";"$46,349" "12";"11";"AmerisourceBergen";"18,500";"12";"$146,850";"8.0%";"$1,427.9 ";"-";"$33,656";"$19,229" "13";"12";"Amazon.com";"341,400";"18";"$135,987";"27.1%";"$2,371.0 ";"297.8%";"$83,402";"$423,031" "14";"13";"General Electric";"295,000";"11";"$126,661";"-9.8%";"$8,831.0 ";"-";"$365,183";"$259,520" "15";"14";"Verizon";"160,900";"13";"$125,980";"-4.3%";"$13,127.0 ";"-26.6%";"$244,180";"$198,900" "16";"15";"Cardinal Health";"37,300";"21";"$121,546";"18.5%";"$1,427.0 ";"17.4%";"$34,122";"$25,725" "17";"16";"Costco";"172,000";"15";"$118,719";"2.2%";"$2,350.0 ";"-1.1%";"$33,163";"$73,606" "18";"17";"Walgreens Boots Alliance";"300,000";"19";"$117,351";"13.4%";"$4,173.0 ";"-1.1%";"$72,688";"$89,645" "19";"18";"Kroger";"443,000";"17";"$115,337";"5.0%";"$1,975.0 ";"-3.1%";"$36,505";"$26,961" "20";"19";"Chevron";"55,200";"14";"$107,567";"-18.0%";"-$497.0 ";"-110.8%";"$260,078";"$203,263" "21";"20";"Fannie Mae";"7,000";"16";"$107,162";"-2.9%";"$12,313.0 ";"12.4%";"$3,287,968";"$3,011" "22";"21";"J.P. Morgan Chase";"243,355";"23";"$105,486";"4.4%";"$24,733.0 ";"1.2%";"$2,490,972";"$313,761" "23";"22";"Express Scripts Holding";"25,600";"22";"$100,288";"-1.4%";"$3,404.4 ";"37.5%";"$51,745";"$39,567" "24";"23";"Home Depot";"406,000";"28";"$94,595";"6.9%";"$7,957.0 ";"13.5%";"$42,966";"$176,368" "25";"24";"Boeing";"150,540";"24";"$94,571";"-1.6%";"$4,895.0 ";"-5.4%";"$89,997";"$107,546" "26";"25";"Wells Fargo";"269,100";"27";"$94,176";"4.6%";"$21,938.0 ";"-4.2%";"$1,930,115";"$278,516" "27";"26";"Bank of America Corp.";"208,024";"26";"$93,662";"0.7%";"$17,906.0 ";"12.7%";"$2,187,702";"$236,182" "28";"27";"Alphabet";"72,053";"36";"$90,272";"20.4%";"$19,478.0 ";"19.1%";"$167,497";"$579,426" "29";"28";"Microsoft";"114,000";"25";"$85,320";"-8.8%";"$16,798.0 ";"37.8%";"$193,694";"$508,935" "30";"29";"Anthem";"53,000";"33";"$84,863";"7.2%";"$2,469.8 ";"-3.5%";"$65,083";"$43,813" "31";"30";"Citigroup";"219,000";"29";"$82,386";"-6.7%";"$14,912.0 ";"-13.5%";"$1,792,077";"$165,394" "32";"31";"Comcast";"159,000";"37";"$80,403";"7.9%";"$8,695.0 ";"6.5%";"$180,500";"$178,258" "33";"32";"IBM";"414,400";"31";"$79,919";"-3.1%";"$11,872.0 ";"-10.0%";"$117,470";"$164,251" "34";"33";"State Farm Insurance Cos.";"68,234";"35";"$76,132";"0.6%";"$350.3 ";"-94.4%";"$256,030";"-" "35";"34";"Phillips 66";"14,800";"30";"$72,396";"-16.9%";"$1,555.0 ";"-63.2%";"$51,653";"$40,954" "36";"35";"Johnson & Johnson";"126,400";"39";"$71,890";"2.6%";"$16,540.0 ";"7.3%";"$141,208";"$337,642" "37";"36";"Procter & Gamble";"105,000";"34";"$71,726";"-8.9%";"$10,508.0 ";"49.3%";"$127,136";"$229,700" "38";"37";"Valero Energy";"9,996";"32";"$70,166";"-14.2%";"$2,289.0 ";"-42.6%";"$46,173";"$29,746" "39";"38";"Target";"323,000";"38";"$69,495";"-5.8%";"$2,737.0 ";"-18.6%";"$37,431";"$30,502" "40";"39";"Freddie Mac";"5,982";"43";"$65,665";"3.4%";"$7,815.0 ";"22.6%";"$2,023,376";"$1,612" "41";"40";"Lowe";"240,000";"47";"$65,017";"10.1%";"$3,093.0 ";"21.5%";"$34,408";"$70,481" "42";"41";"Dell Technologies";"138,000";;"$64,806";"18.1%";"-$1,672.0 ";"-";"$118,206";"-" "43";"42";"MetLife";"58,000";"40";"$63,476";"-9.3%";"$800.0 ";"-84.9%";"$898,764";"$57,429" "44";"43";"Aetna";"49,500";"46";"$63,155";"4.7%";"$2,271.0 ";"-5.0%";"$69,146";"$44,859" "45";"44";"PepsiCo";"264,000";"44";"$62,799";"-0.4%";"$6,329.0 ";"16.1%";"$74,129";"$159,763" "46";"45";"Archer Daniels Midland";"31,800";"41";"$62,346";"-7.9%";"$1,279.0 ";"-30.8%";"$39,769";"$26,274" "47";"46";"UPS";"335,520";"48";"$60,906";"4.4%";"$3,431.0 ";"-29.2%";"$40,377";"$93,276" "48";"47";"Intel";"106,000";"51";"$59,387";"7.3%";"$10,316.0 ";"-9.7%";"$113,327";"$170,539" "49";"48";"Prudential Financial";"49,739";"50";"$58,779";"2.9%";"$4,368.0 ";"-22.6%";"$783,962";"$45,912" "50";"49";"Albertsons Cos.";"274,000";;"$58,734";"115.9%";"-$502.2 ";"-";"$23,770";"-" "51";"50";"United Technologies";"201,600";"45";"$57,244";"-6.2%";"$5,055.0 ";"-33.6%";"$89,706";"$89,957" "52";"51";"Marathon Petroleum";"44,460";"42";"$55,858";"-13.5%";"$1,174.0 ";"-58.8%";"$44,413";"$26,679" "53";"52";"Disney";"195,000";"53";"$55,632";"6.0%";"$9,391.0 ";"12.0%";"$92,033";"$179,298" "54";"53";"Humana";"51,600";"52";"$54,379";"0.2%";"$614.0 ";"-51.9%";"$25,396";"$29,743" "55";"54";"Pfizer";"96,500";"55";"$52,824";"8.1%";"$7,215.0 ";"3.7%";"$171,615";"$203,725" "56";"55";"AIG";"56,400";"49";"$52,367";"-10.2%";"-$849.0 ";"-138.7%";"$498,264";"$61,154" "57";"56";"Lockheed Martin";"97,000";"60";"$50,658";"9.8%";"$5,302.0 ";"47.1%";"$47,806";"$77,557" "58";"57";"Sysco";"51,900";"57";"$50,367";"3.5%";"$949.6 ";"38.3%";"$16,722";"$28,048" "59";"58";"FedEx";"335,767";"58";"$50,365";"6.1%";"$1,820.0 ";"73.3%";"$46,064";"$52,178" "60";"59";"Hewlett Packard Enterprise";"195,000";;"$50,123";"-";"$3,161.0 ";"-";"$79,679";"$39,288" "61";"60";"Cisco Systems";"73,700";"54";"$49,247";"0.2%";"$10,739.0 ";"19.6%";"$121,652";"$169,266" "62";"61";"HP";"49,000";"20";"$48,238";"-53.3%";"$2,496.0 ";"-45.2%";"$29,010";"$30,231" "63";"62";"Dow Chemical";"56,000";"56";"$48,158";"-1.3%";"$4,318.0 ";"-43.8%";"$79,511";"$77,460" "64";"63";"HCA Holdings";"210,500";"63";"$44,747";"2.7%";"$2,890.0 ";"35.7%";"$33,758";"$32,966" "65";"64";"Coca-Cola";"100,300";"62";"$41,863";"-5.5%";"$6,527.0 ";"-11.2%";"$87,270";"$182,153" "66";"65";"New York Life Insurance";"11,320";"61";"$40,787";"-11.1%";"$1,088.1 ";"324.1%";"$287,196";"-" "67";"66";"Centene";"30,500";"124";"$40,721";"78.6%";"$562.0 ";"58.3%";"$20,197";"$12,271" "68";"67";"American Airlines Group";"122,300";"67";"$40,180";"-2.0%";"$2,676.0 ";"-64.8%";"$51,274";"$21,326" "69";"68";"Nationwide";"34,320";"69";"$40,074";"-0.4%";"$334.3 ";"-42.4%";"$197,790";"-" "70";"69";"Merck";"68,000";"72";"$39,807";"0.8%";"$3,920.0 ";"-11.8%";"$95,377";"$174,454" "71";"70";"Cigna";"41,000";"79";"$39,668";"4.7%";"$1,867.0 ";"-10.8%";"$59,360";"$37,604" "72";"71";"Delta Air Lines";"83,756";"68";"$39,639";"-2.6%";"$4,373.0 ";"-3.4%";"$51,261";"$33,586" "73";"72";"Best Buy";"125,000";"71";"$39,403";"-0.9%";"$1,228.0 ";"36.9%";"$13,856";"$15,193" "74";"73";"Honeywell International";"131,000";"75";"$39,302";"1.9%";"$4,809.0 ";"0.9%";"$54,146";"$94,991" "75";"74";"Caterpillar";"95,400";"59";"$38,537";"-18.0%";"-$67.0 ";"-103.2%";"$74,704";"$54,402" "76";"75";"Liberty Mutual Insurance Group";"50,000";"73";"$38,308";"-2.9%";"$1,006.0 ";"95.7%";"$125,592";"-" "77";"76";"Morgan Stanley";"55,311";"78";"$37,949";"0.1%";"$5,979.0 ";"-2.4%";"$814,949";"$79,947" "78";"77";"Massachusetts Mutual Life Insurance";"11,737";"76";"$37,788";"-1.2%";"$1,273.5 ";"-10.6%";"$271,040";"-" "79";"78";"Goldman Sachs Group";"34,400";"74";"$37,712";"-3.8%";"$7,398.0 ";"21.6%";"$860,165";"$91,380" "80";"79";"Energy Transfer Equity";"30,992";"65";"$37,504";"-11.0%";"$995.0 ";"-16.3%";"$79,011";"$21,292" "81";"80";"TIAA";"12,997";"82";"$37,105";"5.5%";"$1,492.3 ";"22.9%";"$523,194";"-" "82";"81";"Oracle";"136,000";"77";"$37,047";"-3.1%";"$8,901.0 ";"-10.4%";"$112,180";"$183,556" "83";"82";"Tyson Foods";"114,000";"66";"$36,881";"-10.9%";"$1,768.0 ";"44.9%";"$22,373";"$22,028" "84";"83";"United Continental Holdings";"88,000";"80";"$36,556";"-3.5%";"$2,263.0 ";"-69.2%";"$40,140";"$22,225" "85";"84";"Allstate";"43,275";"81";"$36,534";"2.5%";"$1,877.0 ";"-13.5%";"$108,610";"$29,754" "86";"85";"Publix Super Markets";"191,000";"87";"$34,274";"5.1%";"$2,025.7 ";"3.1%";"$17,464";"-" "87";"86";"American Express";"56,400";"85";"$33,823";"-1.8%";"$5,408.0 ";"4.7%";"$158,893";"$71,193" "88";"87";"TJX";"235,000";"89";"$33,184";"7.2%";"$2,298.2 ";"0.9%";"$12,884";"$51,053" "89";"88";"Nike";"70,700";"91";"$32,376";"5.8%";"$3,760.0 ";"14.9%";"$21,396";"$92,204" "90";"89";"Exelon";"34,396";"95";"$31,360";"6.5%";"$1,134.0 ";"-50.0%";"$114,904";"$33,309" "91";"90";"General Dynamics";"98,800";"88";"$31,353";"-0.4%";"$2,955.0 ";"-0.3%";"$32,872";"$56,791" "92";"91";"Rite Aid";"70,580";"107";"$30,737";"15.9%";"$165.5 ";"-92.2%";"$11,277";"$4,473" "93";"92";"Gilead Sciences";"9,000";"86";"$30,390";"-6.9%";"$13,501.0 ";"-25.4%";"$56,977";"$88,788" "94";"93";"CHS";"12,157";"84";"$30,347";"-12.2%";"$424.2 ";"-45.7%";"$17,318";"-" "95";"94";"3M";"91,584";"93";"$30,109";"-0.5%";"$5,050.0 ";"4.5%";"$32,906";"$114,338" "96";"95";"Time Warner";"25,000";"99";"$29,318";"4.3%";"$3,926.0 ";"2.4%";"$65,966";"$75,660" "97";"96";"Charter Communications";"91,500";"292";"$29,003";"197.3%";"$3,522.0 ";"-";"$149,067";"$100,595" "98";"97";"Northwestern Mutual";"5,646";"100";"$28,799";"2.4%";"$818.0 ";"0.4%";"$250,441";"-" "99";"98";"Facebook";"17,048";"157";"$27,638";"54.2%";"$10,217.0 ";"177.0%";"$64,961";"$410,522" "100";"99";"Travelers Cos.";"30,900";"105";"$27,625";"3.1%";"$3,014.0 ";"-12.4%";"$100,245";"$33,689" "101";"100";"Capital One Financial";"47,300";"112";"$27,519";"9.6%";"$3,751.0 ";"-7.4%";"$357,033";"$41,831" "102";"101";"Twenty-First Century Fox";"21,500";"96";"$27,326";"-5.7%";"$2,755.0 ";"-66.8%";"$48,365";"$59,949" "103";"102";"USAA";"29,943";"114";"$27,131";"11.4%";"$1,779.1 ";"-21.7%";"$147,290";"-" "104";"103";"World Fuel Services";"5,000";"92";"$27,016";"-11.1%";"$126.5 ";"-27.5%";"$5,413";"$2,535" "105";"104";"Philip Morris International";"79,500";"106";"$26,685";"-0.4%";"$6,967.0 ";"1.4%";"$36,851";"$175,349" "106";"105";"Deere";"56,767";"97";"$26,644";"-7.7%";"$1,523.9 ";"-21.4%";"$57,981";"$34,648" "107";"106";"Kraft Heinz";"41,000";"153";"$26,487";"44.4%";"$3,632.0 ";"472.9%";"$120,480";"$110,528" "108";"107";"Tech Data";"9,500";"108";"$26,235";"-0.5%";"$195.1 ";"-26.6%";"$7,932";"$3,569" "109";"108";"Avnet";"17,700";"102";"$26,219";"-6.1%";"$506.5 ";"-11.4%";"$11,240";"$5,898" "110";"109";"Mondelez International";"90,000";"102";"$25,923";"-12.5%";"$1,659.0 ";"-77.2%";"$61,538";"$65,676" "111";"110";"Macy";"148,300";"103";"$25,778";"-4.8%";"$619.0 ";"-42.3%";"$19,851";"$9,046" "112";"111";"AbbVie";"30,000";"123";"$25,638";"12.2%";"$5,953.0 ";"15.7%";"$66,099";"$103,838" "113";"112";"McDonald";"375,000";"109";"$24,622";"-3.1%";"$4,686.5 ";"3.5%";"$31,024";"$106,150" "114";"113";"DuPont";"46,000";"101";"$24,594";"-12.0%";"$2,513.0 ";"28.7%";"$39,964";"$69,451" "115";"114";"Northrop Grumman";"67,000";"118";"$24,508";"4.2%";"$2,200.0 ";"10.6%";"$25,614";"$41,577" "116";"115";"ConocoPhillips";"13,300";"90";"$24,360";"-21.3%";"-$3,615.0 ";"-";"$89,772";"$61,692" "117";"116";"Raytheon";"63,000";"120";"$24,069";"3.5%";"$2,211.0 ";"6.6%";"$30,052";"$44,664" "118";"117";"Tesoro";"6,308";"98";"$24,005";"-14.7%";"$734.0 ";"-52.3%";"$20,398";"$9,515" "119";"118";"Arrow Electronics";"18,700";"119";"$23,825";"2.3%";"$522.8 ";"5.0%";"$14,206";"$6,546" "120";"119";"Qualcomm";"30,500";"110";"$23,554";"-6.8%";"$5,705.0 ";"8.2%";"$52,359";"$84,694" "121";"120";"Progressive";"31,721";"137";"$23,441";"12.4%";"$1,031.0 ";"-18.7%";"$33,428";"$22,760" "122";"121";"Duke Energy";"28,798";"115";"$23,369";"-1.0%";"$2,152.0 ";"-23.6%";"$132,761";"$57,397" "123";"122";"Enterprise Products Partners";"6,800";"104";"$23,022";"-14.8%";"$2,513.1 ";"-0.3%";"$52,194";"$58,522" "124";"123";"Amgen";"19,200";"130";"$22,991";"6.1%";"$7,722.0 ";"11.3%";"$77,626";"$120,830" "125";"124";"US Foods Holding";"25,000";"122";"$22,919";"-0.9%";"$209.8 ";"25.2%";"$8,945";"$6,207" "126";"125";"U.S. Bancorp";"71,191";"131";"$22,744";"5.8%";"$5,888.0 ";"0.2%";"$445,964";"$87,201" "127";"126";"Aflac";"10,212";"135";"$22,559";"8.1%";"$2,659.0 ";"5.0%";"$129,819";"$29,053" "128";"127";"Sears Holdings";"140,000";"111";"$22,138";"-12.0%";"-$2,221.0 ";"-";"$9,362";"$1,231" "129";"128";"Dollar General";"121,000";"139";"$21,987";"7.9%";"$1,251.1 ";"7.4%";"$11,672";"$19,182" "130";"129";"AutoNation";"26,000";"136";"$21,609";"3.6%";"$430.5 ";"-2.7%";"$10,060";"$4,268" "131";"130";"Community Health Systems";"108,000";"125";"$21,374";"-5.8%";"-$1,721.0 ";"-";"$21,944";"$1,010" "132";"131";"Starbucks";"254,000";"146";"$21,316";"11.2%";"$2,817.7 ";"2.2%";"$14,330";"$85,092" "133";"132";"Eli Lilly";"41,975";"141";"$21,222";"6.3%";"$2,737.6 ";"13.7%";"$38,806";"$92,803" "134";"133";"International Paper";"55,000";"127";"$21,079";"-5.8%";"$904.0 ";"-3.6%";"$33,345";"$20,884" "135";"134";"Tenet Healthcare";"116,475";"140";"$21,070";"4.8%";"-$192.0 ";"-";"$24,701";"$1,777" "136";"135";"Abbott Laboratories";"75,000";"138";"$20,853";"0.9%";"$1,400.0 ";"-68.3%";"$52,666";"$76,740" "137";"136";"Dollar Tree";"116,050";"180";"$20,719";"33.7%";"$896.2 ";"217.4%";"$15,702";"$18,540" "138";"137";"Whirlpool";"93,000";"134";"$20,718";"-0.8%";"$888.0 ";"13.4%";"$19,153";"$12,762" "139";"138";"Southwest Airlines";"53,536";"142";"$20,425";"3.1%";"$2,244.0 ";"2.9%";"$23,286";"$33,076" "140";"139";"Emerson Electric";"103,500";"128";"$20,268";"-9.1%";"$1,635.0 ";"-39.7%";"$21,743";"$38,614" "141";"140";"Staples";"61,503";"132";"$20,217";"-4.0%";"-$1,497.0 ";"-494.8%";"$8,271";"$5,723" "142";"141";"Plains GP Holdings";"5,100";"121";"$20,182";"-12.8%";"$94.0 ";"-20.3%";"$26,103";"$9,127" "143";"142";"Penske Automotive Group";"24,000";"143";"$20,143";"4.0%";"$342.9 ";"5.2%";"$8,861";"$4,001" "144";"143";"Union Pacific";"42,919";"129";"$19,941";"-8.6%";"$4,233.0 ";"-11.3%";"$55,718";"$85,911" "145";"144";"Danaher";"62,000";"133";"$19,912";"-4.8%";"$2,553.7 ";"-23.9%";"$45,295";"$59,359" "146";"145";"Southern";"32,015";"162";"$19,896";"13.8%";"$2,448.0 ";"3.4%";"$109,697";"$49,335" "147";"146";"ManpowerGroup";"28,000";"144";"$19,654";"1.7%";"$443.7 ";"5.8%";"$7,574";"$6,938" "148";"147";"Bristol-Myers Squibb";"25,000";"168";"$19,427";"17.3%";"$4,457.0 ";"184.8%";"$33,707";"$89,591" "149";"148";"Altria Group";"8,300";"149";"$19,337";"2.6%";"$14,239.0 ";"171.7%";"$45,932";"$138,513" "150";"149";"Fluor";"61,551";"155";"$19,037";"5.1%";"$281.4 ";"-31.8%";"$9,216";"$7,353" "151";"150";"Kohl";"85,000";"145";"$18,686";"-2.7%";"$556.0 ";"-17.4%";"$13,574";"$6,862" "152";"151";"Lear";"148,400";"154";"$18,558";"1.9%";"$975.1 ";"30.8%";"$9,901";"$9,726" "153";"152";"Jabil Circuit";"138,000";"158";"$18,353";"2.5%";"$254.1 ";"-10.5%";"$10,323";"$5,270" "154";"153";"Hartford Financial Services Group";"16,900";"152";"$18,300";"-0.4%";"$896.0 ";"-46.7%";"$223,432";"$17,795" "155";"154";"Thermo Fisher Scientific";"54,800";"164";"$18,274";"7.7%";"$2,021.8 ";"2.3%";"$45,908";"$59,964" "156";"155";"Kimberly-Clark";"42,000";"151";"$18,202";"-2.1%";"$2,166.0 ";"113.8%";"$14,602";"$46,828" "157";"156";"Molina Healthcare";"21,000";"201";"$17,782";"25.4%";"$52.0 ";"-63.6%";"$7,449";"$2,601" "158";"157";"PG&E Corp.";"24,000";"166";"$17,666";"4.9%";"$1,393.0 ";"59.4%";"$68,598";"$33,696" "159";"158";"Supervalu";"38,000";"160";"$17,529";"-1.6%";"$178.0 ";"-7.3%";"$4,370";"$1,033" "160";"159";"Cummins";"55,400";"148";"$17,509";"-8.4%";"$1,394.0 ";"-0.4%";"$15,011";"$25,397" "161";"160";"CenturyLink";"40,000";"159";"$17,470";"-2.4%";"$626.0 ";"-28.7%";"$47,017";"$12,883" "162";"161";"AECOM";"87,000";"156";"$17,411";"-3.2%";"$96.1 ";"-";"$13,727";"$5,528" "163";"162";"Xerox";"133,600";"150";"$17,126";"-8.2%";"-$477.0 ";"-200.6%";"$18,145";"$7,462" "164";"163";"Marriott International";"226,500";"195";"$17,072";"17.9%";"$780.0 ";"-9.2%";"$24,140";"$36,124" "165";"164";"Paccar";"23,000";"147";"$17,033";"-10.9%";"$521.7 ";"-67.5%";"$20,639";"$23,604" "166";"165";"General Mills";"39,000";"161";"$16,563";"-6.1%";"$1,697.4 ";"39.0%";"$21,712";"$33,998" "167";"166";"PNC Financial Services Group";"50,683";"171";"$16,423";"0.9%";"$3,903.0 ";"-4.9%";"$366,380";"$58,455" "168";"167";"American Electric Power";"17,634";"165";"$16,380";"-3.1%";"$610.9 ";"-70.2%";"$63,468";"$33,009" "169";"168";"Icahn Enterprises";"90,980";"184";"$16,348";"7.0%";"-$1,128.0 ";"-";"$33,335";"$7,989" "170";"169";"Nucor";"23,900";"170";"$16,208";"-1.4%";"$796.3 ";"122.6%";"$15,224";"$19,051" "171";"170";"NextEra Energy";"14,700";"163";"$16,155";"-7.6%";"$2,912.0 ";"5.8%";"$89,993";"$60,099" "172";"171";"Performance Food Group";"13,000";"185";"$16,105";"5.5%";"$68.3 ";"20.9%";"$3,455";"$2,464" "173";"172";"PBF Energy";"3,165";"217";"$15,920";"21.3%";"$170.8 ";"16.7%";"$7,622";"$2,431" "174";"173";"Halliburton";"50,000";"117";"$15,887";"-32.8%";"-$5,763.0 ";"-";"$27,000";"$42,662" "175";"174";"CarMax";"22,429";"191";"$15,833";"6.4%";"$623.4 ";"4.4%";"$14,482";"$11,081" "176";"175";"Freeport-McMoRan";"30,000";"175";"$15,789";"-0.6%";"-$4,154.0 ";"-";"$37,317";"$19,310" "177";"176";"Whole Foods Market";"73,515";"181";"$15,724";"2.2%";"$507.0 ";"-5.4%";"$6,341";"$9,468" "178";"177";"Bank of New York Mellon Corp.";"52,000";"179";"$15,683";"1.0%";"$3,547.0 ";"12.3%";"$333,469";"$48,913" "179";"178";"Gap";"135,000";"177";"$15,516";"-1.8%";"$676.0 ";"-26.5%";"$7,610";"$9,712" "180";"179";"Omnicom Group";"78,500";"186";"$15,417";"1.9%";"$1,148.6 ";"5.0%";"$23,165";"$20,219" "181";"180";"Genuine Parts";"40,000";"183";"$15,340";"0.4%";"$687.2 ";"-2.6%";"$8,859";"$13,712" "182";"181";"DaVita HealthCare Partners";"70,300";"200";"$15,197";"6.9%";"$879.9 ";"226.2%";"$18,741";"$13,227" "183";"182";"Colgate-Palmolive";"36,700";"174";"$15,195";"-5.2%";"$2,441.0 ";"76.4%";"$12,123";"$64,715" "184";"183";"PPG Industries";"47,000";"182";"$15,178";"-1.0%";"$877.0 ";"-37.6%";"$15,769";"$26,970" "185";"184";"Goodyear Tire & Rubber";"66,000";"169";"$15,158";"-7.8%";"$1,264.0 ";"311.7%";"$16,511";"$9,070" "186";"185";"Synchrony Financial";"15,000";;"$15,122";"11.0%";"$2,251.0 ";"1.7%";"$90,207";"$27,810" "187";"186";"DISH Network";"16,000";"187";"$15,095";"0.2%";"$1,449.9 ";"94.1%";"$28,092";"$29,547" "188";"187";"Visa";"14,200";"204";"$15,082";"8.7%";"$5,991.0 ";"-5.3%";"$64,035";"$206,242" "189";"188";"Nordstrom";"72,500";"197";"$14,757";"2.2%";"$354.0 ";"-41.0%";"$7,858";"$7,770" "190";"189";"INTL FCStone";"1,464";"83";"$14,755";"-57.5%";"$54.7 ";"-1.8%";"$5,951";"$708" "191";"190";"WestRock";"39,000";"251";"$14,706";"29.2%";"-$396.3 ";"-178.2%";"$23,038";"$13,029" "192";"191";"XPO Logistics";"87,000";"353";"$14,619";"91.8%";"$69.0 ";"-";"$11,698";"$5,338" "193";"192";"Aramark";"217,250";"199";"$14,416";"0.6%";"$287.8 ";"22.0%";"$10,582";"$9,081" "194";"193";"CBS";"18,410";"203";"$14,386";"3.6%";"$1,261.0 ";"-10.8%";"$24,238";"$28,405" "195";"194";"AES";"19,000";"190";"$14,287";"-4.5%";"-$1,130.0 ";"-469.3%";"$36,119";"$7,371" "196";"195";"WellCare Health Plans";"7,400";"202";"$14,237";"2.5%";"$242.1 ";"104.1%";"$6,153";"$6,212" "197";"196";"FirstEnergy";"15,707";"188";"$14,156";"-3.1%";"-$6,177.0 ";"-";"$43,148";"$14,118" "198";"197";"ConAgra Foods";"20,900";"176";"$14,134";"-10.8%";"-$677.0 ";"-";"$13,391";"$17,557" "199";"198";"Synnex";"110,000";"212";"$14,062";"5.4%";"$234.9 ";"12.7%";"$5,223";"$4,469" "200";"199";"CDW";"8,516";"220";"$13,982";"7.6%";"$424.4 ";"5.3%";"$6,948";"$9,197" "201";"200";"Textron";"36,000";"209";"$13,788";"2.7%";"$962.0 ";"38.0%";"$15,358";"$12,851" "202";"201";"Waste Management";"41,200";"221";"$13,609";"5.0%";"$1,182.0 ";"57.0%";"$20,859";"$32,216" "203";"202";"Illinois Tool Works";"50,000";"211";"$13,599";"1.4%";"$2,035.0 ";"7.2%";"$15,201";"$45,791" "204";"203";"Office Depot";"38,000";"196";"$13,585";"-6.2%";"$529.0 ";"-";"$5,540";"$2,402" "205";"204";"Monsanto";"22,450";"189";"$13,502";"-10.0%";"$1,336.0 ";"-42.3%";"$19,736";"$49,644" "206";"205";"Cognizant Technology Solutions";"260,200";"230";"$13,487";"8.6%";"$1,553.0 ";"-4.3%";"$14,262";"$36,226" "207";"206";"Texas Instruments";"29,865";"219";"$13,370";"2.8%";"$3,595.0 ";"20.4%";"$16,431";"$80,531" "208";"207";"Lincoln National";"9,057";"205";"$13,330";"-1.8%";"$1,192.0 ";"3.3%";"$261,627";"$14,760" "209";"208";"Newell Brands";"53,400";"434";"$13,264";"122.1%";"$527.8 ";"50.8%";"$33,838";"$22,787" "210";"209";"Land O";"10,000";"215";"$13,233";"0.6%";"$244.9 ";"-20.4%";"$8,305";"-" "211";"210";"Marsh & McLennan";"60,000";"222";"$13,211";"2.5%";"$1,768.0 ";"10.6%";"$18,190";"$38,078" "212";"211";"Ecolab";"47,565";"206";"$13,153";"-2.9%";"$1,229.6 ";"22.7%";"$18,330";"$36,356" "213";"212";"C.H. Robinson Worldwide";"14,125";"208";"$13,144";"-2.5%";"$513.4 ";"0.7%";"$3,688";"$10,958" "214";"213";"Loews";"15,800";"210";"$13,105";"-2.3%";"$654.0 ";"151.5%";"$76,594";"$15,747" "215";"214";"CBRE Group";"75,000";"259";"$13,072";"20.4%";"$572.0 ";"4.5%";"$10,780";"$11,753" "216";"215";"Kinder Morgan";"11,121";"198";"$13,058";"-9.3%";"$708.0 ";"179.8%";"$80,305";"$48,533" "217";"216";"Kellogg";"37,369";"207";"$13,014";"-3.8%";"$694.0 ";"13.0%";"$15,111";"$25,417" "218";"217";"Western Digital";"72,878";"194";"$12,994";"-10.8%";"$242.0 ";"-83.5%";"$32,862";"$23,775" "219";"218";"Guardian Life Ins. Co. of America";"8,876";"226";"$12,919";"2.3%";"$263.9 ";"-35.7%";"$70,339";"-" "220";"219";"Ross Stores";"78,600";"237";"$12,867";"7.8%";"$1,117.7 ";"9.5%";"$5,309";"$25,814" "221";"220";"L Brands";"59,100";"234";"$12,574";"3.5%";"$1,158.1 ";"-7.6%";"$8,170";"$13,426" "222";"221";"J.C. Penney";"106,000";"228";"$12,547";"-0.6%";"$1.0 ";"-";"$9,314";"$1,901" "223";"222";"Farmers Insurance Exchange";"13,309";"227";"$12,513";"-0.9%";"-$147.9 ";"-";"$16,057";"-" "224";"223";"Reynolds American";"5,525";"266";"$12,503";"17.1%";"$6,073.0 ";"86.7%";"$51,095";"$89,862" "225";"224";"Viacom";"9,650";"213";"$12,488";"-5.9%";"$1,438.0 ";"-25.2%";"$22,508";"$18,503" "226";"225";"Becton Dickinson";"50,928";"278";"$12,483";"21.4%";"$976.0 ";"40.4%";"$25,586";"$39,041" "227";"226";"Micron Technology";"31,400";"173";"$12,399";"-23.4%";"-$276.0 ";"-109.5%";"$27,540";"$31,972" "228";"227";"Principal Financial";"14,854";"236";"$12,394";"3.6%";"$1,316.5 ";"6.7%";"$228,014";"$18,143" "229";"228";"Arconic";"41,500";"126";"$12,394";"-45.0%";"-$941.0 ";"-";"$20,038";"$11,604" "230";"229";"NRG Energy";"8,763";"193";"$12,351";"-15.8%";"-$774.0 ";"-";"$30,355";"$5,911" "231";"230";"VF";"69,000";"231";"$12,207";"-1.4%";"$1,074.1 ";"-12.8%";"$9,739";"$22,786" "232";"231";"Devon Energy";"3,545";"216";"$12,197";"-7.2%";"-$3,302.0 ";"-";"$25,913";"$21,886" "233";"232";"D.R. Horton";"6,976";"260";"$12,157";"12.3%";"$886.3 ";"18.1%";"$11,559";"$12,438" "234";"233";"Bed Bath & Beyond";"62,000";"238";"$12,104";"1.9%";"$841.5 ";"-12.1%";"$6,499";"$5,931" "235";"234";"Consolidated Edison";"14,960";"229";"$12,075";"-3.8%";"$1,245.0 ";"4.4%";"$48,255";"$23,708" "236";"235";"Edison International";"12,390";"246";"$11,869";"3.0%";"$1,311.0 ";"28.5%";"$51,319";"$25,938" "237";"236";"Sherwin-Williams";"42,550";"253";"$11,856";"4.6%";"$1,132.7 ";"7.5%";"$6,753";"$28,891" "238";"237";"NGL Energy Partners";"3,200";"167";"$11,742";"-30.1%";"-$198.9 ";"-633.2%";"$5,560";"$2,686" "239";"238";"Dominion Resources";"16,200";"243";"$11,737";"0.5%";"$2,123.0 ";"11.8%";"$71,610";"$48,732" "240";"239";"Ameriprise Financial";"13,195";"232";"$11,735";"-3.8%";"$1,314.0 ";"-15.9%";"$139,821";"$19,953" "241";"240";"ADP";"57,000";"248";"$11,668";"1.7%";"$1,492.5 ";"2.8%";"$43,670";"$45,963" "242";"241";"Hilton Worldwide Holdings";"169,000";"254";"$11,663";"3.5%";"$348.0 ";"-75.2%";"$26,211";"$19,276" "243";"242";"First Data";"24,000";"249";"$11,584";"1.2%";"$420.0 ";"-";"$40,292";"$14,224" "244";"243";"Henry Schein";"21,000";"268";"$11,572";"8.9%";"$506.8 ";"5.8%";"$6,730";"$13,461" "245";"244";"Toys ";"64,000";"240";"$11,540";"-2.2%";"-$36.0 ";"-";"$6,908";"-" "246";"245";"BB&T Corp.";"37,500";"273";"$11,538";"11.5%";"$2,426.0 ";"16.4%";"$219,276";"$36,141" "247";"246";"Reinsurance Group of America";"2,371";"271";"$11,522";"10.6%";"$701.4 ";"39.7%";"$53,098";"$8,169" "248";"247";"Core-Mark Holding";"7,688";"317";"$11,507";"29.9%";"$54.2 ";"5.2%";"$1,497";"$1,445" "249";"248";"Biogen";"7,400";"263";"$11,449";"6.4%";"$3,702.8 ";"4.4%";"$22,877";"$59,046" "250";"249";"Las Vegas Sands";"49,000";"241";"$11,410";"-2.4%";"$1,670.0 ";"-15.1%";"$20,469";"$45,313" "251";"250";"Stanley Black & Decker";"54,023";"256";"$11,407";"1.7%";"$965.3 ";"9.2%";"$15,635";"$20,280" "252";"251";"Parker-Hannifin";"48,950";"224";"$11,361";"-10.6%";"$806.8 ";"-20.3%";"$12,057";"$21,370" "253";"252";"Stryker";"33,000";"287";"$11,325";"13.9%";"$1,647.0 ";"14.5%";"$20,435";"$49,115" "254";"253";"Estee Lauder";"46,000";"261";"$11,262";"4.5%";"$1,114.6 ";"2.4%";"$9,223";"$31,068" "255";"254";"Celgene";"7,132";"305";"$11,229";"21.3%";"$1,999.2 ";"24.8%";"$28,086";"$96,802" "256";"255";"BlackRock";"13,000";"250";"$11,155";"-2.2%";"$3,172.0 ";"-5.2%";"$220,177";"$62,225" "257";"256";"Xcel Energy";"11,476";"257";"$11,107";"0.7%";"$1,123.4 ";"14.1%";"$41,155";"$22,546" "258";"257";"CSX";"26,628";"239";"$11,069";"-6.3%";"$1,714.0 ";"-12.9%";"$35,414";"$43,126" "259";"258";"Unum Group";"9,400";"265";"$11,047";"2.9%";"$931.4 ";"7.4%";"$61,942";"$10,749" "260";"259";"Jacobs Engineering Group";"49,350";"235";"$10,964";"-9.5%";"$210.5 ";"-30.5%";"$7,360";"$6,693" "261";"260";"Lennar";"8,335";"301";"$10,950";"15.6%";"$911.8 ";"13.6%";"$15,362";"$12,002" "262";"261";"Group 1 Automotive";"13,500";"267";"$10,888";"2.4%";"$147.1 ";"56.5%";"$4,462";"$1,584" "263";"262";"Leucadia National";"13,000";"242";"$10,875";"-6.9%";"$130.0 ";"-54.2%";"$45,071";"$9,355" "264";"263";"Entergy";"13,513";"247";"$10,846";"-5.8%";"-$583.6 ";"-";"$45,904";"$13,685" "265";"264";"PayPal Holdings";"18,100";"307";"$10,842";"17.2%";"$1,401.0 ";"14.1%";"$33,103";"$51,650" "266";"265";"Applied Materials";"16,150";"295";"$10,825";"12.1%";"$1,721.0 ";"25.0%";"$14,588";"$42,005" "267";"266";"Voya Financial";"6,700";"252";"$10,782";"-4.9%";"-$428.0 ";"-204.8%";"$214,235";"$7,191" "268";"267";"MasterCard";"11,900";"294";"$10,776";"11.5%";"$4,059.0 ";"6.6%";"$18,675";"$121,234" "269";"268";"Priceline Group";"18,500";"308";"$10,743";"16.5%";"$2,135.0 ";"-16.3%";"$19,839";"$87,522" "270";"269";"Liberty Interactive";"21,080";"284";"$10,647";"6.6%";"$1,235.0 ";"42.1%";"$20,355";"$9,101" "271";"270";"AutoZone";"66,780";"280";"$10,636";"4.4%";"$1,241.0 ";"7.0%";"$8,600";"$20,540" "272";"271";"State Street Corp.";"33,783";"264";"$10,635";"-1.2%";"$2,143.0 ";"8.2%";"$242,698";"$30,406" "273";"272";"DTE Energy";"10,000";"274";"$10,630";"2.8%";"$868.0 ";"19.4%";"$32,041";"$18,317" "274";"273";"L-3 Communications";"38,000";"245";"$10,597";"-8.3%";"$710.0 ";"-";"$11,865";"$12,859" "275";"274";"HollyFrontier";"2,676";"214";"$10,536";"-20.4%";"-$260.5 ";"-135.2%";"$9,436";"$5,048" "276";"275";"Praxair";"26,498";"262";"$10,534";"-2.2%";"$1,500.0 ";"-3.0%";"$19,332";"$33,834" "277";"276";"Universal Health Services";"70,863";"290";"$10,508";"7.4%";"$702.4 ";"3.2%";"$10,318";"$12,022" "278";"277";"Discover Financial Services";"15,549";"283";"$10,497";"4.9%";"$2,393.0 ";"4.2%";"$92,308";"$26,255" "279";"278";"Occidental Petroleum";"11,000";"225";"$10,398";"-18.1%";"-$574.0 ";"-";"$43,109";"$48,444" "280";"279";"United States Steel";"29,800";"244";"$10,261";"-11.3%";"-$440.0 ";"-";"$9,160";"$5,893" "281";"280";"Sempra Energy";"16,575";"279";"$10,183";"-0.5%";"$1,370.0 ";"1.6%";"$47,786";"$27,692" "282";"281";"Baxter International";"48,000";"286";"$10,163";"2.0%";"$4,965.0 ";"412.9%";"$15,546";"$28,106" "283";"282";"W.W. Grainger";"25,000";"285";"$10,137";"1.6%";"$605.9 ";"-21.2%";"$5,694";"$13,668" "284";"283";"Autoliv";"65,900";"310";"$10,074";"9.9%";"$567.1 ";"24.1%";"$8,234";"$9,032" "285";"284";"Norfolk Southern";"27,856";"270";"$9,888";"-5.9%";"$1,668.0 ";"7.2%";"$34,892";"$32,515" "286";"285";"Baker Hughes";"33,000";"178";"$9,841";"-37.5%";"-$2,738.0 ";"-";"$19,034";"$25,444" "287";"286";"Ally Financial";"7,600";"298";"$9,835";"3.1%";"$1,067.0 ";"-17.2%";"$163,728";"$9,437" "288";"287";"Sonic Automotive";"9,800";"297";"$9,732";"1.1%";"$93.2 ";"8.0%";"$3,639";"$900" "289";"288";"Owens & Minor";"7,900";"291";"$9,723";"-0.5%";"$108.8 ";"5.2%";"$2,718";"$2,114" "290";"289";"Huntsman";"15,000";"277";"$9,657";"-6.2%";"$326.0 ";"250.5%";"$9,189";"$5,880" "291";"290";"Laboratory Corp. of America";"52,000";"325";"$9,642";"11.1%";"$732.1 ";"67.6%";"$14,247";"$14,696" "292";"291";"Murphy USA";"6,600";"258";"$9,633";"-11.5%";"$221.5 ";"25.6%";"$2,089";"$2,706" "293";"292";"Advance Auto Parts";"57,500";"293";"$9,568";"-1.7%";"$459.6 ";"-2.9%";"$8,315";"$10,944" "294";"293";"Fidelity National Financial";"55,219";"311";"$9,554";"4.6%";"$650.0 ";"23.3%";"$14,463";"$10,600" "295";"294";"Air Products & Chemicals";"18,450";"288";"$9,524";"-3.7%";"$631.1 ";"-50.6%";"$18,055";"$29,438" "296";"295";"Hormel Foods";"21,100";"304";"$9,523";"2.8%";"$890.1 ";"29.7%";"$6,370";"$18,316" "297";"296";"Hertz Global Holdings";"36,000";"269";"$9,480";"-10.0%";"-$491.0 ";"-279.9%";"$19,155";"$1,456" "298";"297";"MGM Resorts International";"66,500";"309";"$9,455";"2.9%";"$1,101.4 ";"-";"$28,173";"$15,733" "299";"298";"Corning";"40,700";"313";"$9,390";"3.1%";"$3,695.0 ";"176.0%";"$27,899";"$25,030" "300";"299";"Republic Services";"33,000";"312";"$9,388";"3.0%";"$612.6 ";"-18.3%";"$20,630";"$21,312" "301";"300";"Alcoa";"14,000";;"$9,318";"-";"-$400.0 ";"-";"$16,741";"$6,337" "302";"301";"Fidelity National Information Services";"55,000";"392";"$9,241";"40.1%";"$568.0 ";"-10.1%";"$26,031";"$26,178" "303";"302";"Pacific Life";"3,628";"326";"$9,169";"6.1%";"$824.0 ";"24.7%";"$143,298";"-" "304";"303";"SunTrust Banks";"24,375";"329";"$9,161";"7.4%";"$1,878.0 ";"-2.8%";"$204,875";"$27,175" "305";"304";"LKQ";"42,500";"369";"$9,082";"26.3%";"$464.0 ";"9.6%";"$8,303";"$9,021" "306";"305";"BorgWarner";"27,000";"339";"$9,071";"13.1%";"$118.5 ";"-80.6%";"$8,835";"$8,895" "307";"306";"Ball";"18,450";"341";"$9,061";"13.3%";"$263.0 ";"-6.4%";"$16,173";"$13,000" "308";"307";"CST Brands";"12,380";"299";"$9,061";"-4.6%";"$324.0 ";"117.4%";"$4,360";"$3,645" "309";"308";"Public Service Enterprise Group";"13,065";"272";"$9,061";"-13.0%";"$887.0 ";"-47.2%";"$40,070";"$22,451" "310";"309";"Eastman Chemical";"14,000";"296";"$9,008";"-6.6%";"$854.0 ";"0.7%";"$15,457";"$11,783" "311";"310";"eBay";"12,600";"300";"$8,979";"-5.4%";"$7,266.0 ";"321.2%";"$23,847";"$36,232" "312";"311";"Mohawk Industries";"37,800";"338";"$8,959";"11.0%";"$930.4 ";"51.2%";"$10,231";"$17,025" "313";"312";"Oneok";"2,384";"348";"$8,921";"14.9%";"$352.0 ";"43.7%";"$16,139";"$11,684" "314";"313";"Frontier Communications";"28,332";"461";"$8,896";"59.5%";"-$373.0 ";"-";"$29,013";"$2,521" "315";"314";"Netflix";"3,850";"379";"$8,831";"30.3%";"$186.7 ";"52.2%";"$13,587";"$63,619" "316";"315";"American Family Insurance Group";"10,471";"332";"$8,829";"6.6%";"$325.6 ";"-53.1%";"$22,662";"-" "317";"316";"Thrivent Financial for Lutherans";"3,282";"318";"$8,777";"-0.1%";"$587.8 ";"-23.6%";"$88,561";"-" "318";"317";"Expedia";"20,075";"385";"$8,774";"31.5%";"$281.8 ";"-63.1%";"$15,778";"$18,901" "319";"318";"Lithia Motors";"11,170";"346";"$8,678";"10.3%";"$197.1 ";"7.7%";"$3,844";"$2,156" "320";"319";"Avis Budget Group";"25,600";"330";"$8,659";"1.8%";"$163.0 ";"-47.9%";"$17,643";"$2,528" "321";"320";"Reliance Steel & Aluminum";"14,500";"303";"$8,613";"-7.9%";"$304.3 ";"-2.3%";"$7,411";"$5,830" "322";"321";"GameStop";"41,750";"302";"$8,608";"-8.1%";"$353.2 ";"-12.3%";"$4,976";"$2,282" "323";"322";"Tenneco";"31,000";"334";"$8,599";"4.8%";"$363.0 ";"47.0%";"$4,342";"$3,390" "324";"323";"O";"58,397";"342";"$8,593";"7.9%";"$1,037.7 ";"11.4%";"$7,204";"$24,730" "325";"324";"Peter Kiewit Sons";"20,000";"314";"$8,573";"-4.7%";"$396.0 ";"57.8%";"$6,179";"-" "326";"325";"United Natural Foods";"9,554";"335";"$8,470";"3.5%";"$125.8 ";"-9.3%";"$2,852";"$2,187" "327";"326";"salesforce.com";"25,000";"386";"$8,392";"25.9%";"$179.6 ";"-";"$17,585";"$58,362" "328";"327";"Boston Scientific";"27,000";"359";"$8,386";"12.2%";"$347.0 ";"-";"$18,096";"$34,046" "329";"328";"Newmont Mining";"12,438";"349";"$8,379";"8.4%";"-$627.0 ";"-385.0%";"$21,031";"$17,518" "330";"329";"Genworth Financial";"3,400";"306";"$8,369";"-9.5%";"-$277.0 ";"-";"$104,658";"$2,056" "331";"330";"Live Nation Entertainment";"11,500";"366";"$8,355";"15.3%";"$2.9 ";"-";"$6,764";"$6,219" "332";"331";"Veritiv";"8,700";"323";"$8,327";"-4.5%";"$21.0 ";"-21.3%";"$2,484";"$813" "333";"332";"News Corp.";"24,000";"327";"$8,319";"-3.6%";"$179.0 ";"-";"$15,483";"$7,559" "334";"333";"Crown Holdings";"23,992";"321";"$8,284";"-5.5%";"$496.0 ";"26.2%";"$9,599";"$7,367" "335";"334";"Global Partners";"1,770";"276";"$8,240";"-20.1%";"-$199.4 ";"-557.8%";"$2,564";"$663" "336";"335";"PVH";"26,650";"340";"$8,203";"2.3%";"$549.0 ";"-4.1%";"$11,068";"$8,092" "337";"336";"Level 3 Communications";"12,600";"333";"$8,172";"-0.7%";"$677.0 ";"-80.3%";"$24,888";"$20,638" "338";"337";"Navistar International";"11,300";"281";"$8,111";"-20.0%";"-$97.0 ";"-";"$5,653";"$2,416" "339";"338";"Univar";"8,700";"315";"$8,074";"-10.1%";"-$68.4 ";"-514.5%";"$5,390";"$4,293" "340";"339";"Campbell Soup";"16,500";"337";"$7,961";"-1.5%";"$563.0 ";"-18.5%";"$7,837";"$17,423" "341";"340";"Dick";"27,550";"365";"$7,922";"9.0%";"$287.4 ";"-13.0%";"$4,058";"$5,489" "342";"341";"Weyerhaeuser";"10,400";"373";"$7,902";"11.6%";"$1,027.0 ";"103.0%";"$19,243";"$25,451" "343";"342";"Mutual of Omaha Insurance";"5,732";"367";"$7,899";"9.2%";"$356.6 ";"7.1%";"$38,465";"-" "344";"343";"Chesapeake Energy";"3,300";"223";"$7,872";"-38.3%";"-$4,401.0 ";"-";"$13,028";"$5,394" "345";"344";"Anadarko Petroleum";"4,500";"324";"$7,869";"-9.5%";"-$3,071.0 ";"-";"$45,564";"$34,640" "346";"345";"Interpublic Group";"49,800";"355";"$7,847";"3.1%";"$608.5 ";"33.9%";"$12,485";"$9,648" "347";"346";"J.M. Smucker";"6,910";"452";"$7,811";"37.2%";"$688.7 ";"99.7%";"$15,984";"$15,263" "348";"347";"Steel Dynamics";"7,695";"356";"$7,777";"2.4%";"$382.1 ";"-";"$6,424";"$8,425" "349";"348";"Foot Locker";"32,965";"361";"$7,766";"4.8%";"$664.0 ";"22.7%";"$3,840";"$9,818" "350";"349";"Western Refining";"7,134";"289";"$7,743";"-20.9%";"$124.9 ";"-69.3%";"$5,560";"$3,812" "351";"350";"SpartanNash";"11,500";"351";"$7,735";"1.1%";"$56.8 ";"-9.4%";"$1,930";"$1,313" "352";"351";"Dean Foods";"17,000";"336";"$7,710";"-5.1%";"$119.9 ";"-";"$2,606";"$1,786" "353";"352";"Zimmer Biomet Holdings";"18,500";"431";"$7,684";"28.1%";"$305.9 ";"108.1%";"$26,684";"$24,571" "354";"353";"PulteGroup";"4,623";"433";"$7,669";"28.2%";"$602.7 ";"22.0%";"$10,178";"$7,466" "355";"354";"W.R. Berkley";"7,608";"368";"$7,654";"6.2%";"$601.9 ";"19.5%";"$23,365";"$8,561" "356";"355";"Quanta Services";"28,100";"352";"$7,651";"0.2%";"$198.4 ";"-36.2%";"$5,354";"$5,386" "357";"356";"EOG Resources";"2,650";"322";"$7,651";"-12.6%";"-$1,096.7 ";"-";"$29,459";"$56,302" "358";"357";"Charles Schwab";"16,200";"401";"$7,644";"17.6%";"$1,889.0 ";"30.5%";"$223,383";"$54,555" "359";"358";"Eversource Energy";"7,762";"343";"$7,639";"-4.0%";"$942.3 ";"7.3%";"$32,053";"$18,627" "360";"359";"Anixter International";"8,900";"391";"$7,625";"15.6%";"$120.5 ";"-5.6%";"$4,094";"$2,626" "361";"360";"EMCOR Group";"31,000";"381";"$7,552";"12.3%";"$181.9 ";"5.6%";"$3,894";"$3,756" "362";"361";"Assurant";"14,700";"275";"$7,532";"-27.1%";"$565.4 ";"299.4%";"$29,709";"$5,298" "363";"362";"CenterPoint Energy";"7,727";"363";"$7,528";"1.9%";"$432.0 ";"-";"$21,829";"$11,882" "364";"363";"Harris";"21,000";"505";"$7,527";"48.1%";"$324.0 ";"-3.0%";"$11,996";"$13,849" "365";"364";"HD Supply Holdings";"14,000";"320";"$7,524";"-14.3%";"$196.0 ";"-86.7%";"$5,707";"$8,296" "366";"365";"PPL";"12,689";"350";"$7,517";"-2.0%";"$1,902.0 ";"178.9%";"$38,315";"$25,448" "367";"366";"Quest Diagnostics";"43,000";"358";"$7,515";"0.3%";"$645.0 ";"-9.0%";"$10,100";"$13,501" "368";"367";"Williams";"5,604";"364";"$7,499";"1.9%";"-$424.0 ";"-";"$46,835";"$24,436" "369";"368";"WEC Energy Group";"8,074";"437";"$7,472";"26.1%";"$939.0 ";"47.1%";"$30,123";"$19,134" "370";"369";"Hershey";"17,140";"362";"$7,440";"0.7%";"$720.0 ";"40.4%";"$5,524";"$23,236" "371";"370";"AGCO";"19,795";"360";"$7,411";"-0.8%";"$160.1 ";"-39.9%";"$7,168";"$4,783" "372";"371";"Ralph Lauren";"20,500";"354";"$7,405";"-2.8%";"$396.0 ";"-43.6%";"$6,213";"$6,710" "373";"372";"Masco";"26,000";"345";"$7,357";"-6.9%";"$491.0 ";"38.3%";"$5,137";"$10,888" "374";"373";"WESCO International";"9,000";"357";"$7,336";"-2.4%";"$101.6 ";"-51.8%";"$4,491";"$3,389" "375";"374";"LifePoint Health";"47,000";"430";"$7,274";"20.9%";"$121.9 ";"-33.0%";"$6,319";"$2,616" "376";"375";"National Oilwell Varco";"36,384";"192";"$7,251";"-50.9%";"-$2,412.0 ";"-";"$21,140";"$15,183" "377";"376";"Kindred Healthcare";"76,650";"372";"$7,227";"1.8%";"-$664.2 ";"-";"$6,113";"$711" "378";"377";"Mosaic";"8,700";"316";"$7,163";"-19.5%";"$297.8 ";"-70.2%";"$16,841";"$10,242" "379";"378";"Alliance Data Systems";"17,000";"404";"$7,138";"10.8%";"$515.8 ";"-13.5%";"$25,514";"$13,925" "380";"379";"Computer Sciences";"59,000";"233";"$7,106";"-41.7%";"$251.0 ";"-";"$7,736";"$9,746" "381";"380";"Huntington Ingalls Industries";"37,000";"378";"$7,068";"0.7%";"$573.0 ";"41.8%";"$6,352";"$9,265" "382";"381";"Leidos Holdings";"32,000";"504";"$7,043";"38.5%";"$244.0 ";"-3.9%";"$9,132";"$7,696" "383";"382";"Erie Insurance Group";"4,988";"411";"$7,016";"5.7%";"$741.9 ";"10.7%";"$18,417";"-" "384";"383";"Tesla";"30,025";"588";"$7,000";"73.0%";"-$674.9 ";"-";"$22,664";"$45,390" "385";"384";"Ascena Retail Group";"41,000";"523";"$6,995";"45.6%";"-$11.9 ";"-";"$5,506";"$830" "386";"385";"Darden Restaurants";"150,942";"371";"$6,934";"-3.2%";"$375.0 ";"-47.1%";"$4,583";"$10,389" "387";"386";"Harman International Industries";"26,000";"419";"$6,912";"12.3%";"$361.7 ";"5.6%";"$6,054";"-" "388";"387";"Nvidia";"10,299";"508";"$6,910";"37.9%";"$1,666.0 ";"171.3%";"$9,841";"$64,160" "389";"388";"R.R. Donnelley & Sons";"44,360";"255";"$6,896";"-38.7%";"-$495.9 ";"-428.2%";"$4,285";"$846" "390";"389";"Fifth Third Bancorp";"17,844";"376";"$6,889";"-2.0%";"$1,564.0 ";"-8.6%";"$142,177";"$19,066" "391";"390";"Quintiles Transnational Holdings";"50,000";"447";"$6,878";"19.9%";"$115.0 ";"-70.3%";"$21,208";"$18,999" "392";"391";"Jones Lang LaSalle";"77,300";"436";"$6,804";"14.0%";"$318.2 ";"-27.5%";"$7,629";"$5,043" "393";"392";"Dover";"29,000";"377";"$6,794";"-3.3%";"$508.9 ";"-41.5%";"$10,116";"$12,502" "394";"393";"Spirit AeroSystems Holdings";"14,400";"389";"$6,793";"2.2%";"$469.7 ";"-40.4%";"$5,405";"$6,900" "395";"394";"Ryder System";"34,500";"395";"$6,787";"3.3%";"$262.5 ";"-13.9%";"$10,903";"$3,992" "396";"395";"A-Mark Precious Metals";"83,000";"426";"$6,784";"11.8%";"$9.3 ";"31.5%";"$437";"$120" "397";"396";"Tractor Supply";"19,500";"415";"$6,780";"8.9%";"$437.1 ";"6.5%";"$2,675";"$8,960" "398";"397";"Sealed Air";"23,000";"375";"$6,778";"-3.6%";"$486.4 ";"45.0%";"$7,389";"$8,432" "399";"398";"Auto-Owners Insurance";"4,737";"398";"$6,775";"4.0%";"$706.3 ";"-13.4%";"$21,571";"-" "400";"399";"Yum China Holdings";"420,000";;"$6,752";"-";"$502.0 ";"-";"$3,727";"$10,453" "401";"400";"Calpine";"2,372";"402";"$6,716";"3.8%";"$92.0 ";"-60.9%";"$19,317";"$3,989" "402";"401";"Owens-Illinois";"27,000";"418";"$6,702";"8.9%";"$209.0 ";"54.8%";"$9,135";"$3,316" "403";"402";"Targa Resources";"1,970";"387";"$6,691";"0.5%";"-$187.3 ";"-421.3%";"$12,871";"$11,743" "404";"403";"JetBlue Airways";"15,986";"405";"$6,632";"3.4%";"$759.0 ";"12.1%";"$9,487";"$6,875" "405";"404";"Jones Financial";"43,000";"382";"$6,632";"-0.9%";"$746.0 ";"-11.0%";"$19,424";"-" "406";"405";"Franklin Resources";"9,059";"344";"$6,618";"-16.7%";"$1,726.7 ";"-15.2%";"$16,099";"$23,823" "407";"406";"Activision Blizzard";"9,500";"532";"$6,608";"41.7%";"$966.0 ";"8.3%";"$17,452";"$37,487" "408";"407";"J.B. Hunt Transport Services";"22,190";"416";"$6,556";"5.9%";"$432.1 ";"1.1%";"$3,829";"$10,212" "409";"408";"Constellation Brands";"9,000";"429";"$6,548";"8.6%";"$1,054.9 ";"25.7%";"$16,965";"$31,775" "410";"409";"NCR";"33,500";"409";"$6,543";"2.7%";"$270.0 ";"-";"$7,673";"$5,620" "411";"410";"Asbury Automotive Group";"7,900";"393";"$6,528";"-0.9%";"$167.2 ";"-1.2%";"$2,336";"$1,271" "412";"411";"American Financial Group";"7,600";"421";"$6,498";"5.7%";"$649.0 ";"84.4%";"$55,072";"$8,303" "413";"412";"Discovery Communications";"7,000";"406";"$6,497";"1.6%";"$1,194.0 ";"15.5%";"$15,758";"$11,306" "414";"413";"Berry Global Group";"21,000";"518";"$6,489";"32.9%";"$236.0 ";"174.4%";"$7,653";"$6,256" "415";"414";"Sanmina";"40,178";"408";"$6,481";"1.7%";"$187.8 ";"-50.2%";"$3,625";"$3,016" "416";"415";"CalAtlantic Group";"3,055";"640";"$6,477";"83.0%";"$484.7 ";"127.0%";"$8,709";"$4,291" "417";"416";"Dr Pepper Snapple Group";"20,000";"413";"$6,440";"2.5%";"$847.0 ";"10.9%";"$9,791";"$17,997" "418";"417";"Dillard";"30,800";"380";"$6,418";"-5.0%";"$169.2 ";"-37.2%";"$3,888";"$1,645" "419";"418";"HRG Group";"16,021";"441";"$6,403";"10.1%";"-$198.8 ";"-";"$35,793";"$3,869" "420";"419";"CMS Energy";"7,750";"403";"$6,399";"-0.9%";"$551.0 ";"5.4%";"$21,622";"$12,528" "421";"420";"Graybar Electric";"8,500";"423";"$6,385";"4.5%";"$93.1 ";"2.2%";"$2,099";"-" "422";"421";"Builders FirstSource";"14,000";"637";"$6,367";"78.6%";"$144.3 ";"-";"$2,910";"$1,669" "423";"422";"Yum Brands";"90,000";"218";"$6,366";"-51.4%";"$1,619.0 ";"25.2%";"$5,478";"$22,611" "424";"423";"Casey";"24,724";"374";"$6,304";"-10.6%";"$226.0 ";"25.1%";"$2,726";"$4,400" "425";"424";"Amphenol";"62,000";"462";"$6,286";"12.9%";"$822.9 ";"7.8%";"$8,499";"$21,897" "426";"425";"Oshkosh";"13,800";"424";"$6,279";"3.0%";"$216.4 ";"-5.7%";"$4,514";"$5,118" "427";"426";"iHeartMedia";"18,700";"414";"$6,274";"0.5%";"-$296.3 ";"-";"$12,862";"$330" "428";"427";"TreeHouse Foods";"16,027";"686";"$6,175";"92.6%";"-$228.6 ";"-298.9%";"$6,546";"$4,813" "429";"428";"Alleghany";"3,420";"509";"$6,131";"22.6%";"$456.9 ";"-18.5%";"$23,757";"$9,476" "430";"429";"Expeditors International of Washington";"16,000";"390";"$6,098";"-7.8%";"$430.8 ";"-5.8%";"$2,791";"$10,208" "431";"430";"Avery Dennison";"25,000";"435";"$6,087";"2.0%";"$320.7 ";"16.9%";"$4,396";"$7,157" "432";"431";"Ameren";"8,629";"425";"$6,076";"-0.4%";"$653.0 ";"3.7%";"$24,699";"$13,245" "433";"432";"Hanesbrands";"67,800";"448";"$6,063";"5.8%";"$539.4 ";"25.8%";"$6,908";"$7,733" "434";"433";"Motorola Solutions";"14,000";"451";"$6,038";"6.0%";"$560.0 ";"-8.2%";"$8,463";"$14,131" "435";"434";"St. Jude Medical";"18,000";"465";"$6,004";"8.4%";"$734.0 ";"-16.6%";"$12,578";"-" "436";"435";"Harley-Davidson";"6,000";"432";"$5,997";"-";"$692.2 ";"-8.0%";"$9,890";"$10,626" "437";"436";"Regions Financial";"22,166";"453";"$5,967";"5.2%";"$1,163.0 ";"9.5%";"$125,968";"$17,512" "438";"437";"Intercontinental Exchange";"5,631";"529";"$5,958";"27.3%";"$1,422.0 ";"11.6%";"$82,003";"$35,530" "439";"438";"Alaska Air Group";"19,112";"459";"$5,931";"5.9%";"$814.0 ";"-4.0%";"$9,962";"$11,407" "440";"439";"Old Republic International";"8,500";"442";"$5,901";"2.3%";"$466.9 ";"10.6%";"$18,592";"$5,382" "441";"440";"Lam Research";"7,500";"491";"$5,886";"11.9%";"$914.0 ";"39.4%";"$12,272";"$20,903" "442";"441";"AK Steel Holding";"8,500";"383";"$5,883";"-12.1%";"-$7.8 ";"-";"$4,036";"$2,263" "443";"442";"Rockwell Automation";"22,000";"412";"$5,880";"-6.8%";"$729.7 ";"-11.8%";"$7,101";"$20,024" "444";"443";"Adobe Systems";"15,706";"524";"$5,854";"22.1%";"$1,168.8 ";"85.7%";"$12,707";"$64,375" "445";"444";"Avon Products";"26,400";"370";"$5,853";"-18.4%";"-$107.6 ";"-";"$3,419";"$1,933" "446";"445";"Terex";"18,100";"396";"$5,841";"-10.7%";"-$176.1 ";"-220.7%";"$5,007";"$3,250" "447";"446";"NVR";"4,900";"498";"$5,835";"12.9%";"$425.3 ";"11.1%";"$2,644";"$7,851" "448";"447";"Dana Holding";"24,900";"428";"$5,826";"-3.9%";"$640.0 ";"302.5%";"$4,860";"$2,783" "449";"448";"Realogy Holdings";"11,800";"449";"$5,810";"1.8%";"$213.0 ";"15.8%";"$7,421";"$4,173" "450";"449";"American Tower";"4,507";"526";"$5,786";"21.3%";"$956.4 ";"39.6%";"$30,879";"$51,921" "451";"450";"Packaging Corp. of America";"14,000";"446";"$5,779";"0.6%";"$449.6 ";"2.9%";"$5,777";"$8,631" "452";"451";"Citizens Financial Group";"17,600";"486";"$5,763";"9.2%";"$1,045.0 ";"24.4%";"$149,520";"$17,597" "453";"452";"United Rentals";"12,500";"440";"$5,762";"-0.9%";"$566.0 ";"-3.2%";"$11,988";"$10,561" "454";"453";"Clorox";"8,000";"455";"$5,761";"1.7%";"$648.0 ";"11.7%";"$4,518";"$17,294" "455";"454";"Genesis Healthcare";"82,000";"457";"$5,733";"2.0%";"-$64.0 ";"-";"$5,779";"$408" "456";"455";"M&T Bank Corp.";"16,487";"510";"$5,722";"14.5%";"$1,315.1 ";"21.8%";"$123,449";"$23,792" "457";"456";"Ingredion";"11,000";"456";"$5,704";"1.5%";"$484.9 ";"20.6%";"$5,782";"$8,646" "458";"457";"UGI";"13,105";"384";"$5,686";"-15.0%";"$364.7 ";"29.8%";"$10,847";"$8,543" "459";"458";"Owens Corning";"16,000";"480";"$5,677";"6.1%";"$393.0 ";"19.1%";"$7,741";"$6,910" "460";"459";"S&P Global";"20,000";"481";"$5,661";"6.6%";"$2,106.0 ";"82.2%";"$8,669";"$33,805" "461";"460";"Markel";"10,900";"476";"$5,612";"4.5%";"$455.7 ";"-21.8%";"$25,875";"$13,623" "462";"461";"Wyndham Worldwide";"37,800";"466";"$5,599";"1.1%";"$611.0 ";"-0.2%";"$9,819";"$8,829" "463";"462";"Arthur J. Gallagher";"24,790";"471";"$5,595";"3.8%";"$414.4 ";"16.1%";"$11,490";"$10,148" "464";"463";"Burlington Stores";"40,000";"500";"$5,591";"9.0%";"$215.9 ";"43.5%";"$2,575";"$6,836" "465";"464";"First American Financial";"19,531";"497";"$5,576";"7.7%";"$343.0 ";"19.1%";"$8,832";"$4,332" "466";"465";"Symantec";"11,000";"400";"$5,568";"-14.4%";"$2,488.0 ";"183.4%";"$11,767";"$18,986" "467";"466";"Patterson";"7,000";"559";"$5,555";"27.0%";"$187.2 ";"-16.2%";"$3,521";"$4,393" "468";"467";"Olin";"6,400";"761";"$5,551";"94.5%";"-$3.9 ";"-";"$8,763";"$5,444" "469";"468";"NetApp";"12,030";"422";"$5,546";"-9.4%";"$229.0 ";"-59.1%";"$10,037";"$11,339" "470";"469";"Raymond James Financial";"11,900";"482";"$5,520";"4.0%";"$529.4 ";"5.4%";"$31,594";"$10,958" "471";"470";"TravelCenters of America";"20,259";"439";"$5,511";"-5.8%";"-$2.0 ";"-107.3%";"$1,660";"$241" "472";"471";"Fiserv";"23,000";"492";"$5,505";"4.8%";"$930.0 ";"30.6%";"$9,743";"$24,741" "473";"472";"Host Hotels & Resorts";"220,000";"472";"$5,488";"1.9%";"$762.0 ";"36.6%";"$11,408";"$13,794" "474";"473";"Insight Enterprises";"5,930";"474";"$5,486";"2.1%";"$84.7 ";"11.7%";"$2,219";"$1,458" "475";"474";"Mattel";"32,000";"450";"$5,457";"-4.3%";"$318.0 ";"-13.9%";"$6,494";"$8,770" "476";"475";"AmTrust Financial Services";"8,000";"531";"$5,451";"18.1%";"$411.0 ";"-8.8%";"$22,615";"$3,158" "477";"476";"Cincinnati Financial";"4,754";"499";"$5,449";"6.0%";"$590.7 ";"-6.8%";"$20,386";"$11,911" "478";"477";"Simon Property Group";"4,050";"488";"$5,435";"3.2%";"$1,838.9 ";"0.6%";"$31,104";"$53,732" "479";"478";"Western Union";"10,700";"468";"$5,423";"-1.1%";"$253.2 ";"-69.8%";"$9,420";"$9,691" "480";"479";"KeyCorp";"15,700";"540";"$5,422";"19.4%";"$791.0 ";"-13.6%";"$136,453";"$19,238" "481";"480";"Delek US Holdings";"1,326";"445";"$5,414";"-6.0%";"-$153.7 ";"-892.3%";"$2,985";"$1,504" "482";"481";"Booz Allen Hamilton Holding";"22,600";"487";"$5,406";"2.5%";"$294.1 ";"26.5%";"$3,010";"$5,307" "483";"482";"Chemours";"7,000";;"$5,400";"-";"$7.0 ";"-";"$6,060";"$7,080" "484";"483";"Western & Southern Financial Group";"2,178";"479";"$5,398";"0.8%";"$241.2 ";"-47.2%";"$43,831";"-" "485";"484";"Celanese";"7,293";"453";"$5,389";"-5.0%";"$900.0 ";"196.1%";"$8,357";"$12,643" "486";"485";"Windstream Holdings";"11,870";"443";"$5,387";"-6.6%";"-$383.5 ";"-";"$11,770";"$1,038" "487";"486";"Seaboard";"11,781";"460";"$5,379";"-3.8%";"$312.0 ";"82.5%";"$4,755";"$4,881" "488";"487";"Essendant";"6,600";"477";"$5,369";"0.1%";"$63.9 ";"-";"$2,164";"$568" "489";"488";"Apache";"3,727";"388";"$5,354";"-19.5%";"-$1,405.0 ";"-";"$22,519";"$19,547" "490";"489";"Airgas";"17,000";"484";"$5,314";"0.2%";"$337.5 ";"-8.3%";"$6,135";"-" "491";"490";"Kelly Services";"7,500";"467";"$5,277";"-4.4%";"$120.8 ";"124.5%";"$2,028";"$836" "492";"491";"Liberty Media";"3,626";"525";"$5,276";"10.0%";"$680.0 ";"962.5%";"$31,377";"$13,055" "493";"492";"Rockwell Collins";"19,000";"490";"$5,259";"-0.1%";"$728.0 ";"6.1%";"$7,707";"$12,711" "494";"493";"Robert Half International";"16,400";"503";"$5,250";"3.1%";"$343.4 ";"-4.0%";"$1,778";"$6,240" "495";"494";"CH2M Hill";"20,000";"478";"$5,236";"-2.3%";"$15.0 ";"-81.3%";"$2,671";"-" "496";"495";"Big Lots";"23,150";"495";"$5,200";"0.2%";"$152.8 ";"7.0%";"$1,608";"$2,180" "497";"496";"Michaels Cos.";"31,000";"517";"$5,197";"5.8%";"$378.2 ";"4.2%";"$2,148";"$4,229" "498";"497";"Toll Brothers";"4,200";"576";"$5,170";"23.9%";"$382.1 ";"5.2%";"$9,737";"$5,872" "499";"498";"Yahoo";"8,500";"513";"$5,169";"4.0%";"-$214.3 ";"-";"$48,083";"$44,391" "500";"499";"Vistra Energy";"4,431";;"$5,164";"-";"-";"-";"$15,167";"$6,968" "501";"500";"ABM Industries";"110,000";"485";"$5,145";"-2.8%";"$57.2 ";"-25.0%";"$2,281";"$2,428" ================================================ FILE: data/HN_posts_year_to_Sep_26_2016.csv ================================================ [File too large to display: 45.2 MB] ================================================ FILE: data/cats.json ================================================ [ { "weight": { "imperial": "7 - 10", "metric": "3 - 5" }, "id": "abys", "name": "Abyssinian", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Abyssinian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/abyssinian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/abyssinian", "temperament": "Active, Energetic, Independent, Intelligent, Gentle", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "The Abyssinian is easy to care for, and a joy to have in your home. They’re affectionate cats and love both people and other animals.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 4, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Abyssinian_(cat)", "hypoallergenic": 0, "reference_image_id": "0XYvRd7oD" }, { "weight": { "imperial": "7 - 10", "metric": "3 - 5" }, "id": "aege", "name": "Aegean", "vetstreet_url": "http://www.vetstreet.com/cats/aegean-cat", "temperament": "Affectionate, Social, Intelligent, Playful, Active", "origin": "Greece", "country_codes": "GR", "country_code": "GR", "description": "Native to the Greek islands known as the Cyclades in the Aegean Sea, these are natural cats, meaning they developed without humans getting involved in their breeding. As a breed, Aegean Cats are rare, although they are numerous on their home islands. They are generally friendly toward people and can be excellent cats for families with children.", "life_span": "9 - 12", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 4, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Aegean_cat", "hypoallergenic": 0, "reference_image_id": "ozEvzdVM-" }, { "weight": { "imperial": "7 - 16", "metric": "3 - 7" }, "id": "abob", "name": "American Bobtail", "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanBobtail.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-bobtail", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-bobtail", "temperament": "Intelligent, Interactive, Lively, Playful, Sensitive", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "American Bobtails are loving and incredibly intelligent cats possessing a distinctive wild appearance. They are extremely interactive cats that bond with their human family with great devotion.", "life_span": "11 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Bobtail", "hypoallergenic": 0, "reference_image_id": "hBXicehMA" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "acur", "name": "American Curl", "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanCurl.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-curl", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-curl", "temperament": "Affectionate, Curious, Intelligent, Interactive, Lively, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Distinguished by truly unique ears that curl back in a graceful arc, offering an alert, perky, happily surprised expression, they cause people to break out into a big smile when viewing their first Curl. Curls are very people-oriented, faithful, affectionate soulmates, adjusting remarkably fast to other pets, children, and new situations.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Curl", "hypoallergenic": 0, "reference_image_id": "xnsqonbjW" }, { "weight": { "imperial": "8 - 15", "metric": "4 - 7" }, "id": "asho", "name": "American Shorthair", "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanShorthair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/american-shorthair", "temperament": "Active, Curious, Easy Going, Playful, Calm", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The American Shorthair is known for its longevity, robust health, good looks, sweet personality, and amiability with children, dogs, and other pets.", "life_span": "15 - 17", "indoor": 0, "lap": 1, "alt_names": "Domestic Shorthair", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Shorthair", "hypoallergenic": 0, "reference_image_id": "JFPROfGtQ" }, { "weight": { "imperial": "8 - 15", "metric": "4 - 7" }, "id": "awir", "name": "American Wirehair", "cfa_url": "http://cfa.org/Breeds/BreedsAB/AmericanWirehair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/american-wirehair", "temperament": "Affectionate, Curious, Gentle, Intelligent, Interactive, Lively, Loyal, Playful, Sensible, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The American Wirehair tends to be a calm and tolerant cat who takes life as it comes. His favorite hobby is bird-watching from a sunny windowsill, and his hunting ability will stand you in good stead if insects enter the house.", "life_span": "14 - 18", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/American_Wirehair", "hypoallergenic": 0, "reference_image_id": "8D--jCd21" }, { "weight": { "imperial": "8 - 16", "metric": "4 - 7" }, "id": "amau", "name": "Arabian Mau", "vcahospitals_url": "", "temperament": "Affectionate, Agile, Curious, Independent, Playful, Loyal", "origin": "United Arab Emirates", "country_codes": "AE", "country_code": "AE", "description": "Arabian Mau cats are social and energetic. Due to their energy levels, these cats do best in homes where their owners will be able to provide them with plenty of playtime, attention and interaction from their owners. These kitties are friendly, intelligent, and adaptable, and will even get along well with other pets and children.", "life_span": "12 - 14", "indoor": 0, "alt_names": "Alley cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Arabian_Mau", "hypoallergenic": 0, "reference_image_id": "k71ULYfRr" }, { "weight": { "imperial": "7 - 15", "metric": "3 - 7" }, "id": "amis", "name": "Australian Mist", "temperament": "Lively, Social, Fun-loving, Relaxed, Affectionate", "origin": "Australia", "country_codes": "AU", "country_code": "AU", "description": "The Australian Mist thrives on human companionship. Tolerant of even the youngest of children, these friendly felines enjoy playing games and being part of the hustle and bustle of a busy household. They make entertaining companions for people of all ages, and are happy to remain indoors between dusk and dawn or to be wholly indoor pets.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "Spotted Mist", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 4, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Mist", "hypoallergenic": 0, "reference_image_id": "_6x-3TiCA" }, { "weight": { "imperial": "4 - 10", "metric": "2 - 5" }, "id": "bali", "name": "Balinese", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Balinese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/balinese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/balinese", "temperament": "Affectionate, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Balinese are curious, outgoing, intelligent cats with excellent communication skills. They are known for their chatty personalities and are always eager to tell you their views on life, love, and what you’ve served them for dinner. ", "life_span": "10 - 15", "indoor": 0, "alt_names": "Long-haired Siamese", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Balinese_(cat)", "hypoallergenic": 1, "reference_image_id": "13MkvUreZ" }, { "weight": { "imperial": "4 - 9", "metric": "2 - 4" }, "id": "bamb", "name": "Bambino", "temperament": "Affectionate, Lively, Friendly, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Bambino is a breed of cat that was created as a cross between the Sphynx and the Munchkin breeds. The Bambino cat has short legs, large upright ears, and is usually hairless. They love to be handled and cuddled up on the laps of their family members.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 1, "hairless": 1, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 1, "wikipedia_url": "https://en.wikipedia.org/wiki/Bambino_cat", "hypoallergenic": 0, "reference_image_id": "5AdhMjeEu" }, { "weight": { "imperial": "6 - 12", "metric": "3 - 7" }, "id": "beng", "name": "Bengal", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Bengal.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/bengal", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bengal", "temperament": "Alert, Agile, Energetic, Demanding, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Bengals are a lot of fun to live with, but they're definitely not the cat for everyone, or for first-time cat owners. Extremely intelligent, curious and active, they demand a lot of interaction and woe betide the owner who doesn't provide it.", "life_span": "12 - 15", "indoor": 0, "lap": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "bidability": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_(cat)", "hypoallergenic": 1, "reference_image_id": "O3btzLlsO" }, { "weight": { "imperial": "6 - 15", "metric": "3 - 7" }, "id": "birm", "name": "Birman", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Birman.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/birman", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/birman", "temperament": "Affectionate, Active, Gentle, Social", "origin": "France", "country_codes": "FR", "country_code": "FR", "description": "The Birman is a docile, quiet cat who loves people and will follow them from room to room. Expect the Birman to want to be involved in what you’re doing. He communicates in a soft voice, mainly to remind you that perhaps it’s time for dinner or maybe for a nice cuddle on the sofa. He enjoys being held and will relax in your arms like a furry baby.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Sacred Birman, Sacred Cat Of Burma", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Birman", "hypoallergenic": 0, "reference_image_id": "HOrX5gwLS" }, { "weight": { "imperial": "6 - 11", "metric": "3 - 5" }, "id": "bomb", "name": "Bombay", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Bombay.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/bombay", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/bombay", "temperament": "Affectionate, Dependent, Gentle, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The the golden eyes and the shiny black coa of the Bopmbay is absolutely striking. Likely to bond most with one family member, the Bombay will follow you from room to room and will almost always have something to say about what you are doing, loving attention and to be carried around, often on his caregiver's shoulder.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "Small black Panther", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bombay_(cat)", "hypoallergenic": 0, "reference_image_id": "5iYq9NmT1" }, { "weight": { "imperial": "8 - 18", "metric": "4 - 8" }, "id": "bslo", "name": "British Longhair", "temperament": "Affectionate, Easy Going, Independent, Intelligent, Loyal, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The British Longhair is a very laid-back relaxed cat, often perceived to be very independent although they will enjoy the company of an equally relaxed and likeminded cat. They are an affectionate breed, but very much on their own terms and tend to prefer to choose to come and sit with their owners rather than being picked up.", "life_span": "12 - 14", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 5, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/British_Longhair", "hypoallergenic": 0, "reference_image_id": "7isAO4Cav" }, { "weight": { "imperial": "12 - 20", "metric": "5 - 9" }, "id": "bsho", "name": "British Shorthair", "cfa_url": "http://cfa.org/Breeds/BreedsAB/BritishShorthair.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/british-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/british-shorthair", "temperament": "Affectionate, Easy Going, Gentle, Loyal, Patient, calm", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The British Shorthair is a very pleasant cat to have as a companion, ans is easy going and placid. The British is a fiercely loyal, loving cat and will attach herself to every one of her family members. While loving to play, she doesn't need hourly attention. If she is in the mood to play, she will find someone and bring a toy to that person. The British also plays well by herself, and thus is a good companion for single people.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Highlander, Highland Straight, Britannica", "adaptability": 5, "affection_level": 4, "child_friendly": 4, "dog_friendly": 5, "energy_level": 2, "grooming": 2, "health_issues": 2, "intelligence": 3, "shedding_level": 4, "social_needs": 3, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/British_Shorthair", "hypoallergenic": 0, "reference_image_id": "s4wQfYoEk" }, { "weight": { "imperial": "6 - 12", "metric": "3 - 5" }, "id": "bure", "name": "Burmese", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/burmese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/burmese", "temperament": "Curious, Intelligent, Gentle, Social, Interactive, Playful, Lively", "origin": "Burma", "country_codes": "MM", "country_code": "MM", "description": "Burmese love being with people, playing with them, and keeping them entertained. They crave close physical contact and abhor an empty lap. They will follow their humans from room to room, and sleep in bed with them, preferably under the covers, cuddled as close as possible. At play, they will turn around to see if their human is watching and being entertained by their crazy antics.", "life_span": "15 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Burmese_(cat)", "hypoallergenic": 1, "reference_image_id": "4lXnnfxac" }, { "weight": { "imperial": "6 - 13", "metric": "3 - 6" }, "id": "buri", "name": "Burmilla", "cfa_url": "http://cfa.org/Breeds/BreedsAB/Burmilla.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/burmilla", "temperament": "Easy Going, Friendly, Intelligent, Lively, Playful, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Burmilla is a fairly placid cat. She tends to be an easy cat to get along with, requiring minimal care. The Burmilla is affectionate and sweet and makes a good companion, the Burmilla is an ideal companion to while away a lonely evening. Loyal, devoted, and affectionate, this cat will stay by its owner, always keeping them company.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Burmilla", "hypoallergenic": 0, "reference_image_id": "jvg3XfEdC" }, { "weight": { "imperial": "10 - 15", "metric": "5 - 7" }, "id": "cspa", "name": "California Spangled", "temperament": "Affectionate, Curious, Intelligent, Loyal, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Perhaps the only thing about the California spangled cat that isn’t wild-like is its personality. Known to be affectionate, gentle and sociable, this breed enjoys spending a great deal of time with its owners. They are very playful, often choosing to perch in high locations and show off their acrobatic skills.", "life_span": "10 - 14", "indoor": 0, "alt_names": "Spangle", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/California_Spangled", "hypoallergenic": 0, "reference_image_id": "B1ERTmgph" }, { "weight": { "imperial": "7 - 12", "metric": "3 - 5" }, "id": "ctif", "name": "Chantilly-Tiffany", "temperament": "Affectionate, Demanding, Interactive, Loyal", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Chantilly is a devoted companion and prefers company to being left alone. While the Chantilly is not demanding, she will \"chirp\" and \"talk\" as if having a conversation. This breed is affectionate, with a sweet temperament. It can stay still for extended periods, happily lounging in the lap of its loved one. This quality makes the Tiffany an ideal traveling companion, and an ideal house companion for senior citizens and the physically handicapped.", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Chantilly, Foreign Longhair", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 5, "health_issues": 1, "intelligence": 5, "shedding_level": 5, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chantilly-Tiffany", "hypoallergenic": 0, "reference_image_id": "TR-5nAd_S" }, { "weight": { "imperial": "6 - 15", "metric": "3 - 7" }, "id": "char", "name": "Chartreux", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/Chartreux.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/chartreux", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/chartreux", "temperament": "Affectionate, Loyal, Intelligent, Social, Lively, Playful", "origin": "France", "country_codes": "FR", "country_code": "FR", "description": "The Chartreux is generally silent but communicative. Short play sessions, mixed with naps and meals are their perfect day. Whilst appreciating any attention you give them, they are not demanding, content instead to follow you around devotedly, sleep on your bed and snuggle with you if you’re not feeling well.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 2, "grooming": 1, "health_issues": 2, "intelligence": 4, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chartreux", "hypoallergenic": 1, "reference_image_id": "j6oFGLpRG" }, { "weight": { "imperial": "7 - 15", "metric": "3 - 7" }, "id": "chau", "name": "Chausie", "temperament": "Affectionate, Intelligent, Playful, Social", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "For those owners who desire a feline capable of evoking the great outdoors, the strikingly beautiful Chausie retains a bit of the wild in its appearance but has the house manners of our friendly, familiar moggies. Very playful, this cat needs a large amount of space to be able to fully embrace its hunting instincts.", "life_span": "12 - 14", "indoor": 0, "alt_names": "Nile Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 1, "experimental": 1, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Chausie", "hypoallergenic": 0, "reference_image_id": "vJ3lEYgXr" }, { "weight": { "imperial": "8 - 15", "metric": "4 - 7" }, "id": "chee", "name": "Cheetoh", "temperament": "Affectionate, Gentle, Intelligent, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Cheetoh has a super affectionate nature and real love for their human companions; they are intelligent with the ability to learn quickly. You can expect that a Cheetoh will be a fun-loving kitty who enjoys playing, running, and jumping through every room in your house.", "life_span": "12 - 14", "indoor": 0, "alt_names": " ", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Bengal_cat#Cheetoh", "hypoallergenic": 0, "reference_image_id": "IFXsxmXLm" }, { "weight": { "imperial": "4 - 10", "metric": "2 - 5" }, "id": "csho", "name": "Colorpoint Shorthair", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/ColorpointShorthair.aspx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/colorpoint-shorthair", "temperament": "Affectionate, Intelligent, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Colorpoint Shorthairs are an affectionate breed, devoted and loyal to their people. Sensitive to their owner’s moods, Colorpoints are more than happy to sit at your side or on your lap and purr words of encouragement on a bad day. They will constantly seek out your lap whenever it is open and in the moments when your lap is preoccupied they will stretch out in sunny spots on the ground.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 3, "affection_level": 4, "child_friendly": 4, "cat_friendly": 3, "dog_friendly": 4, "energy_level": 4, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 5, "bidability": 4, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Colorpoint_Shorthair", "hypoallergenic": 0, "reference_image_id": "oSpqGyUDS" }, { "weight": { "imperial": "5 - 9", "metric": "2 - 4" }, "id": "crex", "name": "Cornish Rex", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/CornishRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/cornish-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/cornish-rex", "temperament": "Affectionate, Intelligent, Active, Curious, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "This is a confident cat who loves people and will follow them around, waiting for any opportunity to sit in a lap or give a kiss. He enjoys being handled, making it easy to take him to the veterinarian or train him for therapy work. The Cornish Rex stay in kitten mode most of their lives and well into their senior years. ", "life_span": "11 - 14", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 2, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cornish_Rex", "hypoallergenic": 1, "reference_image_id": "unX21IBVB" }, { "weight": { "imperial": "8 - 13", "metric": "4 - 6" }, "id": "cymr", "name": "Cymric", "vetstreet_url": "http://www.vetstreet.com/cats/cymric", "temperament": "Gentle, Loyal, Intelligent, Playful", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Cymric is a placid, sweet cat. They do not get too upset about anything that happens in their world. They are loving companions and adore people. They are smart and dexterous, capable of using his paws to get into cabinets or to open doors.", "life_span": "8 - 14", "indoor": 0, "lap": 1, "alt_names": "Spangle", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 5, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cymric_(cat)", "hypoallergenic": 0, "reference_image_id": "3dbtapCWM" }, { "weight": { "imperial": "8 - 16", "metric": "4 - 7" }, "id": "cypr", "name": "Cyprus", "temperament": "Affectionate, Social", "origin": "Cyprus", "country_codes": "CY", "country_code": "CY", "description": "Loving, loyal, social and inquisitive, the Cyprus cat forms strong ties with their families and love nothing more than to be involved in everything that goes on in their surroundings. They are not overly active by nature which makes them the perfect companion for people who would like to share their homes with a laid-back relaxed feline companion. ", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Cypriot cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Cyprus_cat", "hypoallergenic": 0, "reference_image_id": "tJbzb7FKo" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "drex", "name": "Devon Rex", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/DevonRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/devon-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/devon-rex", "temperament": "Highly interactive, Mischievous, Loyal, Social, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The favourite perch of the Devon Rex is right at head level, on the shoulder of her favorite person. She takes a lively interest in everything that is going on and refuses to be left out of any activity. Count on her to stay as close to you as possible, occasionally communicating his opinions in a quiet voice. She loves people and welcomes the attentions of friends and family alike.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Pixie cat, Alien cat, Poodle cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Devon_Rex", "hypoallergenic": 1, "reference_image_id": "4RzEwvyzz" }, { "weight": { "imperial": "10 - 12", "metric": "5 - 6" }, "id": "dons", "name": "Donskoy", "temperament": "Playful, affectionate, loyal, social", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "Donskoy are affectionate, intelligent, and easy-going. They demand lots of attention and interaction. The Donskoy also gets along well with other pets. It is now thought the same gene that causes degrees of hairlessness in the Donskoy also causes alterations in cat personality, making them calmer the less hair they have.", "life_span": "12 - 15", "indoor": 0, "adaptability": 4, "affection_level": 4, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 4, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 2, "experimental": 0, "hairless": 1, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Donskoy_(cat)", "hypoallergenic": 0, "reference_image_id": "3KG57GfMW" }, { "weight": { "imperial": "9 - 12", "metric": "4 - 6" }, "id": "lihu", "name": "Dragon Li", "vetstreet_url": "http://www.vetstreet.com/cats/li-hua", "temperament": "Intelligent, Friendly, Gentle, Loving, Loyal", "origin": "China", "country_codes": "CN", "country_code": "CN", "description": "The Dragon Li is loyal, but not particularly affectionate. They are known to be very intelligent, and their natural breed status means that they're very active. She is is gentle with people, and has a reputation as a talented hunter of rats and other vermin.", "life_span": "12 - 15", "indoor": 1, "alt_names": "Chinese Lia Hua, Lí hua māo (貍花貓), Li Hua", "adaptability": 3, "affection_level": 3, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Dragon_Li", "hypoallergenic": 0, "reference_image_id": "BQMSld0A0" }, { "weight": { "imperial": "6 - 14", "metric": "3 - 6" }, "id": "emau", "name": "Egyptian Mau", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/EgyptianMau.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/egyptian-mau", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/egyptian-mau", "temperament": "Agile, Dependent, Gentle, Intelligent, Lively, Loyal, Playful", "origin": "Egypt", "country_codes": "EG", "country_code": "EG", "description": "The Egyptian Mau is gentle and reserved. She loves her people and desires attention and affection from them but is wary of others. Early, continuing socialization is essential with this sensitive and sometimes shy cat, especially if you plan to show or travel with her. Otherwise, she can be easily startled by unexpected noises or events.", "life_span": "18 - 20", "indoor": 0, "lap": 1, "alt_names": "Pharaoh Cat", "adaptability": 2, "affection_level": 5, "child_friendly": 3, "dog_friendly": 3, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 4, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Egyptian_Mau", "hypoallergenic": 0, "reference_image_id": "TuSyTkt2n" }, { "weight": { "imperial": "7 - 14", "metric": "3 - 6" }, "id": "ebur", "name": "European Burmese", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/EuropeanBurmese.aspx", "temperament": "Sweet, Affectionate, Loyal", "origin": "Burma", "country_codes": "MM", "country_code": "MM", "description": "The European Burmese is a very affectionate, intelligent, and loyal cat. They thrive on companionship and will want to be with you, participating in everything you do. While they might pick a favorite family member, chances are that they will interact with everyone in the home, as well as any visitors that come to call. They are inquisitive and playful, even as adults. ", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "cat_friendly": 4, "dog_friendly": 4, "energy_level": 4, "grooming": 1, "health_issues": 4, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 4, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "hypoallergenic": 0 }, { "weight": { "imperial": "7 - 14", "metric": "3 - 6" }, "id": "esho", "name": "Exotic Shorthair", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/Exotic.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/exotic-shorthair", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/exotic-shorthair", "temperament": "Affectionate, Sweet, Loyal, Quiet, Peaceful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Exotic Shorthair is a gentle friendly cat that has the same personality as the Persian. They love having fun, don’t mind the company of other cats and dogs, also love to curl up for a sleep in a safe place. Exotics love their own people, but around strangers they are cautious at first. Given time, they usually warm up to visitors.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Exotic", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 2, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Exotic_Shorthair", "hypoallergenic": 0, "reference_image_id": "YnPrYEmfe" }, { "weight": { "imperial": "6 - 10", "metric": "3 - 5" }, "id": "hbro", "name": "Havana Brown", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/HavanaBrown.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/havana-brown", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/havana-brown", "temperament": "Affectionate, Curious, Demanding, Friendly, Intelligent, Playful", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Havana Brown is human oriented, playful, and curious. She has a strong desire to spend time with her people and involve herself in everything they do. Being naturally inquisitive, the Havana Brown reaches out with a paw to touch and feel when investigating curiosities in its environment. They are truly sensitive by nature and frequently gently touch their human companions as if they are extending a paw of friendship.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Havana, HB", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Havana_Brown", "hypoallergenic": 0, "reference_image_id": "njK25knLH" }, { "weight": { "imperial": "7 - 14", "metric": "3 - 6" }, "id": "hima", "name": "Himalayan", "vetstreet_url": "http://www.vetstreet.com/cats/himalayan", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/himalayan", "temperament": "Dependent, Gentle, Intelligent, Quiet, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Calm and devoted, Himalayans make excellent companions, though they prefer a quieter home. They are playful in a sedate kind of way and enjoy having an assortment of toys. The Himalayan will stretch out next to you, sleep in your bed and even sit on your lap when she is in the mood.", "life_span": "9 - 15", "indoor": 0, "lap": 1, "alt_names": "Himalayan Persian, Colourpoint Persian, Longhaired Colourpoint, Himmy", "adaptability": 5, "affection_level": 5, "child_friendly": 2, "dog_friendly": 2, "energy_level": 1, "grooming": 5, "health_issues": 3, "intelligence": 3, "shedding_level": 4, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Himalayan_(cat)", "hypoallergenic": 0, "reference_image_id": "CDhOtM-Ig" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "jbob", "name": "Japanese Bobtail", "cfa_url": "http://cfa.org/Breeds/BreedsCJ/JapaneseBobtail.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/japanese-bobtail", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/japanese-bobtail", "temperament": "Active, Agile, Clever, Easy Going, Intelligent, Lively, Loyal, Playful, Social", "origin": "Japan", "country_codes": "JP", "country_code": "JP", "description": "The Japanese Bobtail is an active, sweet, loving and highly intelligent breed. They love to be with people and play seemingly endlessly. They learn their name and respond to it. They bring toys to people and play fetch with a favorite toy for hours. Bobtails are social and are at their best when in the company of people. They take over the house and are not intimidated. If a dog is in the house, Bobtails assume Bobtails are in charge.", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Japanese Truncated Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Japanese_Bobtail", "hypoallergenic": 0, "reference_image_id": "-tm9-znzl" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "java", "name": "Javanese", "vetstreet_url": "http://www.vetstreet.com/cats/javanese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/javanese", "temperament": "Active, Devoted, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Javanese are endlessly interested, intelligent and active. They tend to enjoy jumping to great heights, playing with fishing pole-type or other interactive toys and just generally investigating their surroundings. He will attempt to copy things you do, such as opening doors or drawers.", "life_span": "10 - 12", "indoor": 0, "alt_names": " ", "adaptability": 4, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Javanese_cat", "hypoallergenic": 1, "reference_image_id": "xoI_EpOKe" }, { "weight": { "imperial": "8 - 12", "metric": "4 - 6" }, "id": "khao", "name": "Khao Manee", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/KhaoManee.aspx", "temperament": "Calm, Relaxed, Talkative, Playful, Warm", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "The Khao Manee is highly intelligent, with an extrovert and inquisitive nature, however they are also very calm and relaxed, making them an idea lap cat.", "life_span": "10 - 12", "indoor": 0, "lap": 1, "alt_names": "Diamond Eye cat", "adaptability": 4, "affection_level": 4, "child_friendly": 3, "cat_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 4, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Khao_Manee", "hypoallergenic": 0, "reference_image_id": "165ok6ESN" }, { "weight": { "imperial": "7 - 11", "metric": "3 - 5" }, "id": "kora", "name": "Korat", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Korat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/korat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/korat", "temperament": "Active, Loyal, highly intelligent, Expressive, Trainable", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "The Korat is a natural breed, and one of the oldest stable cat breeds. They are highly intelligent and confident cats that can be fearless, although they are startled by loud sounds and sudden movements. Korats form strong bonds with their people and like to cuddle and stay nearby.", "life_span": "10 - 15", "indoor": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 2, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Korat", "hypoallergenic": 0, "reference_image_id": "DbwiefiaY" }, { "weight": { "imperial": "8 - 15", "metric": "4 - 7" }, "id": "kuri", "name": "Kurilian", "vetstreet_url": "http://www.vetstreet.com/cats/kurilian-bobtail", "temperament": "Independent, highly intelligent, clever, inquisitive, sociable, playful, trainable", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "The character of the Kurilian Bobtail is independent, highly intelligent, clever, inquisitive, sociable, playful, trainable, absent of aggression and very gentle. They are devoted to their humans and when allowed are either on the lap of or sleeping in bed with their owners.", "life_span": "15 - 20", "indoor": 0, "adaptability": 5, "affection_level": 5, "child_friendly": 5, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Kurilian_Bobtail", "hypoallergenic": 0, "reference_image_id": "NZpO4pU56M" }, { "weight": { "imperial": "6 - 10", "metric": "3 - 5" }, "id": "lape", "name": "LaPerm", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/LaPerm.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/laperm", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/laperm", "temperament": "Affectionate, Friendly, Gentle, Intelligent, Playful, Quiet", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "LaPerms are gentle and affectionate but also very active. Unlike many active breeds, the LaPerm is also quite content to be a lap cat. The LaPerm will often follow your lead; that is, if they are busy playing and you decide to sit and relax, simply pick up your LaPerm and sit down with it, and it will stay in your lap, devouring the attention you give it.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "Si-Sawat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/LaPerm", "hypoallergenic": 1, "reference_image_id": "aKbsEYjSl" }, { "weight": { "imperial": "12 - 18", "metric": "5 - 8" }, "id": "mcoo", "name": "Maine Coon", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/MaineCoon.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/maine-coon", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/maine-coon", "temperament": "Adaptable, Intelligent, Loving, Gentle, Independent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "They are known for their size and luxurious long coat Maine Coons are considered a gentle giant. The good-natured and affable Maine Coon adapts well to many lifestyles and personalities. She likes being with people and has the habit of following them around, but isn’t needy. Most Maine Coons love water and they can be quite good swimmers.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Coon Cat, Maine Cat, Maine Shag, Snowshoe Cat, American Longhair, The Gentle Giants", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Maine_Coon", "hypoallergenic": 0, "reference_image_id": "OOD3VXAQn" }, { "weight": { "imperial": "6 - 13", "metric": "3 - 6" }, "id": "mala", "name": "Malayan", "temperament": "Affectionate, Interactive, Playful, Social", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "Malayans love to explore and even enjoy traveling by way of a cat carrier. They are quite a talkative and rather loud cat with an apparent strong will. These cats will make sure that you give it the attention it seeks and always seem to want to be held and hugged. They will constantly interact with people, even strangers. They love to play and cuddle.", "life_span": "12 - 18", "indoor": 0, "alt_names": "Asian", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Asian_cat", "hypoallergenic": 0 }, { "weight": { "imperial": "7 - 13", "metric": "3 - 6" }, "id": "manx", "name": "Manx", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Manx.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/manx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/manx", "temperament": "Easy Going, Intelligent, Loyal, Playful, Social", "origin": "Isle of Man", "country_codes": "IM", "country_code": "IM", "description": "The Manx is a placid, sweet cat that is gentle and playful. She never seems to get too upset about anything. She is a loving companion and adores being with people.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Manks, Stubbin, Rumpy", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 5, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Manx_(cat)", "hypoallergenic": 0, "reference_image_id": "fhYh2PDcC" }, { "weight": { "imperial": "5 - 9", "metric": "2 - 4" }, "id": "munc", "name": "Munchkin", "vetstreet_url": "http://www.vetstreet.com/cats/munchkin", "temperament": "Agile, Easy Going, Intelligent, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Munchkin is an outgoing cat who enjoys being handled. She has lots of energy and is faster and more agile than she looks. The shortness of their legs does not seem to interfere with their running and leaping abilities.", "life_span": "10 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 2, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 1, "wikipedia_url": "https://en.wikipedia.org/wiki/Munchkin_(cat)", "hypoallergenic": 0, "reference_image_id": "j5cVSqLer" }, { "weight": { "imperial": "7 - 11", "metric": "3 - 5" }, "id": "nebe", "name": "Nebelung", "temperament": "Gentle, Quiet, Shy, Playful", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Nebelung may have a reserved nature, but she loves to play (being especially fond of retrieving) and enjoys jumping or climbing to high places where she can study people and situations at her leisure before making up her mind about whether she wants to get involved.", "life_span": "11 - 16", "indoor": 0, "lap": 1, "alt_names": "Longhaired Russian Blue", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 4, "energy_level": 3, "grooming": 3, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Nebelung", "hypoallergenic": 0, "reference_image_id": "OGTWqNNOt" }, { "weight": { "imperial": "8 - 16", "metric": "4 - 7" }, "id": "norw", "name": "Norwegian Forest Cat", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/NorwegianForestCat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/norwegian-forest-cat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/norwegian-forest-cat", "temperament": "Sweet, Active, Intelligent, Social, Playful, Lively, Curious", "origin": "Norway", "country_codes": "NO", "country_code": "NO", "description": "The Norwegian Forest Cat is a sweet, loving cat. She appreciates praise and loves to interact with her parent. She makes a loving companion and bonds with her parents once she accepts them for her own. She is still a hunter at heart. She loves to chase toys as if they are real. She is territorial and patrols several times each day to make certain that all is fine.", "life_span": "12 - 16", "indoor": 0, "alt_names": "Skogkatt / Skaukatt, Norsk Skogkatt / Norsk Skaukatt, Weegie", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 4, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Norwegian_Forest_Cat", "hypoallergenic": 0, "reference_image_id": "06dgGmEOV" }, { "weight": { "imperial": "7 - 15", "metric": "3 - 7" }, "id": "ocic", "name": "Ocicat", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ocicat.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ocicat", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ocicat", "temperament": "Active, Agile, Curious, Demanding, Friendly, Gentle, Lively, Playful, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Loyal and devoted to their owners, the Ocicat is intelligent, confident, outgoing, and seems to have many dog traits. They can be trained to fetch toys, walk on a lead, taught to 'speak', come when called, and follow other commands. ", "life_span": "12 - 14", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ocicat", "hypoallergenic": 1, "reference_image_id": "JAx-08Y0n" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "orie", "name": "Oriental", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Oriental.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/oriental", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/oriental", "temperament": "Energetic, Affectionate, Intelligent, Social, Playful, Curious", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Orientals are passionate about the people in their lives. They become extremely attached to their humans, so be prepared for a lifetime commitment. When you are not available to entertain her, an Oriental will divert herself by jumping on top of the refrigerator, opening drawers, seeking out new hideaways.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Foreign Type", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Oriental_Shorthair", "hypoallergenic": 1, "reference_image_id": "LutjkZJpH" }, { "weight": { "imperial": "9 - 14", "metric": "4 - 6" }, "id": "pers", "name": "Persian", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Persian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/persian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/persian", "temperament": "Affectionate, loyal, Sedate, Quiet", "origin": "Iran (Persia)", "country_codes": "IR", "country_code": "IR", "description": "Persians are sweet, gentle cats that can be playful or quiet and laid-back. Great with families and children, they absolutely love to lounge around the house. While they don’t mind a full house or active kids, they’ll usually hide when they need some alone time.", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Longhair, Persian Longhair, Shiraz, Shirazi", "adaptability": 5, "affection_level": 5, "child_friendly": 2, "dog_friendly": 2, "energy_level": 1, "grooming": 5, "health_issues": 3, "intelligence": 3, "shedding_level": 4, "social_needs": 4, "stranger_friendly": 2, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Persian_(cat)", "hypoallergenic": 0, "reference_image_id": "-Zfz5z2jK" }, { "weight": { "imperial": "8 - 17", "metric": "4 - 8" }, "id": "pixi", "name": "Pixie-bob", "vetstreet_url": "http://www.vetstreet.com/cats/pixiebob", "temperament": "Affectionate, Social, Intelligent, Loyal", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Companionable and affectionate, the Pixie-bob wants to be an integral part of the family. The Pixie-Bob’s ability to bond with their humans along with their patient personas make them excellent companions for children.", "life_span": "13 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 1, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Pixiebob", "hypoallergenic": 0, "reference_image_id": "z7fJRNeN6" }, { "weight": { "imperial": "8 - 20", "metric": "4 - 9" }, "id": "raga", "name": "Ragamuffin", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ragamuffin.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ragamuffin", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ragamuffin", "temperament": "Affectionate, Friendly, Gentle, Calm", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Ragamuffin is calm, even tempered and gets along well with all family members. Changes in routine generally do not upset her. She is an ideal companion for those in apartments, and with children due to her patient nature.", "life_span": "12 - 16", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 3, "health_issues": 3, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ragamuffin_cat", "hypoallergenic": 0, "reference_image_id": "SMuZx-bFM" }, { "weight": { "imperial": "12 - 20", "metric": "5 - 9" }, "id": "ragd", "name": "Ragdoll", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/Ragdoll.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/ragdoll", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/ragdoll", "temperament": "Affectionate, Friendly, Gentle, Quiet, Easygoing", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Ragdolls love their people, greeting them at the door, following them around the house, and leaping into a lap or snuggling in bed whenever given the chance. They are the epitome of a lap cat, enjoy being carried and collapsing into the arms of anyone who holds them.", "life_span": "12 - 17", "indoor": 0, "lap": 1, "alt_names": "Rag doll", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 3, "intelligence": 3, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Ragdoll", "hypoallergenic": 0, "reference_image_id": "oGefY4YoG" }, { "weight": { "imperial": "5 - 11", "metric": "2 - 5" }, "id": "rblu", "name": "Russian Blue", "cfa_url": "http://cfa.org/Breeds/BreedsKthruR/RussianBlue.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/russian-blue-nebelung", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/russian-blue", "temperament": "Active, Dependent, Easy Going, Gentle, Intelligent, Loyal, Playful, Quiet", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "Russian Blues are very loving and reserved. They do not like noisy households but they do like to play and can be quite active when outdoors. They bond very closely with their owner and are known to be compatible with other pets.", "life_span": "10 - 16", "indoor": 0, "lap": 1, "alt_names": "Archangel Blue, Archangel Cat", "adaptability": 3, "affection_level": 3, "child_friendly": 3, "dog_friendly": 3, "energy_level": 3, "grooming": 3, "health_issues": 1, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 1, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Russian_Blue", "hypoallergenic": 1, "reference_image_id": "Rhj-JsTLP" }, { "weight": { "imperial": "8 - 25", "metric": "4 - 11" }, "id": "sava", "name": "Savannah", "vetstreet_url": "http://www.vetstreet.com/cats/savannah", "temperament": "Curious, Social, Intelligent, Loyal, Outgoing, Adventurous, Affectionate", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "Savannah is the feline version of a dog. Actively seeking social interaction, they are given to pouting if left out. Remaining kitten-like through life. Profoundly loyal to immediate family members whilst questioning the presence of strangers. Making excellent companions that are loyal, intelligent and eager to be involved.", "life_span": "17 - 20", "indoor": 0, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 1, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Savannah_cat", "hypoallergenic": 0, "reference_image_id": "a8nIYvs6S" }, { "weight": { "imperial": "5 - 11", "metric": "2 - 5" }, "id": "sfol", "name": "Scottish Fold", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/ScottishFold.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/scottish-fold-highland-fold", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/scottish-fold", "temperament": "Affectionate, Intelligent, Loyal, Playful, Social, Sweet, Loving", "origin": "United Kingdom", "country_codes": "GB", "country_code": "GB", "description": "The Scottish Fold is a sweet, charming breed. She is an easy cat to live with and to care for. She is affectionate and is comfortable with all members of her family. Her tail should be handled gently. Folds are known for sleeping on their backs, and for sitting with their legs stretched out and their paws on their belly. This is called the \"Buddha Position\".", "life_span": "11 - 14", "indoor": 0, "alt_names": "Scot Fold", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 1, "health_issues": 4, "intelligence": 3, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Scottish_Fold", "hypoallergenic": 0, "reference_image_id": "o9t0LDcsa" }, { "weight": { "imperial": "6 - 16", "metric": "3 - 7" }, "id": "srex", "name": "Selkirk Rex", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/SelkirkRex.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/selkirk-rex", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/selkirk-rex", "temperament": "Active, Affectionate, Dependent, Gentle, Patient, Playful, Quiet, Social", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Selkirk Rex is an incredibly patient, loving, and tolerant breed. The Selkirk also has a silly side and is sometimes described as clownish. She loves being a lap cat and will be happy to chat with you in a quiet voice if you talk to her. ", "life_span": "14 - 15", "indoor": 0, "lap": 1, "alt_names": "Shepherd Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 4, "intelligence": 3, "shedding_level": 1, "social_needs": 3, "stranger_friendly": 3, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 1, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Selkirk_Rex", "hypoallergenic": 1, "reference_image_id": "II9dOZmrw" }, { "weight": { "imperial": "8 - 15", "metric": "4 - 7" }, "id": "siam", "name": "Siamese", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Siamese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/siamese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/siamese", "temperament": "Active, Agile, Clever, Sociable, Loving, Energetic", "origin": "Thailand", "country_codes": "TH", "country_code": "TH", "description": "While Siamese cats are extremely fond of their people, they will follow you around and supervise your every move, being talkative and opinionated. They are a demanding and social cat, that do not like being left alone for long periods.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Siam, Thai Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Siamese_(cat)", "hypoallergenic": 1, "reference_image_id": "ai6Jps4sx" }, { "weight": { "imperial": "8 - 16", "metric": "4 - 7" }, "id": "sibe", "name": "Siberian", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Siberian.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/siberian", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/siberian", "temperament": "Curious, Intelligent, Loyal, Sweet, Agile, Playful, Affectionate", "origin": "Russia", "country_codes": "RU", "country_code": "RU", "description": "The Siberians dog like temperament and affection makes the ideal lap cat and will live quite happily indoors. Very agile and powerful, the Siberian cat can easily leap and reach high places, including the tops of refrigerators and even doors. ", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Moscow Semi-longhair, HairSiberian Forest Cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 3, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Siberian_(cat)", "hypoallergenic": 1, "reference_image_id": "3bkZAjRh1" }, { "weight": { "imperial": "5 - 8", "metric": "2 - 4" }, "id": "sing", "name": "Singapura", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Singapura.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/singapura", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/singapura", "temperament": "Affectionate, Curious, Easy Going, Intelligent, Interactive, Lively, Loyal", "origin": "Singapore", "country_codes": "SP", "country_code": "SP", "description": "The Singapura is usually cautious when it comes to meeting new people, but loves attention from his family so much that she sometimes has the reputation of being a pest. This is a highly active, curious and affectionate cat. She may be small, but she knows she’s in charge", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "Drain Cat, Kucinta, Pura", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Singapura_(cat)", "hypoallergenic": 0, "reference_image_id": "Qtncp2nRe" }, { "weight": { "imperial": "7 - 12", "metric": "3 - 5" }, "id": "snow", "name": "Snowshoe", "temperament": "Affectionate, Social, Intelligent, Sweet-tempered", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Snowshoe is a vibrant, energetic, affectionate and intelligent cat. They love being around people which makes them ideal for families, and becomes unhappy when left alone for long periods of time. Usually attaching themselves to one person, they do whatever they can to get your attention.", "life_span": "14 - 19", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 4, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Snowshoe_(cat)", "hypoallergenic": 0, "reference_image_id": "MK-sYESvO" }, { "weight": { "imperial": "6 - 12", "metric": "3 - 5" }, "id": "soma", "name": "Somali", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Somali.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/somali", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/somali", "temperament": "Mischievous, Tenacious, Intelligent, Affectionate, Gentle, Interactive, Loyal", "origin": "Somalia", "country_codes": "SO", "country_code": "SO", "description": "The Somali lives life to the fullest. He climbs higher, jumps farther, plays harder. Nothing escapes the notice of this highly intelligent and inquisitive cat. Somalis love the company of humans and other animals.", "life_span": "12 - 16", "indoor": 0, "alt_names": "Fox Cat, Long-Haired Abyssinian", "adaptability": 5, "affection_level": 5, "child_friendly": 3, "dog_friendly": 4, "energy_level": 5, "grooming": 3, "health_issues": 2, "intelligence": 5, "shedding_level": 4, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 1, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Somali_(cat)", "hypoallergenic": 0, "reference_image_id": "EPF2ejNS0" }, { "weight": { "imperial": "6 - 12", "metric": "3 - 5" }, "id": "sphy", "name": "Sphynx", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Sphynx.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/sphynx", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/sphynx", "temperament": "Loyal, Inquisitive, Friendly, Quiet, Gentle", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "The Sphynx is an intelligent, inquisitive, extremely friendly people-oriented breed. Sphynx commonly greet their owners at the front door, with obvious excitement and happiness. She has an unexpected sense of humor that is often at odds with her dour expression.", "life_span": "12 - 14", "indoor": 0, "lap": 1, "alt_names": "Canadian Hairless, Canadian Sphynx", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 3, "grooming": 2, "health_issues": 4, "intelligence": 5, "shedding_level": 1, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 1, "natural": 0, "rare": 1, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Sphynx_(cat)", "hypoallergenic": 1, "reference_image_id": "BDb8ZXb1v" }, { "weight": { "imperial": "6 - 12", "metric": "3 - 5" }, "id": "tonk", "name": "Tonkinese", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/Tonkinese.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/tonkinese", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/tonkinese", "temperament": "Curious, Intelligent, Social, Lively, Outgoing, Playful, Affectionate", "origin": "Canada", "country_codes": "CA", "country_code": "CA", "description": "Intelligent and generous with their affection, a Tonkinese will supervise all activities with curiosity. Loving, social, active, playful, yet content to be a lap cat", "life_span": "14 - 16", "indoor": 0, "lap": 1, "alt_names": "Tonk", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Tonkinese_(cat)", "hypoallergenic": 0, "reference_image_id": "KBroiVNCM" }, { "weight": { "imperial": "7 - 15", "metric": "3 - 7" }, "id": "toyg", "name": "Toyger", "vetstreet_url": "http://www.vetstreet.com/cats/toyger", "temperament": "Playful, Social, Intelligent", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "The Toyger has a sweet, calm personality and is generally friendly. He's outgoing enough to walk on a leash, energetic enough to play fetch and other interactive games, and confident enough to get along with other cats and friendly dogs.", "life_span": "12 - 15", "indoor": 0, "lap": 1, "alt_names": "", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 1, "health_issues": 2, "intelligence": 5, "shedding_level": 3, "social_needs": 3, "stranger_friendly": 5, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Toyger", "hypoallergenic": 0, "reference_image_id": "O3F3_S1XN" }, { "weight": { "imperial": "5 - 10", "metric": "2 - 5" }, "id": "tang", "name": "Turkish Angora", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/TurkishAngora.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/turkish-angora", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/turkish-angora", "temperament": "Affectionate, Agile, Clever, Gentle, Intelligent, Playful, Social", "origin": "Turkey", "country_codes": "TR", "country_code": "TR", "description": "This is a smart and intelligent cat which bonds well with humans. With its affectionate and playful personality the Angora is a top choice for families. The Angora gets along great with other pets in the home, but it will make clear who is in charge, and who the house belongs to", "life_span": "15 - 18", "indoor": 0, "alt_names": "Ankara", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 2, "intelligence": 5, "shedding_level": 2, "social_needs": 5, "stranger_friendly": 5, "vocalisation": 3, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Turkish_Angora", "hypoallergenic": 0, "reference_image_id": "7CGV6WVXq" }, { "weight": { "imperial": "7 - 20", "metric": "3 - 9" }, "id": "tvan", "name": "Turkish Van", "cfa_url": "http://cfa.org/Breeds/BreedsSthruT/TurkishVan.aspx", "vetstreet_url": "http://www.vetstreet.com/cats/turkish-van", "vcahospitals_url": "https://vcahospitals.com/know-your-pet/cat-breeds/turkish-van", "temperament": "Agile, Intelligent, Loyal, Playful, Energetic", "origin": "Turkey", "country_codes": "TR", "country_code": "TR", "description": "While the Turkish Van loves to jump and climb, play with toys, retrieve and play chase, she is is big and ungainly; this is one cat who doesn’t always land on his feet. While not much of a lap cat, the Van will be happy to cuddle next to you and sleep in your bed. ", "life_span": "12 - 17", "indoor": 0, "alt_names": "Turkish Cat, Swimming cat", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 2, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 1, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/Turkish_Van", "hypoallergenic": 0, "reference_image_id": "sxIXJax6h" }, { "weight": { "imperial": "12 - 18", "metric": "5 - 8" }, "id": "ycho", "name": "York Chocolate", "temperament": "Playful, Social, Intelligent, Curious, Friendly", "origin": "United States", "country_codes": "US", "country_code": "US", "description": "York Chocolate cats are known to be true lap cats with a sweet temperament. They love to be cuddled and petted. Their curious nature makes them follow you all the time and participate in almost everything you do, even if it's related to water: unlike many other cats, York Chocolates love it.", "life_span": "13 - 15", "indoor": 0, "lap": 1, "alt_names": "York", "adaptability": 5, "affection_level": 5, "child_friendly": 4, "dog_friendly": 5, "energy_level": 5, "grooming": 3, "health_issues": 1, "intelligence": 5, "shedding_level": 3, "social_needs": 4, "stranger_friendly": 4, "vocalisation": 5, "experimental": 0, "hairless": 0, "natural": 0, "rare": 0, "rex": 0, "suppressed_tail": 0, "short_legs": 0, "wikipedia_url": "https://en.wikipedia.org/wiki/York_Chocolate", "hypoallergenic": 0, "reference_image_id": "0SxW2SQ_S" } ] ================================================ FILE: data/countries-data.py ================================================ [ { "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" } ] ================================================ FILE: data/countries.py ================================================ countries = [ 'Afghanistan', 'Albania', 'Algeria', 'Andorra', 'Angola', 'Antigua and Barbuda', 'Argentina', 'Armenia', 'Australia', 'Austria', 'Azerbaijan', 'Bahamas', 'Bahrain', 'Bangladesh', 'Barbados', 'Belarus', 'Belgium', 'Belize', 'Benin', 'Bhutan', 'Bolivia', 'Bosnia and Herzegovina', 'Botswana', 'Brazil', 'Brunei', 'Bulgaria', 'Burkina Faso', 'Burundi', 'Cabo Verde', 'Cambodia', 'Cameroon', 'Canada', 'Central African Republic', 'Chad', 'Chile', 'China', 'Colombia', 'Comoros', 'Congo, Democratic Republic of the', 'Congo, Republic of the', 'Costa Rica', "Côte d'Ivoire", 'Croatia', 'Cuba', 'Cyprus', 'Czech Republic', 'Denmark', 'Djibouti', 'Dominica', 'Dominican Republic', 'East Timor (Timor-Leste)', 'Ecuador', 'Egypt', 'El Salvador', 'Equatorial Guinea', 'Eritrea', 'Estonia', 'Eswatini', 'Ethiopia', 'Fiji', 'Finland', 'France', 'Gabon', 'Gambia', 'Georgia', 'Germany', 'Ghana', 'Greece', 'Grenada', 'Guatemala', 'Guinea', 'Guinea-Bissau', 'Guyana', 'Haiti', 'Honduras', 'Hungary', 'Iceland', 'India', 'Indonesia', 'Iran', 'Iraq', 'Ireland', 'Israel', 'Italy', 'Jamaica', 'Japan', 'Jordan', 'Kazakhstan', 'Kenya', 'Kiribati', 'Korea, North', 'Korea, South', 'Kuwait', 'Kyrgyzstan', 'Laos', 'Latvia', 'Lebanon', 'Lesotho', 'Liberia', 'Libya', 'Liechtenstein', 'Lithuania', 'Luxembourg', 'Madagascar', 'Malawi', 'Malaysia', 'Maldives', 'Mali', 'Malta', 'Marshall Islands', 'Mauritania', 'Mauritius', 'Mexico', 'Micronesia', 'Moldova', 'Monaco', 'Mongolia', 'Montenegro', 'Morocco', 'Mozambique', 'Myanmar', 'Namibia', 'Nauru', 'Nepal', 'Netherlands', 'New Zealand', 'Nicaragua', 'Niger', 'Nigeria', 'North Macedonia', 'Norway', 'Oman', 'Pakistan', 'Palau', 'Palestine', 'Panama', 'Papua New Guinea', 'Paraguay', 'Peru', 'Philippines', 'Poland', 'Portugal', 'Qatar', 'Romania', 'Russia', 'Rwanda', 'Saint Kitts and Nevis', 'Saint Lucia', 'Saint Vincent and the Grenadines', 'Samoa', 'San Marino', 'Sao Tome and Principe', 'Saudi Arabia', 'Senegal', 'Serbia', 'Seychelles', 'Sierra Leone', 'Singapore', 'Slovakia', 'Slovenia', 'Solomon Islands', 'Somalia', 'South Africa', 'South Sudan', 'Spain', 'Sri Lanka', 'Sudan', 'Suriname', 'Sweden', 'Switzerland', 'Syria', 'Tajikistan', 'Tanzania', 'Thailand', 'Togo', 'Tonga', 'Trinidad and Tobago', 'Tunisia', 'Turkey', 'Turkmenistan', 'Tuvalu', 'Uganda', 'Ukraine', 'United Arab Emirates', 'United Kingdom', 'United States', 'Uruguay', 'Uzbekistan', 'Vanuatu', 'Vatican City', 'Venezuela', 'Vietnam', 'Yemen', 'Zambia', 'Zimbabwe' ]; ================================================ FILE: data/countries_data.json ================================================ [ { "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" } ] ================================================ FILE: data/countries_data_long.json ================================================ [ { "name": "Afghanistan", "topLevelDomain": [ ".af" ], "alpha2Code": "AF", "alpha3Code": "AFG", "callingCodes": [ "93" ], "capital": "Kabul", "altSpellings": [ "AF", "Afġānistān" ], "subregion": "Southern Asia", "region": "Asia", "population": 40218234, "latlng": [ 33.0, 65.0 ], "demonym": "Afghan", "area": 652230.0, "timezones": [ "UTC+04:30" ], "borders": [ "IRN", "PAK", "TKM", "UZB", "TJK", "CHN" ], "nativeName": "افغانستان", "numericCode": "004", "flags": { "svg": "https://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_the_Taliban.svg", "png": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_the_Taliban.svg/320px-Flag_of_the_Taliban.svg.png" }, "currencies": [ { "code": "AFN", "name": "Afghan afghani", "symbol": "؋" } ], "languages": [ { "iso639_1": "ps", "iso639_2": "pus", "name": "Pashto", "nativeName": "پښتو" }, { "iso639_1": "uz", "iso639_2": "uzb", "name": "Uzbek", "nativeName": "Oʻzbek" }, { "iso639_1": "tk", "iso639_2": "tuk", "name": "Turkmen", "nativeName": "Türkmen" } ], "translations": { "br": "Afghanistan", "pt": "Afeganistão", "nl": "Afghanistan", "hr": "Afganistan", "fa": "افغانستان", "de": "Afghanistan", "es": "Afganistán", "fr": "Afghanistan", "ja": "アフガニスタン", "it": "Afghanistan", "hu": "Afganisztán" }, "flag": "https://upload.wikimedia.org/wikipedia/commons/5/5c/Flag_of_the_Taliban.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "AFG", "independent": true }, { "name": "Åland Islands", "topLevelDomain": [ ".ax" ], "alpha2Code": "AX", "alpha3Code": "ALA", "callingCodes": [ "358" ], "capital": "Mariehamn", "altSpellings": [ "AX", "Aaland", "Aland", "Ahvenanmaa" ], "subregion": "Northern Europe", "region": "Europe", "population": 28875, "latlng": [ 60.116667, 19.9 ], "demonym": "Ålandish", "area": 1580.0, "timezones": [ "UTC+02:00" ], "nativeName": "Åland", "numericCode": "248", "flags": { "svg": "https://flagcdn.com/ax.svg", "png": "https://flagcdn.com/w320/ax.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "sv", "iso639_2": "swe", "name": "Swedish", "nativeName": "svenska" } ], "translations": { "br": "Åland", "pt": "Ilhas de Aland", "nl": "Ålandeilanden", "hr": "Ålandski otoci", "fa": "جزایر الند", "de": "Åland", "es": "Alandia", "fr": "Åland", "ja": "オーランド諸島", "it": "Isole Aland", "hu": "Åland-szigetek" }, "flag": "https://flagcdn.com/ax.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "independent": false }, { "name": "Albania", "topLevelDomain": [ ".al" ], "alpha2Code": "AL", "alpha3Code": "ALB", "callingCodes": [ "355" ], "capital": "Tirana", "altSpellings": [ "AL", "Shqipëri", "Shqipëria", "Shqipnia" ], "subregion": "Southern Europe", "region": "Europe", "population": 2837743, "latlng": [ 41.0, 20.0 ], "demonym": "Albanian", "area": 28748.0, "gini": 33.2, "timezones": [ "UTC+01:00" ], "borders": [ "MNE", "GRC", "MKD", "UNK" ], "nativeName": "Shqipëria", "numericCode": "008", "flags": { "svg": "https://flagcdn.com/al.svg", "png": "https://flagcdn.com/w320/al.png" }, "currencies": [ { "code": "ALL", "name": "Albanian lek", "symbol": "L" } ], "languages": [ { "iso639_1": "sq", "iso639_2": "sqi", "name": "Albanian", "nativeName": "Shqip" } ], "translations": { "br": "Albania", "pt": "Albânia", "nl": "Albanië", "hr": "Albanija", "fa": "آلبانی", "de": "Albanien", "es": "Albania", "fr": "Albanie", "ja": "アルバニア", "it": "Albania", "hu": "Albánia" }, "flag": "https://flagcdn.com/al.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "ALB", "independent": true }, { "name": "Algeria", "topLevelDomain": [ ".dz" ], "alpha2Code": "DZ", "alpha3Code": "DZA", "callingCodes": [ "213" ], "capital": "Algiers", "altSpellings": [ "DZ", "Dzayer", "Algérie" ], "subregion": "Northern Africa", "region": "Africa", "population": 44700000, "latlng": [ 28.0, 3.0 ], "demonym": "Algerian", "area": 2381741.0, "gini": 27.6, "timezones": [ "UTC+01:00" ], "borders": [ "TUN", "LBY", "NER", "ESH", "MRT", "MLI", "MAR" ], "nativeName": "الجزائر", "numericCode": "012", "flags": { "svg": "https://flagcdn.com/dz.svg", "png": "https://flagcdn.com/w320/dz.png" }, "currencies": [ { "code": "DZD", "name": "Algerian dinar", "symbol": "د.ج" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Aljeria", "pt": "Argélia", "nl": "Algerije", "hr": "Alžir", "fa": "الجزایر", "de": "Algerien", "es": "Argelia", "fr": "Algérie", "ja": "アルジェリア", "it": "Algeria", "hu": "Algéria" }, "flag": "https://flagcdn.com/dz.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "ALG", "independent": true }, { "name": "American Samoa", "topLevelDomain": [ ".as" ], "alpha2Code": "AS", "alpha3Code": "ASM", "callingCodes": [ "1" ], "capital": "Pago Pago", "altSpellings": [ "AS", "Amerika Sāmoa", "Amelika Sāmoa", "Sāmoa Amelika" ], "subregion": "Polynesia", "region": "Oceania", "population": 55197, "latlng": [ -14.33333333, -170.0 ], "demonym": "American Samoan", "area": 199.0, "timezones": [ "UTC-11:00" ], "nativeName": "American Samoa", "numericCode": "016", "flags": { "svg": "https://flagcdn.com/as.svg", "png": "https://flagcdn.com/w320/as.png" }, "currencies": [ { "code": "USD", "name": "United States Dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "sm", "iso639_2": "smo", "name": "Samoan", "nativeName": "gagana fa'a Samoa" } ], "translations": { "br": "Samoa Amerikan", "pt": "Samoa Americana", "nl": "Amerikaans Samoa", "hr": "Američka Samoa", "fa": "ساموآی آمریکا", "de": "Amerikanisch-Samoa", "es": "Samoa Americana", "fr": "Samoa américaines", "ja": "アメリカ領サモア", "it": "Samoa Americane", "hu": "Amerikai Szamoa" }, "flag": "https://flagcdn.com/as.svg", "cioc": "ASA", "independent": false }, { "name": "Andorra", "topLevelDomain": [ ".ad" ], "alpha2Code": "AD", "alpha3Code": "AND", "callingCodes": [ "376" ], "capital": "Andorra la Vella", "altSpellings": [ "AD", "Principality of Andorra", "Principat d'Andorra" ], "subregion": "Southern Europe", "region": "Europe", "population": 77265, "latlng": [ 42.5, 1.5 ], "demonym": "Andorran", "area": 468.0, "timezones": [ "UTC+01:00" ], "borders": [ "FRA", "ESP" ], "nativeName": "Andorra", "numericCode": "020", "flags": { "svg": "https://flagcdn.com/ad.svg", "png": "https://flagcdn.com/w320/ad.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "ca", "iso639_2": "cat", "name": "Catalan", "nativeName": "català" } ], "translations": { "br": "Andorra", "pt": "Andorra", "nl": "Andorra", "hr": "Andora", "fa": "آندورا", "de": "Andorra", "es": "Andorra", "fr": "Andorre", "ja": "アンドラ", "it": "Andorra", "hu": "Andorra" }, "flag": "https://flagcdn.com/ad.svg", "cioc": "AND", "independent": true }, { "name": "Angola", "topLevelDomain": [ ".ao" ], "alpha2Code": "AO", "alpha3Code": "AGO", "callingCodes": [ "244" ], "capital": "Luanda", "altSpellings": [ "AO", "República de Angola", "ʁɛpublika de an'ɡɔla" ], "subregion": "Middle Africa", "region": "Africa", "population": 32866268, "latlng": [ -12.5, 18.5 ], "demonym": "Angolan", "area": 1246700.0, "gini": 51.3, "timezones": [ "UTC+01:00" ], "borders": [ "COG", "COD", "ZMB", "NAM" ], "nativeName": "Angola", "numericCode": "024", "flags": { "svg": "https://flagcdn.com/ao.svg", "png": "https://flagcdn.com/w320/ao.png" }, "currencies": [ { "code": "AOA", "name": "Angolan kwanza", "symbol": "Kz" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Angola", "pt": "Angola", "nl": "Angola", "hr": "Angola", "fa": "آنگولا", "de": "Angola", "es": "Angola", "fr": "Angola", "ja": "アンゴラ", "it": "Angola", "hu": "Angola" }, "flag": "https://flagcdn.com/ao.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "ANG", "independent": true }, { "name": "Anguilla", "topLevelDomain": [ ".ai" ], "alpha2Code": "AI", "alpha3Code": "AIA", "callingCodes": [ "1" ], "capital": "The Valley", "altSpellings": [ "AI" ], "subregion": "Caribbean", "region": "Americas", "population": 13452, "latlng": [ 18.25, -63.16666666 ], "demonym": "Anguillian", "area": 91.0, "timezones": [ "UTC-04:00" ], "nativeName": "Anguilla", "numericCode": "660", "flags": { "svg": "https://flagcdn.com/ai.svg", "png": "https://flagcdn.com/w320/ai.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Anguilla", "pt": "Anguila", "nl": "Anguilla", "hr": "Angvila", "fa": "آنگویلا", "de": "Anguilla", "es": "Anguilla", "fr": "Anguilla", "ja": "アンギラ", "it": "Anguilla", "hu": "Anguilla" }, "flag": "https://flagcdn.com/ai.svg", "independent": false }, { "name": "Antarctica", "topLevelDomain": [ ".aq" ], "alpha2Code": "AQ", "alpha3Code": "ATA", "callingCodes": [ "672" ], "subregion": "Antarctica", "region": "Polar", "population": 1000, "latlng": [ -74.65, 4.48 ], "demonym": "Antarctic", "area": 14000000.0, "timezones": [ "UTC-03:00", "UTC+03:00", "UTC+05:00", "UTC+06:00", "UTC+07:00", "UTC+08:00", "UTC+10:00", "UTC+12:00" ], "nativeName": "Antarctica", "numericCode": "010", "flags": { "svg": "https://flagcdn.com/aq.svg", "png": "https://flagcdn.com/w320/aq.png" }, "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Antarktika", "pt": "Antárctida", "nl": "Antarctica", "hr": "Antarktika", "fa": "جنوبگان", "de": "Antarktika", "es": "Antártida", "fr": "Antarctique", "ja": "南極大陸", "it": "Antartide", "hu": "Antarktisz" }, "flag": "https://flagcdn.com/aq.svg", "independent": false }, { "name": "Antigua and Barbuda", "topLevelDomain": [ ".ag" ], "alpha2Code": "AG", "alpha3Code": "ATG", "callingCodes": [ "1" ], "capital": "Saint John's", "altSpellings": [ "AG" ], "subregion": "Caribbean", "region": "Americas", "population": 97928, "latlng": [ 17.05, -61.8 ], "demonym": "Antiguan, Barbudan", "area": 442.0, "timezones": [ "UTC-04:00" ], "nativeName": "Antigua and Barbuda", "numericCode": "028", "flags": { "svg": "https://flagcdn.com/ag.svg", "png": "https://flagcdn.com/w320/ag.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Antigua ha Barbuda", "pt": "Antígua e Barbuda", "nl": "Antigua en Barbuda", "hr": "Antigva i Barbuda", "fa": "آنتیگوا و باربودا", "de": "Antigua und Barbuda", "es": "Antigua y Barbuda", "fr": "Antigua-et-Barbuda", "ja": "アンティグア・バーブーダ", "it": "Antigua e Barbuda", "hu": "Antigua és Barbuda" }, "flag": "https://flagcdn.com/ag.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "ANT", "independent": true }, { "name": "Argentina", "topLevelDomain": [ ".ar" ], "alpha2Code": "AR", "alpha3Code": "ARG", "callingCodes": [ "54" ], "capital": "Buenos Aires", "altSpellings": [ "AR", "Argentine Republic", "República Argentina" ], "subregion": "South America", "region": "Americas", "population": 45376763, "latlng": [ -34.0, -64.0 ], "demonym": "Argentinean", "area": 2780400.0, "gini": 42.9, "timezones": [ "UTC-03:00" ], "borders": [ "BOL", "BRA", "CHL", "PRY", "URY" ], "nativeName": "Argentina", "numericCode": "032", "flags": { "svg": "https://flagcdn.com/ar.svg", "png": "https://flagcdn.com/w320/ar.png" }, "currencies": [ { "code": "ARS", "name": "Argentine peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }, { "iso639_1": "gn", "iso639_2": "grn", "name": "Guaraní", "nativeName": "Avañe'ẽ" } ], "translations": { "br": "Arc'hantina", "pt": "Argentina", "nl": "Argentinië", "hr": "Argentina", "fa": "آرژانتین", "de": "Argentinien", "es": "Argentina", "fr": "Argentine", "ja": "アルゼンチン", "it": "Argentina", "hu": "Argentína" }, "flag": "https://flagcdn.com/ar.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "ARG", "independent": true }, { "name": "Armenia", "topLevelDomain": [ ".am" ], "alpha2Code": "AM", "alpha3Code": "ARM", "callingCodes": [ "374" ], "capital": "Yerevan", "altSpellings": [ "AM", "Hayastan", "Republic of Armenia", "Հայաստանի Հանրապետություն" ], "subregion": "Western Asia", "region": "Asia", "population": 2963234, "latlng": [ 40.0, 45.0 ], "demonym": "Armenian", "area": 29743.0, "gini": 29.9, "timezones": [ "UTC+04:00" ], "borders": [ "AZE", "GEO", "IRN", "TUR" ], "nativeName": "Հայաստան", "numericCode": "051", "flags": { "svg": "https://flagcdn.com/am.svg", "png": "https://flagcdn.com/w320/am.png" }, "currencies": [ { "code": "AMD", "name": "Armenian dram", "symbol": "֏" } ], "languages": [ { "iso639_1": "hy", "iso639_2": "hye", "name": "Armenian", "nativeName": "Հայերեն" } ], "translations": { "br": "Armenia", "pt": "Arménia", "nl": "Armenië", "hr": "Armenija", "fa": "ارمنستان", "de": "Armenien", "es": "Armenia", "fr": "Arménie", "ja": "アルメニア", "it": "Armenia", "hu": "Örményország" }, "flag": "https://flagcdn.com/am.svg", "regionalBlocs": [ { "acronym": "EEU", "name": "Eurasian Economic Union", "otherAcronyms": [ "EAEU" ] } ], "cioc": "ARM", "independent": true }, { "name": "Aruba", "topLevelDomain": [ ".aw" ], "alpha2Code": "AW", "alpha3Code": "ABW", "callingCodes": [ "297" ], "capital": "Oranjestad", "altSpellings": [ "AW" ], "subregion": "Caribbean", "region": "Americas", "population": 106766, "latlng": [ 12.5, -69.96666666 ], "demonym": "Aruban", "area": 180.0, "timezones": [ "UTC-04:00" ], "nativeName": "Aruba", "numericCode": "533", "flags": { "svg": "https://flagcdn.com/aw.svg", "png": "https://flagcdn.com/w320/aw.png" }, "currencies": [ { "code": "AWG", "name": "Aruban florin", "symbol": "ƒ" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" }, { "iso639_1": "pa", "iso639_2": "pan", "name": "(Eastern) Punjabi", "nativeName": "ਪੰਜਾਬੀ" } ], "translations": { "br": "Aruba", "pt": "Aruba", "nl": "Aruba", "hr": "Aruba", "fa": "آروبا", "de": "Aruba", "es": "Aruba", "fr": "Aruba", "ja": "アルバ", "it": "Aruba", "hu": "Aruba" }, "flag": "https://flagcdn.com/aw.svg", "cioc": "ARU", "independent": true }, { "name": "Australia", "topLevelDomain": [ ".au" ], "alpha2Code": "AU", "alpha3Code": "AUS", "callingCodes": [ "61" ], "capital": "Canberra", "altSpellings": [ "AU" ], "subregion": "Australia and New Zealand", "region": "Oceania", "population": 25687041, "latlng": [ -27.0, 133.0 ], "demonym": "Australian", "area": 7692024.0, "gini": 34.4, "timezones": [ "UTC+05:00", "UTC+06:30", "UTC+07:00", "UTC+08:00", "UTC+09:30", "UTC+10:00", "UTC+10:30", "UTC+11:30" ], "nativeName": "Australia", "numericCode": "036", "flags": { "svg": "https://flagcdn.com/au.svg", "png": "https://flagcdn.com/w320/au.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Aostralia", "pt": "Austrália", "nl": "Australië", "hr": "Australija", "fa": "استرالیا", "de": "Australien", "es": "Australia", "fr": "Australie", "ja": "オーストラリア", "it": "Australia", "hu": "Ausztrália" }, "flag": "https://flagcdn.com/au.svg", "cioc": "AUS", "independent": true }, { "name": "Austria", "topLevelDomain": [ ".at" ], "alpha2Code": "AT", "alpha3Code": "AUT", "callingCodes": [ "43" ], "capital": "Vienna", "altSpellings": [ "AT", "Österreich", "Osterreich", "Oesterreich" ], "subregion": "Central Europe", "region": "Europe", "population": 8917205, "latlng": [ 47.33333333, 13.33333333 ], "demonym": "Austrian", "area": 83871.0, "gini": 30.8, "timezones": [ "UTC+01:00" ], "borders": [ "CZE", "DEU", "HUN", "ITA", "LIE", "SVK", "SVN", "CHE" ], "nativeName": "Österreich", "numericCode": "040", "flags": { "svg": "https://flagcdn.com/at.svg", "png": "https://flagcdn.com/w320/at.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" } ], "translations": { "br": "Aostria", "pt": "Áustria", "nl": "Oostenrijk", "hr": "Austrija", "fa": "اتریش", "de": "Österreich", "es": "Austria", "fr": "Autriche", "ja": "オーストリア", "it": "Austria", "hu": "Ausztria" }, "flag": "https://flagcdn.com/at.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "AUT", "independent": true }, { "name": "Azerbaijan", "topLevelDomain": [ ".az" ], "alpha2Code": "AZ", "alpha3Code": "AZE", "callingCodes": [ "994" ], "capital": "Baku", "altSpellings": [ "AZ", "Republic of Azerbaijan", "Azərbaycan Respublikası" ], "subregion": "Western Asia", "region": "Asia", "population": 10110116, "latlng": [ 40.5, 47.5 ], "demonym": "Azerbaijani", "area": 86600.0, "gini": 26.6, "timezones": [ "UTC+04:00" ], "borders": [ "ARM", "GEO", "IRN", "RUS", "TUR" ], "nativeName": "Azərbaycan", "numericCode": "031", "flags": { "svg": "https://flagcdn.com/az.svg", "png": "https://flagcdn.com/w320/az.png" }, "currencies": [ { "code": "AZN", "name": "Azerbaijani manat", "symbol": "₼" } ], "languages": [ { "iso639_1": "az", "iso639_2": "aze", "name": "Azerbaijani", "nativeName": "azərbaycan dili" } ], "translations": { "br": "Azerbaidjan", "pt": "Azerbaijão", "nl": "Azerbeidzjan", "hr": "Azerbajdžan", "fa": "آذربایجان", "de": "Aserbaidschan", "es": "Azerbaiyán", "fr": "Azerbaïdjan", "ja": "アゼルバイジャン", "it": "Azerbaijan", "hu": "Azerbajdzsán" }, "flag": "https://flagcdn.com/az.svg", "cioc": "AZE", "independent": true }, { "name": "Bahamas", "topLevelDomain": [ ".bs" ], "alpha2Code": "BS", "alpha3Code": "BHS", "callingCodes": [ "1" ], "capital": "Nassau", "altSpellings": [ "BS", "Commonwealth of the Bahamas" ], "subregion": "Caribbean", "region": "Americas", "population": 393248, "latlng": [ 24.25, -76.0 ], "demonym": "Bahamian", "area": 13943.0, "timezones": [ "UTC-05:00" ], "nativeName": "Bahamas", "numericCode": "044", "flags": { "svg": "https://flagcdn.com/bs.svg", "png": "https://flagcdn.com/w320/bs.png" }, "currencies": [ { "code": "BSD", "name": "Bahamian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Bahamas", "pt": "Baamas", "nl": "Bahama’s", "hr": "Bahami", "fa": "باهاما", "de": "Bahamas", "es": "Bahamas", "fr": "Bahamas", "ja": "バハマ", "it": "Bahamas", "hu": "Bahama-szigetek" }, "flag": "https://flagcdn.com/bs.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "BAH", "independent": true }, { "name": "Bahrain", "topLevelDomain": [ ".bh" ], "alpha2Code": "BH", "alpha3Code": "BHR", "callingCodes": [ "973" ], "capital": "Manama", "altSpellings": [ "BH", "Kingdom of Bahrain", "Mamlakat al-Baḥrayn" ], "subregion": "Western Asia", "region": "Asia", "population": 1701583, "latlng": [ 26.0, 50.55 ], "demonym": "Bahraini", "area": 765.0, "timezones": [ "UTC+03:00" ], "nativeName": "‏البحرين", "numericCode": "048", "flags": { "svg": "https://flagcdn.com/bh.svg", "png": "https://flagcdn.com/w320/bh.png" }, "currencies": [ { "code": "BHD", "name": "Bahraini dinar", "symbol": ".د.ب" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Bahrein", "pt": "Barém", "nl": "Bahrein", "hr": "Bahrein", "fa": "بحرین", "de": "Bahrain", "es": "Bahrein", "fr": "Bahreïn", "ja": "バーレーン", "it": "Bahrein", "hu": "Bahrein" }, "flag": "https://flagcdn.com/bh.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "BRN", "independent": true }, { "name": "Bangladesh", "topLevelDomain": [ ".bd" ], "alpha2Code": "BD", "alpha3Code": "BGD", "callingCodes": [ "880" ], "capital": "Dhaka", "altSpellings": [ "BD", "People's Republic of Bangladesh", "Gônôprôjatôntri Bangladesh" ], "subregion": "Southern Asia", "region": "Asia", "population": 164689383, "latlng": [ 24.0, 90.0 ], "demonym": "Bangladeshi", "area": 147570.0, "gini": 32.4, "timezones": [ "UTC+06:00" ], "borders": [ "MMR", "IND" ], "nativeName": "Bangladesh", "numericCode": "050", "flags": { "svg": "https://flagcdn.com/bd.svg", "png": "https://flagcdn.com/w320/bd.png" }, "currencies": [ { "code": "BDT", "name": "Bangladeshi taka", "symbol": "৳" } ], "languages": [ { "iso639_1": "bn", "iso639_2": "ben", "name": "Bengali", "nativeName": "বাংলা" } ], "translations": { "br": "Bangladesh", "pt": "Bangladeche", "nl": "Bangladesh", "hr": "Bangladeš", "fa": "بنگلادش", "de": "Bangladesch", "es": "Bangladesh", "fr": "Bangladesh", "ja": "バングラデシュ", "it": "Bangladesh", "hu": "Banglades" }, "flag": "https://flagcdn.com/bd.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "BAN", "independent": true }, { "name": "Barbados", "topLevelDomain": [ ".bb" ], "alpha2Code": "BB", "alpha3Code": "BRB", "callingCodes": [ "1" ], "capital": "Bridgetown", "altSpellings": [ "BB" ], "subregion": "Caribbean", "region": "Americas", "population": 287371, "latlng": [ 13.16666666, -59.53333333 ], "demonym": "Barbadian", "area": 430.0, "timezones": [ "UTC-04:00" ], "nativeName": "Barbados", "numericCode": "052", "flags": { "svg": "https://flagcdn.com/bb.svg", "png": "https://flagcdn.com/w320/bb.png" }, "currencies": [ { "code": "BBD", "name": "Barbadian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Barbados", "pt": "Barbados", "nl": "Barbados", "hr": "Barbados", "fa": "باربادوس", "de": "Barbados", "es": "Barbados", "fr": "Barbade", "ja": "バルバドス", "it": "Barbados", "hu": "Barbados" }, "flag": "https://flagcdn.com/bb.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "BAR", "independent": true }, { "name": "Belarus", "topLevelDomain": [ ".by" ], "alpha2Code": "BY", "alpha3Code": "BLR", "callingCodes": [ "375" ], "capital": "Minsk", "altSpellings": [ "BY", "Bielaruś", "Republic of Belarus", "Белоруссия", "Республика Беларусь", "Belorussiya", "Respublika Belarus’" ], "subregion": "Eastern Europe", "region": "Europe", "population": 9398861, "latlng": [ 53.0, 28.0 ], "demonym": "Belarusian", "area": 207600.0, "gini": 25.3, "timezones": [ "UTC+03:00" ], "borders": [ "LVA", "LTU", "POL", "RUS", "UKR" ], "nativeName": "Белару́сь", "numericCode": "112", "flags": { "svg": "https://flagcdn.com/by.svg", "png": "https://flagcdn.com/w320/by.png" }, "currencies": [ { "code": "BYN", "name": "New Belarusian ruble", "symbol": "Br" }, { "code": "BYR", "name": "Old Belarusian ruble", "symbol": "Br" } ], "languages": [ { "iso639_1": "be", "iso639_2": "bel", "name": "Belarusian", "nativeName": "беларуская мова" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Belarus", "pt": "Bielorrússia", "nl": "Wit-Rusland", "hr": "Bjelorusija", "fa": "بلاروس", "de": "Weißrussland", "es": "Bielorrusia", "fr": "Biélorussie", "ja": "ベラルーシ", "it": "Bielorussia", "hu": "Fehéroroszország" }, "flag": "https://flagcdn.com/by.svg", "regionalBlocs": [ { "acronym": "EEU", "name": "Eurasian Economic Union", "otherAcronyms": [ "EAEU" ] } ], "cioc": "BLR", "independent": true }, { "name": "Belgium", "topLevelDomain": [ ".be" ], "alpha2Code": "BE", "alpha3Code": "BEL", "callingCodes": [ "32" ], "capital": "Brussels", "altSpellings": [ "BE", "België", "Belgie", "Belgien", "Belgique", "Kingdom of Belgium", "Koninkrijk België", "Royaume de Belgique", "Königreich Belgien" ], "subregion": "Western Europe", "region": "Europe", "population": 11555997, "latlng": [ 50.83333333, 4.0 ], "demonym": "Belgian", "area": 30528.0, "gini": 27.2, "timezones": [ "UTC+01:00" ], "borders": [ "FRA", "DEU", "LUX", "NLD" ], "nativeName": "België", "numericCode": "056", "flags": { "svg": "https://flagcdn.com/be.svg", "png": "https://flagcdn.com/w320/be.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" } ], "translations": { "br": "Belgia", "pt": "Bélgica", "nl": "België", "hr": "Belgija", "fa": "بلژیک", "de": "Belgien", "es": "Bélgica", "fr": "Belgique", "ja": "ベルギー", "it": "Belgio", "hu": "Belgium" }, "flag": "https://flagcdn.com/be.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "BEL", "independent": true }, { "name": "Belize", "topLevelDomain": [ ".bz" ], "alpha2Code": "BZ", "alpha3Code": "BLZ", "callingCodes": [ "501" ], "capital": "Belmopan", "altSpellings": [ "BZ" ], "subregion": "Central America", "region": "Americas", "population": 397621, "latlng": [ 17.25, -88.75 ], "demonym": "Belizean", "area": 22966.0, "gini": 53.3, "timezones": [ "UTC-06:00" ], "borders": [ "GTM", "MEX" ], "nativeName": "Belize", "numericCode": "084", "flags": { "svg": "https://flagcdn.com/bz.svg", "png": "https://flagcdn.com/w320/bz.png" }, "currencies": [ { "code": "BZD", "name": "Belize dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Belize", "pt": "Belize", "nl": "Belize", "hr": "Belize", "fa": "بلیز", "de": "Belize", "es": "Belice", "fr": "Belize", "ja": "ベリーズ", "it": "Belize", "hu": "Belize" }, "flag": "https://flagcdn.com/bz.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] }, { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "BIZ", "independent": true }, { "name": "Benin", "topLevelDomain": [ ".bj" ], "alpha2Code": "BJ", "alpha3Code": "BEN", "callingCodes": [ "229" ], "capital": "Porto-Novo", "altSpellings": [ "BJ", "Republic of Benin", "République du Bénin" ], "subregion": "Western Africa", "region": "Africa", "population": 12123198, "latlng": [ 9.5, 2.25 ], "demonym": "Beninese", "area": 112622.0, "gini": 47.8, "timezones": [ "UTC+01:00" ], "borders": [ "BFA", "NER", "NGA", "TGO" ], "nativeName": "Bénin", "numericCode": "204", "flags": { "svg": "https://flagcdn.com/bj.svg", "png": "https://flagcdn.com/w320/bj.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Benin", "pt": "Benim", "nl": "Benin", "hr": "Benin", "fa": "بنین", "de": "Benin", "es": "Benín", "fr": "Bénin", "ja": "ベナン", "it": "Benin", "hu": "Benin" }, "flag": "https://flagcdn.com/bj.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "BEN", "independent": true }, { "name": "Bermuda", "topLevelDomain": [ ".bm" ], "alpha2Code": "BM", "alpha3Code": "BMU", "callingCodes": [ "1" ], "capital": "Hamilton", "altSpellings": [ "BM", "The Islands of Bermuda", "The Bermudas", "Somers Isles" ], "subregion": "Northern America", "region": "Americas", "population": 63903, "latlng": [ 32.33333333, -64.75 ], "demonym": "Bermudian", "area": 54.0, "timezones": [ "UTC-04:00" ], "nativeName": "Bermuda", "numericCode": "060", "flags": { "svg": "https://flagcdn.com/bm.svg", "png": "https://flagcdn.com/w320/bm.png" }, "currencies": [ { "code": "BMD", "name": "Bermudian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Bermuda", "pt": "Bermudas", "nl": "Bermuda", "hr": "Bermudi", "fa": "برمودا", "de": "Bermuda", "es": "Bermudas", "fr": "Bermudes", "ja": "バミューダ", "it": "Bermuda", "hu": "Bermuda" }, "flag": "https://flagcdn.com/bm.svg", "cioc": "BER", "independent": false }, { "name": "Bhutan", "topLevelDomain": [ ".bt" ], "alpha2Code": "BT", "alpha3Code": "BTN", "callingCodes": [ "975" ], "capital": "Thimphu", "altSpellings": [ "BT", "Kingdom of Bhutan" ], "subregion": "Southern Asia", "region": "Asia", "population": 771612, "latlng": [ 27.5, 90.5 ], "demonym": "Bhutanese", "area": 38394.0, "gini": 37.4, "timezones": [ "UTC+06:00" ], "borders": [ "CHN", "IND" ], "nativeName": "ʼbrug-yul", "numericCode": "064", "flags": { "svg": "https://flagcdn.com/bt.svg", "png": "https://flagcdn.com/w320/bt.png" }, "currencies": [ { "code": "BTN", "name": "Bhutanese ngultrum", "symbol": "Nu." }, { "code": "INR", "name": "Indian rupee", "symbol": "₹" } ], "languages": [ { "iso639_1": "dz", "iso639_2": "dzo", "name": "Dzongkha", "nativeName": "རྫོང་ཁ" } ], "translations": { "br": "Bhoutan", "pt": "Butão", "nl": "Bhutan", "hr": "Butan", "fa": "بوتان", "de": "Bhutan", "es": "Bután", "fr": "Bhoutan", "ja": "ブータン", "it": "Bhutan", "hu": "Bhután" }, "flag": "https://flagcdn.com/bt.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "BHU", "independent": true }, { "name": "Bolivia (Plurinational State of)", "topLevelDomain": [ ".bo" ], "alpha2Code": "BO", "alpha3Code": "BOL", "callingCodes": [ "591" ], "capital": "Sucre", "altSpellings": [ "BO", "Buliwya", "Wuliwya", "Plurinational State of Bolivia", "Estado Plurinacional de Bolivia", "Buliwya Mamallaqta", "Wuliwya Suyu", "Tetã Volívia" ], "subregion": "South America", "region": "Americas", "population": 11673029, "latlng": [ -17.0, -65.0 ], "demonym": "Bolivian", "area": 1098581.0, "gini": 41.6, "timezones": [ "UTC-04:00" ], "borders": [ "ARG", "BRA", "CHL", "PRY", "PER" ], "nativeName": "Bolivia", "numericCode": "068", "flags": { "svg": "https://flagcdn.com/bo.svg", "png": "https://flagcdn.com/w320/bo.png" }, "currencies": [ { "code": "BOB", "name": "Bolivian boliviano", "symbol": "Bs." } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }, { "iso639_1": "ay", "iso639_2": "aym", "name": "Aymara", "nativeName": "aymar aru" }, { "iso639_1": "qu", "iso639_2": "que", "name": "Quechua", "nativeName": "Runa Simi" } ], "translations": { "br": "Bolivia", "pt": "Bolívia", "nl": "Bolivia", "hr": "Bolivija", "fa": "بولیوی", "de": "Bolivien", "es": "Bolivia", "fr": "Bolivie", "ja": "ボリビア多民族国", "it": "Bolivia", "hu": "Bolívia" }, "flag": "https://flagcdn.com/bo.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "BOL", "independent": true }, { "name": "Bonaire, Sint Eustatius and Saba", "topLevelDomain": [ ".an", ".nl" ], "alpha2Code": "BQ", "alpha3Code": "BES", "callingCodes": [ "599" ], "capital": "Kralendijk", "altSpellings": [ "BQ", "Boneiru" ], "subregion": "Caribbean", "region": "Americas", "population": 17408, "latlng": [ 12.15, -68.266667 ], "demonym": "Dutch", "area": 294.0, "timezones": [ "UTC-04:00" ], "nativeName": "Bonaire", "numericCode": "535", "flags": { "svg": "https://flagcdn.com/bq.svg", "png": "https://flagcdn.com/w320/bq.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" } ], "translations": { "br": "Bonaire, Sint Eustatius ha Saba", "pt": "Bonaire", "nl": "Caribisch Nederland", "hr": "Bonaire, Sint Eustatius and Saba", "fa": "بونیر", "de": "Bonaire, Sint Eustatius und Saba", "es": "Bonaire, Sint Eustatius and Saba", "fr": "Bonaire, Saint-Eustache et Saba", "ja": "Bonaire, Sint Eustatius and Saba", "it": "Bonaire, Saint-Eustache e Saba", "hu": "Bonaire" }, "flag": "https://flagcdn.com/bq.svg", "independent": true }, { "name": "Bosnia and Herzegovina", "topLevelDomain": [ ".ba" ], "alpha2Code": "BA", "alpha3Code": "BIH", "callingCodes": [ "387" ], "capital": "Sarajevo", "altSpellings": [ "BA", "Bosnia-Herzegovina", "Босна и Херцеговина" ], "subregion": "Southern Europe", "region": "Europe", "population": 3280815, "latlng": [ 44.0, 18.0 ], "demonym": "Bosnian, Herzegovinian", "area": 51209.0, "gini": 33.0, "timezones": [ "UTC+01:00" ], "borders": [ "HRV", "MNE", "SRB" ], "nativeName": "Bosna i Hercegovina", "numericCode": "070", "flags": { "svg": "https://flagcdn.com/ba.svg", "png": "https://flagcdn.com/w320/ba.png" }, "currencies": [ { "code": "BAM", "name": "Bosnia and Herzegovina convertible mark", "symbol": "KM" } ], "languages": [ { "iso639_1": "bs", "iso639_2": "bos", "name": "Bosnian", "nativeName": "bosanski jezik" }, { "iso639_1": "hr", "iso639_2": "hrv", "name": "Croatian", "nativeName": "hrvatski jezik" }, { "iso639_1": "sr", "iso639_2": "srp", "name": "Serbian", "nativeName": "српски језик" } ], "translations": { "br": "Bosnia-ha-Herzegovina", "pt": "Bósnia e Herzegovina", "nl": "Bosnië en Herzegovina", "hr": "Bosna i Hercegovina", "fa": "بوسنی و هرزگوین", "de": "Bosnien und Herzegowina", "es": "Bosnia y Herzegovina", "fr": "Bosnie-Herzégovine", "ja": "ボスニア・ヘルツェゴビナ", "it": "Bosnia ed Erzegovina", "hu": "Bosznia-Hercegovina" }, "flag": "https://flagcdn.com/ba.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "BIH", "independent": true }, { "name": "Botswana", "topLevelDomain": [ ".bw" ], "alpha2Code": "BW", "alpha3Code": "BWA", "callingCodes": [ "267" ], "capital": "Gaborone", "altSpellings": [ "BW", "Republic of Botswana", "Lefatshe la Botswana" ], "subregion": "Southern Africa", "region": "Africa", "population": 2351625, "latlng": [ -22.0, 24.0 ], "demonym": "Motswana", "area": 582000.0, "gini": 53.3, "timezones": [ "UTC+02:00" ], "borders": [ "NAM", "ZAF", "ZMB", "ZWE" ], "nativeName": "Botswana", "numericCode": "072", "flags": { "svg": "https://flagcdn.com/bw.svg", "png": "https://flagcdn.com/w320/bw.png" }, "currencies": [ { "code": "BWP", "name": "Botswana pula", "symbol": "P" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "tn", "iso639_2": "tsn", "name": "Tswana", "nativeName": "Setswana" } ], "translations": { "br": "Botswana", "pt": "Botsuana", "nl": "Botswana", "hr": "Bocvana", "fa": "بوتسوانا", "de": "Botswana", "es": "Botswana", "fr": "Botswana", "ja": "ボツワナ", "it": "Botswana", "hu": "Botswana" }, "flag": "https://flagcdn.com/bw.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "BOT", "independent": true }, { "name": "Bouvet Island", "topLevelDomain": [ ".bv" ], "alpha2Code": "BV", "alpha3Code": "BVT", "callingCodes": [ "47" ], "altSpellings": [ "BV", "Bouvetøya", "Bouvet-øya" ], "subregion": "South Antarctic Ocean", "region": "Antarctic Ocean", "population": 0, "latlng": [ -54.43333333, 3.4 ], "demonym": "Norwegian", "area": 49.0, "timezones": [ "UTC+01:00" ], "nativeName": "Bouvetøya", "numericCode": "074", "flags": { "svg": "https://flagcdn.com/bv.svg", "png": "https://flagcdn.com/w320/bv.png" }, "currencies": [ { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } ], "languages": [ { "iso639_1": "no", "iso639_2": "nor", "name": "Norwegian", "nativeName": "Norsk" }, { "iso639_1": "nb", "iso639_2": "nob", "name": "Norwegian Bokmål", "nativeName": "Norsk bokmål" }, { "iso639_1": "nn", "iso639_2": "nno", "name": "Norwegian Nynorsk", "nativeName": "Norsk nynorsk" } ], "translations": { "br": "Enez Bouvet", "pt": "Ilha Bouvet", "nl": "Bouveteiland", "hr": "Otok Bouvet", "fa": "جزیره بووه", "de": "Bouvetinsel", "es": "Isla Bouvet", "fr": "Île Bouvet", "ja": "ブーベ島", "it": "Isola Bouvet", "hu": "Bouvet-sziget" }, "flag": "https://flagcdn.com/bv.svg", "independent": false }, { "name": "Brazil", "topLevelDomain": [ ".br" ], "alpha2Code": "BR", "alpha3Code": "BRA", "callingCodes": [ "55" ], "capital": "Brasília", "altSpellings": [ "BR", "Brasil", "Federative Republic of Brazil", "República Federativa do Brasil" ], "subregion": "South America", "region": "Americas", "population": 212559409, "latlng": [ -10.0, -55.0 ], "demonym": "Brazilian", "area": 8515767.0, "gini": 53.4, "timezones": [ "UTC-05:00", "UTC-04:00", "UTC-03:00", "UTC-02:00" ], "borders": [ "ARG", "BOL", "COL", "FRA", "GUF", "GUY", "PRY", "PER", "SUR", "URY", "VEN" ], "nativeName": "Brasil", "numericCode": "076", "flags": { "svg": "https://flagcdn.com/br.svg", "png": "https://flagcdn.com/w320/br.png" }, "currencies": [ { "code": "BRL", "name": "Brazilian real", "symbol": "R$" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Brazil", "pt": "Brasil", "nl": "Brazilië", "hr": "Brazil", "fa": "برزیل", "de": "Brasilien", "es": "Brasil", "fr": "Brésil", "ja": "ブラジル", "it": "Brasile", "hu": "Brazília" }, "flag": "https://flagcdn.com/br.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "BRA", "independent": true }, { "name": "British Indian Ocean Territory", "topLevelDomain": [ ".io" ], "alpha2Code": "IO", "alpha3Code": "IOT", "callingCodes": [ "246" ], "capital": "Diego Garcia", "altSpellings": [ "IO" ], "subregion": "Eastern Africa", "region": "Africa", "population": 3000, "latlng": [ -6.0, 71.5 ], "demonym": "Indian", "area": 60.0, "timezones": [ "UTC+06:00" ], "nativeName": "British Indian Ocean Territory", "numericCode": "086", "flags": { "svg": "https://flagcdn.com/io.svg", "png": "https://flagcdn.com/w320/io.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Tiriad breizhveurat Meurvor Indez", "pt": "Território Britânico do Oceano Índico", "nl": "Britse Gebieden in de Indische Oceaan", "hr": "Britanski Indijskooceanski teritorij", "fa": "قلمرو بریتانیا در اقیانوس هند", "de": "Britisches Territorium im Indischen Ozean", "es": "Territorio Británico del Océano Índico", "fr": "Territoire britannique de l'océan Indien", "ja": "イギリス領インド洋地域", "it": "Territorio britannico dell'oceano indiano", "hu": "Brit Indiai-óceáni Terület" }, "flag": "https://flagcdn.com/io.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": true }, { "name": "United States Minor Outlying Islands", "topLevelDomain": [ ".us" ], "alpha2Code": "UM", "alpha3Code": "UMI", "callingCodes": [ "246" ], "altSpellings": [ "UM" ], "subregion": "Northern America", "region": "Americas", "population": 300, "demonym": "American", "timezones": [ "UTC-11:00", "UTC-10:00", "UTC+12:00" ], "nativeName": "United States Minor Outlying Islands", "numericCode": "581", "flags": { "svg": "https://flagcdn.com/um.svg", "png": "https://flagcdn.com/w320/um.png" }, "currencies": [ { "code": "GBP", "name": "British pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Minor A-bell Stadoù-Unanet", "pt": "Ilhas Menores Distantes dos Estados Unidos", "nl": "Kleine afgelegen eilanden van de Verenigde Staten", "hr": "Mali udaljeni otoci SAD-a", "fa": "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا", "de": "Kleinere Inselbesitzungen der Vereinigten Staaten", "es": "Islas Ultramarinas Menores de Estados Unidos", "fr": "Îles mineures éloignées des États-Unis", "ja": "合衆国領有小離島", "it": "Isole minori esterne degli Stati Uniti d'America", "hu": "Amerikai Egyesült Államok lakatlan külbirtokai" }, "flag": "https://flagcdn.com/um.svg", "independent": false }, { "name": "Virgin Islands (British)", "topLevelDomain": [ ".vg" ], "alpha2Code": "VG", "alpha3Code": "VGB", "callingCodes": [ "1" ], "capital": "Road Town", "altSpellings": [ "VG" ], "subregion": "Caribbean", "region": "Americas", "population": 30237, "latlng": [ 18.431383, -64.62305 ], "demonym": "Virgin Islander", "area": 151.0, "timezones": [ "UTC-04:00" ], "nativeName": "British Virgin Islands", "numericCode": "092", "flags": { "svg": "https://flagcdn.com/vg.svg", "png": "https://flagcdn.com/w320/vg.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Gwerc'h Breizhveurat", "pt": "Ilhas Virgens Britânicas", "nl": "Britse Maagdeneilanden", "hr": "Britanski Djevičanski Otoci", "fa": "جزایر ویرجین بریتانیا", "de": "Britische Jungferninseln", "es": "Islas Vírgenes del Reino Unido", "fr": "Îles Vierges britanniques", "ja": "イギリス領ヴァージン諸島", "it": "Isole Vergini Britanniche", "hu": "Brit Virgin-szigetek" }, "flag": "https://flagcdn.com/vg.svg", "cioc": "IVB", "independent": false }, { "name": "Virgin Islands (U.S.)", "topLevelDomain": [ ".vi" ], "alpha2Code": "VI", "alpha3Code": "VIR", "callingCodes": [ "1 340" ], "capital": "Charlotte Amalie", "altSpellings": [ "VI", "USVI", "American Virgin Islands", "U.S. Virgin Islands" ], "subregion": "Caribbean", "region": "Americas", "population": 106290, "latlng": [ 18.34, -64.93 ], "demonym": "Virgin Islander", "area": 346.36, "timezones": [ "UTC-04:00" ], "nativeName": "Virgin Islands of the United States", "numericCode": "850", "flags": { "svg": "https://flagcdn.com/vi.svg", "png": "https://flagcdn.com/w320/vi.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Gwerc'h ar Stadoù-Unanet", "pt": "Ilhas Virgens Americanas", "nl": "Verenigde Staten Maagdeneilanden", "hr": "Virgin Islands (U.S.)", "fa": "جزایر ویرجین آمریکا", "de": "Amerikanische Jungferninseln", "es": "Islas Vírgenes de los Estados Unidos", "fr": "Îles Vierges des États-Unis", "ja": "アメリカ領ヴァージン諸島", "it": "Isole Vergini americane", "hu": "Amerikai Virgin-szigetek" }, "flag": "https://flagcdn.com/vi.svg", "cioc": "ISV", "independent": false }, { "name": "Brunei Darussalam", "topLevelDomain": [ ".bn" ], "alpha2Code": "BN", "alpha3Code": "BRN", "callingCodes": [ "673" ], "capital": "Bandar Seri Begawan", "altSpellings": [ "BN", "Nation of Brunei", " the Abode of Peace" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 437483, "latlng": [ 4.5, 114.66666666 ], "demonym": "Bruneian", "area": 5765.0, "timezones": [ "UTC+08:00" ], "borders": [ "MYS" ], "nativeName": "Negara Brunei Darussalam", "numericCode": "096", "flags": { "svg": "https://flagcdn.com/bn.svg", "png": "https://flagcdn.com/w320/bn.png" }, "currencies": [ { "code": "BND", "name": "Brunei dollar", "symbol": "$" }, { "code": "SGD", "name": "Singapore dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "ms", "iso639_2": "msa", "name": "Malay", "nativeName": "bahasa Melayu" } ], "translations": { "br": "Brunei", "pt": "Brunei", "nl": "Brunei", "hr": "Brunej", "fa": "برونئی", "de": "Brunei", "es": "Brunei", "fr": "Brunei", "ja": "ブルネイ・ダルサラーム", "it": "Brunei", "hu": "Brunei" }, "flag": "https://flagcdn.com/bn.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "BRU", "independent": true }, { "name": "Bulgaria", "topLevelDomain": [ ".bg" ], "alpha2Code": "BG", "alpha3Code": "BGR", "callingCodes": [ "359" ], "capital": "Sofia", "altSpellings": [ "BG", "Republic of Bulgaria", "Република България" ], "subregion": "Eastern Europe", "region": "Europe", "population": 6927288, "latlng": [ 43.0, 25.0 ], "demonym": "Bulgarian", "area": 110879.0, "gini": 41.3, "timezones": [ "UTC+02:00" ], "borders": [ "GRC", "MKD", "ROU", "SRB", "TUR" ], "nativeName": "България", "numericCode": "100", "flags": { "svg": "https://flagcdn.com/bg.svg", "png": "https://flagcdn.com/w320/bg.png" }, "currencies": [ { "code": "BGN", "name": "Bulgarian lev", "symbol": "лв" } ], "languages": [ { "iso639_1": "bg", "iso639_2": "bul", "name": "Bulgarian", "nativeName": "български език" } ], "translations": { "br": "Bulgaria", "pt": "Bulgária", "nl": "Bulgarije", "hr": "Bugarska", "fa": "بلغارستان", "de": "Bulgarien", "es": "Bulgaria", "fr": "Bulgarie", "ja": "ブルガリア", "it": "Bulgaria", "hu": "Bulgária" }, "flag": "https://flagcdn.com/bg.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "BUL", "independent": true }, { "name": "Burkina Faso", "topLevelDomain": [ ".bf" ], "alpha2Code": "BF", "alpha3Code": "BFA", "callingCodes": [ "226" ], "capital": "Ouagadougou", "altSpellings": [ "BF" ], "subregion": "Western Africa", "region": "Africa", "population": 20903278, "latlng": [ 13.0, -2.0 ], "demonym": "Burkinabe", "area": 272967.0, "gini": 35.3, "timezones": [ "UTC" ], "borders": [ "BEN", "CIV", "GHA", "MLI", "NER", "TGO" ], "nativeName": "Burkina Faso", "numericCode": "854", "flags": { "svg": "https://flagcdn.com/bf.svg", "png": "https://flagcdn.com/w320/bf.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ff", "iso639_2": "ful", "name": "Fula", "nativeName": "Fulfulde" } ], "translations": { "br": "Burkina Faso", "pt": "Burquina Faso", "nl": "Burkina Faso", "hr": "Burkina Faso", "fa": "بورکینافاسو", "de": "Burkina Faso", "es": "Burkina Faso", "fr": "Burkina Faso", "ja": "ブルキナファソ", "it": "Burkina Faso", "hu": "Burkina Faso" }, "flag": "https://flagcdn.com/bf.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "BUR", "independent": true }, { "name": "Burundi", "topLevelDomain": [ ".bi" ], "alpha2Code": "BI", "alpha3Code": "BDI", "callingCodes": [ "257" ], "capital": "Gitega", "altSpellings": [ "BI", "Republic of Burundi", "Republika y'Uburundi", "République du Burundi" ], "subregion": "Eastern Africa", "region": "Africa", "population": 11890781, "latlng": [ -3.5, 30.0 ], "demonym": "Burundian", "area": 27834.0, "gini": 38.6, "timezones": [ "UTC+02:00" ], "borders": [ "COD", "RWA", "TZA" ], "nativeName": "Burundi", "numericCode": "108", "flags": { "svg": "https://flagcdn.com/bi.svg", "png": "https://flagcdn.com/w320/bi.png" }, "currencies": [ { "code": "BIF", "name": "Burundian franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "rn", "iso639_2": "run", "name": "Kirundi", "nativeName": "Ikirundi" } ], "translations": { "br": "Burundi", "pt": "Burúndi", "nl": "Burundi", "hr": "Burundi", "fa": "بوروندی", "de": "Burundi", "es": "Burundi", "fr": "Burundi", "ja": "ブルンジ", "it": "Burundi", "hu": "Burundi" }, "flag": "https://flagcdn.com/bi.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "BDI", "independent": true }, { "name": "Cambodia", "topLevelDomain": [ ".kh" ], "alpha2Code": "KH", "alpha3Code": "KHM", "callingCodes": [ "855" ], "capital": "Phnom Penh", "altSpellings": [ "KH", "Kingdom of Cambodia" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 16718971, "latlng": [ 13.0, 105.0 ], "demonym": "Cambodian", "area": 181035.0, "timezones": [ "UTC+07:00" ], "borders": [ "LAO", "THA", "VNM" ], "nativeName": "Kâmpŭchéa", "numericCode": "116", "flags": { "svg": "https://flagcdn.com/kh.svg", "png": "https://flagcdn.com/w320/kh.png" }, "currencies": [ { "code": "KHR", "name": "Cambodian riel", "symbol": "៛" }, { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "km", "iso639_2": "khm", "name": "Khmer", "nativeName": "ខ្មែរ" } ], "translations": { "br": "Kambodja", "pt": "Camboja", "nl": "Cambodja", "hr": "Kambodža", "fa": "کامبوج", "de": "Kambodscha", "es": "Camboya", "fr": "Cambodge", "ja": "カンボジア", "it": "Cambogia", "hu": "Kambodzsa" }, "flag": "https://flagcdn.com/kh.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "CAM", "independent": true }, { "name": "Cameroon", "topLevelDomain": [ ".cm" ], "alpha2Code": "CM", "alpha3Code": "CMR", "callingCodes": [ "237" ], "capital": "Yaoundé", "altSpellings": [ "CM", "Republic of Cameroon", "République du Cameroun" ], "subregion": "Middle Africa", "region": "Africa", "population": 26545864, "latlng": [ 6.0, 12.0 ], "demonym": "Cameroonian", "area": 475442.0, "gini": 46.6, "timezones": [ "UTC+01:00" ], "borders": [ "CAF", "TCD", "COG", "GNQ", "GAB", "NGA" ], "nativeName": "Cameroon", "numericCode": "120", "flags": { "svg": "https://flagcdn.com/cm.svg", "png": "https://flagcdn.com/w320/cm.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Kameroun", "pt": "Camarões", "nl": "Kameroen", "hr": "Kamerun", "fa": "کامرون", "de": "Kamerun", "es": "Camerún", "fr": "Cameroun", "ja": "カメルーン", "it": "Camerun", "hu": "Kamerun" }, "flag": "https://flagcdn.com/cm.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CMR", "independent": true }, { "name": "Canada", "topLevelDomain": [ ".ca" ], "alpha2Code": "CA", "alpha3Code": "CAN", "callingCodes": [ "1" ], "capital": "Ottawa", "altSpellings": [ "CA" ], "subregion": "Northern America", "region": "Americas", "population": 38005238, "latlng": [ 60.0, -95.0 ], "demonym": "Canadian", "area": 9984670.0, "gini": 33.3, "timezones": [ "UTC-08:00", "UTC-07:00", "UTC-06:00", "UTC-05:00", "UTC-04:00", "UTC-03:30" ], "borders": [ "USA" ], "nativeName": "Canada", "numericCode": "124", "flags": { "svg": "https://flagcdn.com/ca.svg", "png": "https://flagcdn.com/w320/ca.png" }, "currencies": [ { "code": "CAD", "name": "Canadian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Kanada", "pt": "Canadá", "nl": "Canada", "hr": "Kanada", "fa": "کانادا", "de": "Kanada", "es": "Canadá", "fr": "Canada", "ja": "カナダ", "it": "Canada", "hu": "Kanada" }, "flag": "https://flagcdn.com/ca.svg", "regionalBlocs": [ { "acronym": "NAFTA", "name": "North American Free Trade Agreement", "otherNames": [ "Tratado de Libre Comercio de América del Norte", "Accord de Libre-échange Nord-Américain" ] } ], "cioc": "CAN", "independent": true }, { "name": "Cabo Verde", "topLevelDomain": [ ".cv" ], "alpha2Code": "CV", "alpha3Code": "CPV", "callingCodes": [ "238" ], "capital": "Praia", "altSpellings": [ "CV", "Republic of Cabo Verde", "República de Cabo Verde" ], "subregion": "Western Africa", "region": "Africa", "population": 555988, "latlng": [ 16.0, -24.0 ], "demonym": "Cape Verdian", "area": 4033.0, "gini": 42.4, "timezones": [ "UTC-01:00" ], "nativeName": "Cabo Verde", "numericCode": "132", "flags": { "svg": "https://flagcdn.com/cv.svg", "png": "https://flagcdn.com/w320/cv.png" }, "currencies": [ { "code": "CVE", "name": "Cape Verdean escudo", "symbol": "Esc" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Kab Glas", "pt": "Cabo Verde", "nl": "Kaapverdië", "hr": "Zelenortska Republika", "fa": "کیپ ورد", "de": "Kap Verde", "es": "Cabo Verde", "fr": "Cap Vert", "ja": "カーボベルデ", "it": "Capo Verde", "hu": "Zöld-foki Köztársaság" }, "flag": "https://flagcdn.com/cv.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CPV", "independent": true }, { "name": "Cayman Islands", "topLevelDomain": [ ".ky" ], "alpha2Code": "KY", "alpha3Code": "CYM", "callingCodes": [ "1" ], "capital": "George Town", "altSpellings": [ "KY" ], "subregion": "Caribbean", "region": "Americas", "population": 65720, "latlng": [ 19.5, -80.5 ], "demonym": "Caymanian", "area": 264.0, "timezones": [ "UTC-05:00" ], "nativeName": "Cayman Islands", "numericCode": "136", "flags": { "svg": "https://flagcdn.com/ky.svg", "png": "https://flagcdn.com/w320/ky.png" }, "currencies": [ { "code": "KYD", "name": "Cayman Islands dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Cayman", "pt": "Ilhas Caimão", "nl": "Caymaneilanden", "hr": "Kajmanski otoci", "fa": "جزایر کیمن", "de": "Kaimaninseln", "es": "Islas Caimán", "fr": "Îles Caïmans", "ja": "ケイマン諸島", "it": "Isole Cayman", "hu": "Kajmán-szigetek" }, "flag": "https://flagcdn.com/ky.svg", "cioc": "CAY", "independent": false }, { "name": "Central African Republic", "topLevelDomain": [ ".cf" ], "alpha2Code": "CF", "alpha3Code": "CAF", "callingCodes": [ "236" ], "capital": "Bangui", "altSpellings": [ "CF", "Central African Republic", "République centrafricaine" ], "subregion": "Middle Africa", "region": "Africa", "population": 4829764, "latlng": [ 7.0, 21.0 ], "demonym": "Central African", "area": 622984.0, "gini": 56.2, "timezones": [ "UTC+01:00" ], "borders": [ "CMR", "TCD", "COD", "COG", "SSD", "SDN" ], "nativeName": "Ködörösêse tî Bêafrîka", "numericCode": "140", "flags": { "svg": "https://flagcdn.com/cf.svg", "png": "https://flagcdn.com/w320/cf.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "sg", "iso639_2": "sag", "name": "Sango", "nativeName": "yângâ tî sängö" } ], "translations": { "br": "Republik Kreizafrikan", "pt": "República Centro-Africana", "nl": "Centraal-Afrikaanse Republiek", "hr": "Srednjoafrička Republika", "fa": "جمهوری آفریقای مرکزی", "de": "Zentralafrikanische Republik", "es": "República Centroafricana", "fr": "République centrafricaine", "ja": "中央アフリカ共和国", "it": "Repubblica Centrafricana", "hu": "Közép-afrikai Köztársaság" }, "flag": "https://flagcdn.com/cf.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CAF", "independent": true }, { "name": "Chad", "topLevelDomain": [ ".td" ], "alpha2Code": "TD", "alpha3Code": "TCD", "callingCodes": [ "235" ], "capital": "N'Djamena", "altSpellings": [ "TD", "Tchad", "Republic of Chad", "République du Tchad" ], "subregion": "Middle Africa", "region": "Africa", "population": 16425859, "latlng": [ 15.0, 19.0 ], "demonym": "Chadian", "area": 1284000.0, "gini": 43.3, "timezones": [ "UTC+01:00" ], "borders": [ "CMR", "CAF", "LBY", "NER", "NGA", "SDN" ], "nativeName": "Tchad", "numericCode": "148", "flags": { "svg": "https://flagcdn.com/td.svg", "png": "https://flagcdn.com/w320/td.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Tchad", "pt": "Chade", "nl": "Tsjaad", "hr": "Čad", "fa": "چاد", "de": "Tschad", "es": "Chad", "fr": "Tchad", "ja": "チャド", "it": "Ciad", "hu": "Csád" }, "flag": "https://flagcdn.com/td.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CHA", "independent": true }, { "name": "Chile", "topLevelDomain": [ ".cl" ], "alpha2Code": "CL", "alpha3Code": "CHL", "callingCodes": [ "56" ], "capital": "Santiago", "altSpellings": [ "CL", "Republic of Chile", "República de Chile" ], "subregion": "South America", "region": "Americas", "population": 19116209, "latlng": [ -30.0, -71.0 ], "demonym": "Chilean", "area": 756102.0, "gini": 44.4, "timezones": [ "UTC-06:00", "UTC-04:00" ], "borders": [ "ARG", "BOL", "PER" ], "nativeName": "Chile", "numericCode": "152", "flags": { "svg": "https://flagcdn.com/cl.svg", "png": "https://flagcdn.com/w320/cl.png" }, "currencies": [ { "code": "CLP", "name": "Chilean peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Chile", "pt": "Chile", "nl": "Chili", "hr": "Čile", "fa": "شیلی", "de": "Chile", "es": "Chile", "fr": "Chili", "ja": "チリ", "it": "Cile", "hu": "Chile" }, "flag": "https://flagcdn.com/cl.svg", "regionalBlocs": [ { "acronym": "PA", "name": "Pacific Alliance", "otherNames": [ "Alianza del Pacífico" ] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "CHI", "independent": true }, { "name": "China", "topLevelDomain": [ ".cn" ], "alpha2Code": "CN", "alpha3Code": "CHN", "callingCodes": [ "86" ], "capital": "Beijing", "altSpellings": [ "CN", "Zhōngguó", "Zhongguo", "Zhonghua", "People's Republic of China", "中华人民共和国", "Zhōnghuá Rénmín Gònghéguó" ], "subregion": "Eastern Asia", "region": "Asia", "population": 1402112000, "latlng": [ 35.0, 105.0 ], "demonym": "Chinese", "area": 9640011.0, "gini": 38.5, "timezones": [ "UTC+08:00" ], "borders": [ "AFG", "BTN", "MMR", "HKG", "IND", "KAZ", "PRK", "KGZ", "LAO", "MAC", "MNG", "PAK", "RUS", "TJK", "VNM", "NPL" ], "nativeName": "中国", "numericCode": "156", "flags": { "svg": "https://flagcdn.com/cn.svg", "png": "https://flagcdn.com/w320/cn.png" }, "currencies": [ { "code": "CNY", "name": "Chinese yuan", "symbol": "¥" } ], "languages": [ { "iso639_1": "zh", "iso639_2": "zho", "name": "Chinese", "nativeName": "中文 (Zhōngwén)" } ], "translations": { "br": "Sina", "pt": "China", "nl": "China", "hr": "Kina", "fa": "چین", "de": "China", "es": "China", "fr": "Chine", "ja": "中国", "it": "Cina", "hu": "Kína" }, "flag": "https://flagcdn.com/cn.svg", "cioc": "CHN", "independent": true }, { "name": "Christmas Island", "topLevelDomain": [ ".cx" ], "alpha2Code": "CX", "alpha3Code": "CXR", "callingCodes": [ "61" ], "capital": "Flying Fish Cove", "altSpellings": [ "CX", "Territory of Christmas Island" ], "subregion": "Australia and New Zealand", "region": "Oceania", "population": 2072, "latlng": [ -10.5, 105.66666666 ], "demonym": "Christmas Island", "area": 135.0, "timezones": [ "UTC+07:00" ], "nativeName": "Christmas Island", "numericCode": "162", "flags": { "svg": "https://flagcdn.com/cx.svg", "png": "https://flagcdn.com/w320/cx.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Enez Christmas", "pt": "Ilha do Natal", "nl": "Christmaseiland", "hr": "Božićni otok", "fa": "جزیره کریسمس", "de": "Weihnachtsinsel", "es": "Isla de Navidad", "fr": "Île Christmas", "ja": "クリスマス島", "it": "Isola di Natale", "hu": "Karácsony-sziget" }, "flag": "https://flagcdn.com/cx.svg", "independent": false }, { "name": "Cocos (Keeling) Islands", "topLevelDomain": [ ".cc" ], "alpha2Code": "CC", "alpha3Code": "CCK", "callingCodes": [ "61" ], "capital": "West Island", "altSpellings": [ "CC", "Territory of the Cocos (Keeling) Islands", "Keeling Islands" ], "subregion": "Australia and New Zealand", "region": "Oceania", "population": 550, "latlng": [ -12.5, 96.83333333 ], "demonym": "Cocos Islander", "area": 14.0, "timezones": [ "UTC+06:30" ], "nativeName": "Cocos (Keeling) Islands", "numericCode": "166", "flags": { "svg": "https://flagcdn.com/cc.svg", "png": "https://flagcdn.com/w320/cc.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Cocos (Keeling)", "pt": "Ilhas dos Cocos", "nl": "Cocoseilanden", "hr": "Kokosovi Otoci", "fa": "جزایر کوکوس", "de": "Kokosinseln", "es": "Islas Cocos o Islas Keeling", "fr": "Îles Cocos", "ja": "ココス(キーリング)諸島", "it": "Isole Cocos e Keeling", "hu": "Kókusz-szigetek" }, "flag": "https://flagcdn.com/cc.svg", "independent": false }, { "name": "Colombia", "topLevelDomain": [ ".co" ], "alpha2Code": "CO", "alpha3Code": "COL", "callingCodes": [ "57" ], "capital": "Bogotá", "altSpellings": [ "CO", "Republic of Colombia", "República de Colombia" ], "subregion": "South America", "region": "Americas", "population": 50882884, "latlng": [ 4.0, -72.0 ], "demonym": "Colombian", "area": 1141748.0, "gini": 51.3, "timezones": [ "UTC-05:00" ], "borders": [ "BRA", "ECU", "PAN", "PER", "VEN" ], "nativeName": "Colombia", "numericCode": "170", "flags": { "svg": "https://flagcdn.com/co.svg", "png": "https://flagcdn.com/w320/co.png" }, "currencies": [ { "code": "COP", "name": "Colombian peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Kolombia", "pt": "Colômbia", "nl": "Colombia", "hr": "Kolumbija", "fa": "کلمبیا", "de": "Kolumbien", "es": "Colombia", "fr": "Colombie", "ja": "コロンビア", "it": "Colombia", "hu": "Kolumbia" }, "flag": "https://flagcdn.com/co.svg", "regionalBlocs": [ { "acronym": "PA", "name": "Pacific Alliance", "otherNames": [ "Alianza del Pacífico" ] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "COL", "independent": true }, { "name": "Comoros", "topLevelDomain": [ ".km" ], "alpha2Code": "KM", "alpha3Code": "COM", "callingCodes": [ "269" ], "capital": "Moroni", "altSpellings": [ "KM", "Union of the Comoros", "Union des Comores", "Udzima wa Komori", "al-Ittiḥād al-Qumurī" ], "subregion": "Eastern Africa", "region": "Africa", "population": 869595, "latlng": [ -12.16666666, 44.25 ], "demonym": "Comoran", "area": 1862.0, "gini": 45.3, "timezones": [ "UTC+03:00" ], "nativeName": "Komori", "numericCode": "174", "flags": { "svg": "https://flagcdn.com/km.svg", "png": "https://flagcdn.com/w320/km.png" }, "currencies": [ { "code": "KMF", "name": "Comorian franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Komorez", "pt": "Comores", "nl": "Comoren", "hr": "Komori", "fa": "کومور", "de": "Union der Komoren", "es": "Comoras", "fr": "Comores", "ja": "コモロ", "it": "Comore", "hu": "Comore-szigetek" }, "flag": "https://flagcdn.com/km.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "COM", "independent": true }, { "name": "Congo", "topLevelDomain": [ ".cg" ], "alpha2Code": "CG", "alpha3Code": "COG", "callingCodes": [ "242" ], "capital": "Brazzaville", "altSpellings": [ "CG", "Congo-Brazzaville" ], "subregion": "Middle Africa", "region": "Africa", "population": 5518092, "latlng": [ -1.0, 15.0 ], "demonym": "Congolese", "area": 342000.0, "gini": 48.9, "timezones": [ "UTC+01:00" ], "borders": [ "AGO", "CMR", "CAF", "COD", "GAB" ], "nativeName": "République du Congo", "numericCode": "178", "flags": { "svg": "https://flagcdn.com/cg.svg", "png": "https://flagcdn.com/w320/cg.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ln", "iso639_2": "lin", "name": "Lingala", "nativeName": "Lingála" } ], "translations": { "br": "Kongo-Brazzaville", "pt": "Congo", "nl": "Congo [Republiek]", "hr": "Kongo", "fa": "کنگو", "de": "Kongo", "es": "Congo", "fr": "Congo", "ja": "コンゴ共和国", "it": "Congo", "hu": "Kongói Köztársaság" }, "flag": "https://flagcdn.com/cg.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CGO", "independent": true }, { "name": "Congo (Democratic Republic of the)", "topLevelDomain": [ ".cd" ], "alpha2Code": "CD", "alpha3Code": "COD", "callingCodes": [ "243" ], "capital": "Kinshasa", "altSpellings": [ "CD", "DR Congo", "Congo-Kinshasa", "DRC" ], "subregion": "Middle Africa", "region": "Africa", "population": 89561404, "latlng": [ 0.0, 25.0 ], "demonym": "Congolese", "area": 2344858.0, "gini": 42.1, "timezones": [ "UTC+01:00", "UTC+02:00" ], "borders": [ "AGO", "BDI", "CAF", "COG", "RWA", "SSD", "TZA", "UGA", "ZMB" ], "nativeName": "République démocratique du Congo", "numericCode": "180", "flags": { "svg": "https://flagcdn.com/cd.svg", "png": "https://flagcdn.com/w320/cd.png" }, "currencies": [ { "code": "CDF", "name": "Congolese franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ln", "iso639_2": "lin", "name": "Lingala", "nativeName": "Lingála" }, { "iso639_1": "kg", "iso639_2": "kon", "name": "Kongo", "nativeName": "Kikongo" }, { "iso639_1": "sw", "iso639_2": "swa", "name": "Swahili", "nativeName": "Kiswahili" }, { "iso639_1": "lu", "iso639_2": "lub", "name": "Luba-Katanga", "nativeName": "Tshiluba" } ], "translations": { "br": "Kongo-Kinshasa", "pt": "RD Congo", "nl": "Congo [DRC]", "hr": "Kongo, Demokratska Republika", "fa": "جمهوری کنگو", "de": "Kongo (Dem. Rep.)", "es": "Congo (Rep. Dem.)", "fr": "Congo (Rép. dém.)", "ja": "コンゴ民主共和国", "it": "Congo (Rep. Dem.)", "hu": "Kongói Demokratikus Köztársaság" }, "flag": "https://flagcdn.com/cd.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "COD", "independent": true }, { "name": "Cook Islands", "topLevelDomain": [ ".ck" ], "alpha2Code": "CK", "alpha3Code": "COK", "callingCodes": [ "682" ], "capital": "Avarua", "altSpellings": [ "CK", "Kūki 'Āirani" ], "subregion": "Polynesia", "region": "Oceania", "population": 18100, "latlng": [ -21.23333333, -159.76666666 ], "demonym": "Cook Islander", "area": 236.0, "timezones": [ "UTC-10:00" ], "nativeName": "Cook Islands", "numericCode": "184", "flags": { "svg": "https://flagcdn.com/ck.svg", "png": "https://flagcdn.com/w320/ck.png" }, "currencies": [ { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, { "code": "CKD", "name": "Cook Islands dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_2": "rar", "name": "Cook Islands Māori", "nativeName": "Māori" } ], "translations": { "br": "Inizi Cook", "pt": "Ilhas Cook", "nl": "Cookeilanden", "hr": "Cookovo Otočje", "fa": "جزایر کوک", "de": "Cookinseln", "es": "Islas Cook", "fr": "Îles Cook", "ja": "クック諸島", "it": "Isole Cook", "hu": "Cook-szigetek" }, "flag": "https://flagcdn.com/ck.svg", "cioc": "COK", "independent": true }, { "name": "Costa Rica", "topLevelDomain": [ ".cr" ], "alpha2Code": "CR", "alpha3Code": "CRI", "callingCodes": [ "506" ], "capital": "San José", "altSpellings": [ "CR", "Republic of Costa Rica", "República de Costa Rica" ], "subregion": "Central America", "region": "Americas", "population": 5094114, "latlng": [ 10.0, -84.0 ], "demonym": "Costa Rican", "area": 51100.0, "gini": 48.2, "timezones": [ "UTC-06:00" ], "borders": [ "NIC", "PAN" ], "nativeName": "Costa Rica", "numericCode": "188", "flags": { "svg": "https://flagcdn.com/cr.svg", "png": "https://flagcdn.com/w320/cr.png" }, "currencies": [ { "code": "CRC", "name": "Costa Rican colón", "symbol": "₡" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Costa Rica", "pt": "Costa Rica", "nl": "Costa Rica", "hr": "Kostarika", "fa": "کاستاریکا", "de": "Costa Rica", "es": "Costa Rica", "fr": "Costa Rica", "ja": "コスタリカ", "it": "Costa Rica", "hu": "Costa Rica" }, "flag": "https://flagcdn.com/cr.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "CRC", "independent": true }, { "name": "Croatia", "topLevelDomain": [ ".hr" ], "alpha2Code": "HR", "alpha3Code": "HRV", "callingCodes": [ "385" ], "capital": "Zagreb", "altSpellings": [ "HR", "Hrvatska", "Republic of Croatia", "Republika Hrvatska" ], "subregion": "Southern Europe", "region": "Europe", "population": 4047200, "latlng": [ 45.16666666, 15.5 ], "demonym": "Croatian", "area": 56594.0, "gini": 29.7, "timezones": [ "UTC+01:00" ], "borders": [ "BIH", "HUN", "MNE", "SRB", "SVN" ], "nativeName": "Hrvatska", "numericCode": "191", "flags": { "svg": "https://flagcdn.com/hr.svg", "png": "https://flagcdn.com/w320/hr.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "hr", "iso639_2": "hrv", "name": "Croatian", "nativeName": "hrvatski jezik" } ], "translations": { "br": "Kroatia", "pt": "Croácia", "nl": "Kroatië", "hr": "Hrvatska", "fa": "کرواسی", "de": "Kroatien", "es": "Croacia", "fr": "Croatie", "ja": "クロアチア", "it": "Croazia", "hu": "Horvátország" }, "flag": "https://flagcdn.com/hr.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "CRO", "independent": true }, { "name": "Cuba", "topLevelDomain": [ ".cu" ], "alpha2Code": "CU", "alpha3Code": "CUB", "callingCodes": [ "53" ], "capital": "Havana", "altSpellings": [ "CU", "Republic of Cuba", "República de Cuba" ], "subregion": "Caribbean", "region": "Americas", "population": 11326616, "latlng": [ 21.5, -80.0 ], "demonym": "Cuban", "area": 109884.0, "timezones": [ "UTC-05:00" ], "nativeName": "Cuba", "numericCode": "192", "flags": { "svg": "https://flagcdn.com/cu.svg", "png": "https://flagcdn.com/w320/cu.png" }, "currencies": [ { "code": "CUC", "name": "Cuban convertible peso", "symbol": "$" }, { "code": "CUP", "name": "Cuban peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Kuba", "pt": "Cuba", "nl": "Cuba", "hr": "Kuba", "fa": "کوبا", "de": "Kuba", "es": "Cuba", "fr": "Cuba", "ja": "キューバ", "it": "Cuba", "hu": "Kuba" }, "flag": "https://flagcdn.com/cu.svg", "cioc": "CUB", "independent": true }, { "name": "Curaçao", "topLevelDomain": [ ".cw" ], "alpha2Code": "CW", "alpha3Code": "CUW", "callingCodes": [ "599" ], "capital": "Willemstad", "altSpellings": [ "CW", "Curacao", "Kòrsou", "Country of Curaçao", "Land Curaçao", "Pais Kòrsou" ], "subregion": "Caribbean", "region": "Americas", "population": 155014, "latlng": [ 12.116667, -68.933333 ], "demonym": "Dutch", "area": 444.0, "timezones": [ "UTC-04:00" ], "nativeName": "Curaçao", "numericCode": "531", "flags": { "svg": "https://flagcdn.com/cw.svg", "png": "https://flagcdn.com/w320/cw.png" }, "currencies": [ { "code": "ANG", "name": "Netherlands Antillean guilder", "symbol": "ƒ" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" }, { "iso639_1": "pa", "iso639_2": "pan", "name": "(Eastern) Punjabi", "nativeName": "ਪੰਜਾਬੀ" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Curaçao", "pt": "Curaçao", "nl": "Curaçao", "hr": "Curaçao", "fa": "کوراسائو", "de": "Curaçao", "es": "Curaçao", "fr": "Curaçao", "ja": "Curaçao", "it": "Curaçao", "hu": "Curaçao" }, "flag": "https://flagcdn.com/cw.svg", "independent": false }, { "name": "Cyprus", "topLevelDomain": [ ".cy" ], "alpha2Code": "CY", "alpha3Code": "CYP", "callingCodes": [ "357" ], "capital": "Nicosia", "altSpellings": [ "CY", "Kýpros", "Kıbrıs", "Republic of Cyprus", "Κυπριακή Δημοκρατία", "Kıbrıs Cumhuriyeti" ], "subregion": "Southern Europe", "region": "Europe", "population": 1207361, "latlng": [ 35.0, 33.0 ], "demonym": "Cypriot", "area": 9251.0, "gini": 32.7, "timezones": [ "UTC+02:00" ], "borders": [ "GBR" ], "nativeName": "Κύπρος", "numericCode": "196", "flags": { "svg": "https://flagcdn.com/cy.svg", "png": "https://flagcdn.com/w320/cy.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "el", "iso639_2": "ell", "name": "Greek (modern)", "nativeName": "ελληνικά" }, { "iso639_1": "tr", "iso639_2": "tur", "name": "Turkish", "nativeName": "Türkçe" }, { "iso639_1": "hy", "iso639_2": "hye", "name": "Armenian", "nativeName": "Հայերեն" } ], "translations": { "br": "Kiprenez", "pt": "Chipre", "nl": "Cyprus", "hr": "Cipar", "fa": "قبرس", "de": "Zypern", "es": "Chipre", "fr": "Chypre", "ja": "キプロス", "it": "Cipro", "hu": "Ciprus" }, "flag": "https://flagcdn.com/cy.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "CYP", "independent": true }, { "name": "Czech Republic", "topLevelDomain": [ ".cz" ], "alpha2Code": "CZ", "alpha3Code": "CZE", "callingCodes": [ "420" ], "capital": "Prague", "altSpellings": [ "CZ", "Česká republika", "Česko" ], "subregion": "Central Europe", "region": "Europe", "population": 10698896, "latlng": [ 49.75, 15.5 ], "demonym": "Czech", "area": 78865.0, "gini": 25.0, "timezones": [ "UTC+01:00" ], "nativeName": "Česká republika", "numericCode": "203", "flags": { "svg": "https://flagcdn.com/cz.svg", "png": "https://flagcdn.com/w320/cz.png" }, "currencies": [ { "code": "CZK", "name": "Czech koruna", "symbol": "Kč" } ], "languages": [ { "iso639_1": "cs", "iso639_2": "ces", "name": "Czech", "nativeName": "čeština" }, { "iso639_1": "sk", "iso639_2": "slk", "name": "Slovak", "nativeName": "slovenčina" } ], "translations": { "br": "Tchekia", "pt": "República Checa", "nl": "Tsjechië", "hr": "Češka", "fa": "جمهوری چک", "de": "Tschechische Republik", "es": "República Checa", "fr": "République tchèque", "ja": "チェコ", "it": "Repubblica Ceca", "hu": "Csehország" }, "flag": "https://flagcdn.com/cz.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "CZE", "independent": true }, { "name": "Denmark", "topLevelDomain": [ ".dk" ], "alpha2Code": "DK", "alpha3Code": "DNK", "callingCodes": [ "45" ], "capital": "Copenhagen", "altSpellings": [ "DK", "Danmark", "Kingdom of Denmark", "Kongeriget Danmark" ], "subregion": "Northern Europe", "region": "Europe", "population": 5831404, "latlng": [ 56.0, 10.0 ], "demonym": "Danish", "area": 43094.0, "gini": 28.2, "timezones": [ "UTC-04:00", "UTC-03:00", "UTC-01:00", "UTC", "UTC+01:00" ], "borders": [ "DEU" ], "nativeName": "Danmark", "numericCode": "208", "flags": { "svg": "https://flagcdn.com/dk.svg", "png": "https://flagcdn.com/w320/dk.png" }, "currencies": [ { "code": "DKK", "name": "Danish krone", "symbol": "kr" } ], "languages": [ { "iso639_1": "da", "iso639_2": "dan", "name": "Danish", "nativeName": "dansk" } ], "translations": { "br": "Danmark", "pt": "Dinamarca", "nl": "Denemarken", "hr": "Danska", "fa": "دانمارک", "de": "Dänemark", "es": "Dinamarca", "fr": "Danemark", "ja": "デンマーク", "it": "Danimarca", "hu": "Dánia" }, "flag": "https://flagcdn.com/dk.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "DEN", "independent": true }, { "name": "Djibouti", "topLevelDomain": [ ".dj" ], "alpha2Code": "DJ", "alpha3Code": "DJI", "callingCodes": [ "253" ], "capital": "Djibouti", "altSpellings": [ "DJ", "Jabuuti", "Gabuuti", "Republic of Djibouti", "République de Djibouti", "Gabuutih Ummuuno", "Jamhuuriyadda Jabuuti" ], "subregion": "Eastern Africa", "region": "Africa", "population": 988002, "latlng": [ 11.5, 43.0 ], "demonym": "Djibouti", "area": 23200.0, "gini": 41.6, "timezones": [ "UTC+03:00" ], "borders": [ "ERI", "ETH", "SOM" ], "nativeName": "Djibouti", "numericCode": "262", "flags": { "svg": "https://flagcdn.com/dj.svg", "png": "https://flagcdn.com/w320/dj.png" }, "currencies": [ { "code": "DJF", "name": "Djiboutian franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Djibouti", "pt": "Djibuti", "nl": "Djibouti", "hr": "Džibuti", "fa": "جیبوتی", "de": "Dschibuti", "es": "Yibuti", "fr": "Djibouti", "ja": "ジブチ", "it": "Gibuti", "hu": "Dzsibuti" }, "flag": "https://flagcdn.com/dj.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "DJI", "independent": true }, { "name": "Dominica", "topLevelDomain": [ ".dm" ], "alpha2Code": "DM", "alpha3Code": "DMA", "callingCodes": [ "1" ], "capital": "Roseau", "altSpellings": [ "DM", "Dominique", "Wai‘tu kubuli", "Commonwealth of Dominica" ], "subregion": "Caribbean", "region": "Americas", "population": 71991, "latlng": [ 15.41666666, -61.33333333 ], "demonym": "Dominican", "area": 751.0, "timezones": [ "UTC-04:00" ], "nativeName": "Dominica", "numericCode": "212", "flags": { "svg": "https://flagcdn.com/dm.svg", "png": "https://flagcdn.com/w320/dm.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Dominika", "pt": "Dominica", "nl": "Dominica", "hr": "Dominika", "fa": "دومینیکا", "de": "Dominica", "es": "Dominica", "fr": "Dominique", "ja": "ドミニカ国", "it": "Dominica", "hu": "Dominikai Közösség" }, "flag": "https://flagcdn.com/dm.svg", "cioc": "DMA", "independent": true }, { "name": "Dominican Republic", "topLevelDomain": [ ".do" ], "alpha2Code": "DO", "alpha3Code": "DOM", "callingCodes": [ "1" ], "capital": "Santo Domingo", "altSpellings": [ "DO" ], "subregion": "Caribbean", "region": "Americas", "population": 10847904, "latlng": [ 19.0, -70.66666666 ], "demonym": "Dominican", "area": 48671.0, "gini": 41.9, "timezones": [ "UTC-04:00" ], "borders": [ "HTI" ], "nativeName": "República Dominicana", "numericCode": "214", "flags": { "svg": "https://flagcdn.com/do.svg", "png": "https://flagcdn.com/w320/do.png" }, "currencies": [ { "code": "DOP", "name": "Dominican peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Republik Dominikan", "pt": "República Dominicana", "nl": "Dominicaanse Republiek", "hr": "Dominikanska Republika", "fa": "جمهوری دومینیکن", "de": "Dominikanische Republik", "es": "República Dominicana", "fr": "République dominicaine", "ja": "ドミニカ共和国", "it": "Repubblica Dominicana", "hu": "Dominikai Köztársaság" }, "flag": "https://flagcdn.com/do.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] }, { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "DOM", "independent": true }, { "name": "Ecuador", "topLevelDomain": [ ".ec" ], "alpha2Code": "EC", "alpha3Code": "ECU", "callingCodes": [ "593" ], "capital": "Quito", "altSpellings": [ "EC", "Republic of Ecuador", "República del Ecuador" ], "subregion": "South America", "region": "Americas", "population": 17643060, "latlng": [ -2.0, -77.5 ], "demonym": "Ecuadorean", "area": 276841.0, "gini": 45.7, "timezones": [ "UTC-06:00", "UTC-05:00" ], "borders": [ "COL", "PER" ], "nativeName": "Ecuador", "numericCode": "218", "flags": { "svg": "https://flagcdn.com/ec.svg", "png": "https://flagcdn.com/w320/ec.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Ecuador", "pt": "Equador", "nl": "Ecuador", "hr": "Ekvador", "fa": "اکوادور", "de": "Ecuador", "es": "Ecuador", "fr": "Équateur", "ja": "エクアドル", "it": "Ecuador", "hu": "Ecuador" }, "flag": "https://flagcdn.com/ec.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "ECU", "independent": true }, { "name": "Egypt", "topLevelDomain": [ ".eg" ], "alpha2Code": "EG", "alpha3Code": "EGY", "callingCodes": [ "20" ], "capital": "Cairo", "altSpellings": [ "EG", "Arab Republic of Egypt" ], "subregion": "Northern Africa", "region": "Africa", "population": 102334403, "latlng": [ 27.0, 30.0 ], "demonym": "Egyptian", "area": 1002450.0, "gini": 31.5, "timezones": [ "UTC+02:00" ], "borders": [ "ISR", "LBY", "SDN" ], "nativeName": "مصر‎", "numericCode": "818", "flags": { "svg": "https://flagcdn.com/eg.svg", "png": "https://flagcdn.com/w320/eg.png" }, "currencies": [ { "code": "EGP", "name": "Egyptian pound", "symbol": "£" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Egipt", "pt": "Egipto", "nl": "Egypte", "hr": "Egipat", "fa": "مصر", "de": "Ägypten", "es": "Egipto", "fr": "Égypte", "ja": "エジプト", "it": "Egitto", "hu": "Egyiptom" }, "flag": "https://flagcdn.com/eg.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "EGY", "independent": true }, { "name": "El Salvador", "topLevelDomain": [ ".sv" ], "alpha2Code": "SV", "alpha3Code": "SLV", "callingCodes": [ "503" ], "capital": "San Salvador", "altSpellings": [ "SV", "Republic of El Salvador", "República de El Salvador" ], "subregion": "Central America", "region": "Americas", "population": 6486201, "latlng": [ 13.83333333, -88.91666666 ], "demonym": "Salvadoran", "area": 21041.0, "gini": 38.8, "timezones": [ "UTC-06:00" ], "borders": [ "GTM", "HND" ], "nativeName": "El Salvador", "numericCode": "222", "flags": { "svg": "https://flagcdn.com/sv.svg", "png": "https://flagcdn.com/w320/sv.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "El Salvador", "pt": "El Salvador", "nl": "El Salvador", "hr": "Salvador", "fa": "السالوادور", "de": "El Salvador", "es": "El Salvador", "fr": "Salvador", "ja": "エルサルバドル", "it": "El Salvador", "hu": "Salvador" }, "flag": "https://flagcdn.com/sv.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "ESA", "independent": true }, { "name": "Equatorial Guinea", "topLevelDomain": [ ".gq" ], "alpha2Code": "GQ", "alpha3Code": "GNQ", "callingCodes": [ "240" ], "capital": "Malabo", "altSpellings": [ "GQ", "Republic of Equatorial Guinea", "República de Guinea Ecuatorial", "République de Guinée équatoriale", "República da Guiné Equatorial" ], "subregion": "Middle Africa", "region": "Africa", "population": 1402985, "latlng": [ 2.0, 10.0 ], "demonym": "Equatorial Guinean", "area": 28051.0, "timezones": [ "UTC+01:00" ], "borders": [ "CMR", "GAB" ], "nativeName": "Guinea Ecuatorial", "numericCode": "226", "flags": { "svg": "https://flagcdn.com/gq.svg", "png": "https://flagcdn.com/w320/gq.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" }, { "iso639_2": "fan", "name": "Fang", "nativeName": "Fang" } ], "translations": { "br": "Ginea ar C'heheder", "pt": "Guiné Equatorial", "nl": "Equatoriaal-Guinea", "hr": "Ekvatorijalna Gvineja", "fa": "گینه استوایی", "de": "Äquatorial-Guinea", "es": "Guinea Ecuatorial", "fr": "Guinée-Équatoriale", "ja": "赤道ギニア", "it": "Guinea Equatoriale", "hu": "Egyenlítői-Guinea" }, "flag": "https://flagcdn.com/gq.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GEQ", "independent": true }, { "name": "Eritrea", "topLevelDomain": [ ".er" ], "alpha2Code": "ER", "alpha3Code": "ERI", "callingCodes": [ "291" ], "capital": "Asmara", "altSpellings": [ "ER", "State of Eritrea", "ሃገረ ኤርትራ", "Dawlat Iritriyá", "ʾErtrā", "Iritriyā", "" ], "subregion": "Eastern Africa", "region": "Africa", "population": 5352000, "latlng": [ 15.0, 39.0 ], "demonym": "Eritrean", "area": 117600.0, "timezones": [ "UTC+03:00" ], "borders": [ "DJI", "ETH", "SDN" ], "nativeName": "ኤርትራ", "numericCode": "232", "flags": { "svg": "https://flagcdn.com/er.svg", "png": "https://flagcdn.com/w320/er.png" }, "currencies": [ { "code": "ERN", "name": "Eritrean nakfa", "symbol": "Nfk" } ], "languages": [ { "iso639_1": "ti", "iso639_2": "tir", "name": "Tigrinya", "nativeName": "ትግርኛ" }, { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_2": "tig", "name": "Tigre", "nativeName": "ትግረ" }, { "iso639_2": "kun", "name": "Kunama", "nativeName": "Kunama" }, { "iso639_2": "ssy", "name": "Saho", "nativeName": "Saho" }, { "iso639_2": "byn", "name": "Bilen", "nativeName": "ብሊና" }, { "iso639_2": "nrb", "name": "Nara", "nativeName": "Nara" }, { "iso639_1": "aa", "iso639_2": "aar", "name": "Afar", "nativeName": "Afar" } ], "translations": { "br": "Eritrea", "pt": "Eritreia", "nl": "Eritrea", "hr": "Eritreja", "fa": "اریتره", "de": "Eritrea", "es": "Eritrea", "fr": "Érythrée", "ja": "エリトリア", "it": "Eritrea", "hu": "Eritrea" }, "flag": "https://flagcdn.com/er.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "ERI", "independent": true }, { "name": "Estonia", "topLevelDomain": [ ".ee" ], "alpha2Code": "EE", "alpha3Code": "EST", "callingCodes": [ "372" ], "capital": "Tallinn", "altSpellings": [ "EE", "Eesti", "Republic of Estonia", "Eesti Vabariik" ], "subregion": "Northern Europe", "region": "Europe", "population": 1331057, "latlng": [ 59.0, 26.0 ], "demonym": "Estonian", "area": 45227.0, "gini": 30.3, "timezones": [ "UTC+02:00" ], "borders": [ "LVA", "RUS" ], "nativeName": "Eesti", "numericCode": "233", "flags": { "svg": "https://flagcdn.com/ee.svg", "png": "https://flagcdn.com/w320/ee.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "et", "iso639_2": "est", "name": "Estonian", "nativeName": "eesti" } ], "translations": { "br": "Estonia", "pt": "Estónia", "nl": "Estland", "hr": "Estonija", "fa": "استونی", "de": "Estland", "es": "Estonia", "fr": "Estonie", "ja": "エストニア", "it": "Estonia", "hu": "Észtország" }, "flag": "https://flagcdn.com/ee.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "EST", "independent": true }, { "name": "Ethiopia", "topLevelDomain": [ ".et" ], "alpha2Code": "ET", "alpha3Code": "ETH", "callingCodes": [ "251" ], "capital": "Addis Ababa", "altSpellings": [ "ET", "ʾĪtyōṗṗyā", "Federal Democratic Republic of Ethiopia", "የኢትዮጵያ ፌዴራላዊ ዲሞክራሲያዊ ሪፐብሊክ" ], "subregion": "Eastern Africa", "region": "Africa", "population": 114963583, "latlng": [ 8.0, 38.0 ], "demonym": "Ethiopian", "area": 1104300.0, "gini": 35.0, "timezones": [ "UTC+03:00" ], "borders": [ "DJI", "ERI", "KEN", "SOM", "SSD", "SDN" ], "nativeName": "ኢትዮጵያ", "numericCode": "231", "flags": { "svg": "https://flagcdn.com/et.svg", "png": "https://flagcdn.com/w320/et.png" }, "currencies": [ { "code": "ETB", "name": "Ethiopian birr", "symbol": "Br" } ], "languages": [ { "iso639_1": "am", "iso639_2": "amh", "name": "Amharic", "nativeName": "አማርኛ" } ], "translations": { "br": "Etiopia", "pt": "Etiópia", "nl": "Ethiopië", "hr": "Etiopija", "fa": "اتیوپی", "de": "Äthiopien", "es": "Etiopía", "fr": "Éthiopie", "ja": "エチオピア", "it": "Etiopia", "hu": "Etiópia" }, "flag": "https://flagcdn.com/et.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "ETH", "independent": true }, { "name": "Falkland Islands (Malvinas)", "topLevelDomain": [ ".fk" ], "alpha2Code": "FK", "alpha3Code": "FLK", "callingCodes": [ "500" ], "capital": "Stanley", "altSpellings": [ "FK", "Islas Malvinas" ], "subregion": "South America", "region": "Americas", "population": 2563, "latlng": [ -51.75, -59.0 ], "demonym": "Falkland Islander", "area": 12173.0, "timezones": [ "UTC-04:00" ], "nativeName": "Falkland Islands", "numericCode": "238", "flags": { "svg": "https://flagcdn.com/fk.svg", "png": "https://flagcdn.com/w320/fk.png" }, "currencies": [ { "code": "FKP", "name": "Falkland Islands pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Maloù", "pt": "Ilhas Falkland", "nl": "Falklandeilanden [Islas Malvinas]", "hr": "Falklandski Otoci", "fa": "جزایر فالکلند", "de": "Falklandinseln", "es": "Islas Malvinas", "fr": "Îles Malouines", "ja": "フォークランド(マルビナス)諸島", "it": "Isole Falkland o Isole Malvine", "hu": "Falkland-szigetek" }, "flag": "https://flagcdn.com/fk.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "independent": false }, { "name": "Faroe Islands", "topLevelDomain": [ ".fo" ], "alpha2Code": "FO", "alpha3Code": "FRO", "callingCodes": [ "298" ], "capital": "Tórshavn", "altSpellings": [ "FO", "Føroyar", "Færøerne" ], "subregion": "Northern Europe", "region": "Europe", "population": 48865, "latlng": [ 62.0, -7.0 ], "demonym": "Faroese", "area": 1393.0, "timezones": [ "UTC+00:00" ], "nativeName": "Føroyar", "numericCode": "234", "flags": { "svg": "https://flagcdn.com/fo.svg", "png": "https://flagcdn.com/w320/fo.png" }, "currencies": [ { "code": "DKK", "name": "Danish krone", "symbol": "kr" }, { "code": "FOK", "name": "Faroese króna", "symbol": "kr" } ], "languages": [ { "iso639_1": "fo", "iso639_2": "fao", "name": "Faroese", "nativeName": "føroyskt" } ], "translations": { "br": "Inizi Faero", "pt": "Ilhas Faroé", "nl": "Faeröer", "hr": "Farski Otoci", "fa": "جزایر فارو", "de": "Färöer-Inseln", "es": "Islas Faroe", "fr": "Îles Féroé", "ja": "フェロー諸島", "it": "Isole Far Oer", "hu": "Feröer" }, "flag": "https://flagcdn.com/fo.svg", "independent": false }, { "name": "Fiji", "topLevelDomain": [ ".fj" ], "alpha2Code": "FJ", "alpha3Code": "FJI", "callingCodes": [ "679" ], "capital": "Suva", "altSpellings": [ "FJ", "Viti", "Republic of Fiji", "Matanitu ko Viti", "Fijī Gaṇarājya" ], "subregion": "Melanesia", "region": "Oceania", "population": 896444, "latlng": [ -18.0, 175.0 ], "demonym": "Fijian", "area": 18272.0, "gini": 36.7, "timezones": [ "UTC+12:00" ], "nativeName": "Fiji", "numericCode": "242", "flags": { "svg": "https://flagcdn.com/fj.svg", "png": "https://flagcdn.com/w320/fj.png" }, "currencies": [ { "code": "FJD", "name": "Fijian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fj", "iso639_2": "fij", "name": "Fijian", "nativeName": "vosa Vakaviti" }, { "iso639_2": "hif", "name": "Fiji Hindi", "nativeName": "फ़िजी बात" }, { "iso639_2": "rtm", "name": "Rotuman", "nativeName": "Fäeag Rotuma" } ], "translations": { "br": "Fidji", "pt": "Fiji", "nl": "Fiji", "hr": "Fiđi", "fa": "فیجی", "de": "Fidschi", "es": "Fiyi", "fr": "Fidji", "ja": "フィジー", "it": "Figi", "hu": "Fidzsi-szigetek" }, "flag": "https://flagcdn.com/fj.svg", "cioc": "FIJ", "independent": true }, { "name": "Finland", "topLevelDomain": [ ".fi" ], "alpha2Code": "FI", "alpha3Code": "FIN", "callingCodes": [ "358" ], "capital": "Helsinki", "altSpellings": [ "FI", "Suomi", "Republic of Finland", "Suomen tasavalta", "Republiken Finland" ], "subregion": "Northern Europe", "region": "Europe", "population": 5530719, "latlng": [ 64.0, 26.0 ], "demonym": "Finnish", "area": 338424.0, "gini": 27.3, "timezones": [ "UTC+02:00" ], "borders": [ "NOR", "SWE", "RUS" ], "nativeName": "Suomi", "numericCode": "246", "flags": { "svg": "https://flagcdn.com/fi.svg", "png": "https://flagcdn.com/w320/fi.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fi", "iso639_2": "fin", "name": "Finnish", "nativeName": "suomi" }, { "iso639_1": "sv", "iso639_2": "swe", "name": "Swedish", "nativeName": "svenska" } ], "translations": { "br": "Finland", "pt": "Finlândia", "nl": "Finland", "hr": "Finska", "fa": "فنلاند", "de": "Finnland", "es": "Finlandia", "fr": "Finlande", "ja": "フィンランド", "it": "Finlandia", "hu": "Finnország" }, "flag": "https://flagcdn.com/fi.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "FIN", "independent": true }, { "name": "France", "topLevelDomain": [ ".fr" ], "alpha2Code": "FR", "alpha3Code": "FRA", "callingCodes": [ "33" ], "capital": "Paris", "altSpellings": [ "FR", "French Republic", "République française" ], "subregion": "Western Europe", "region": "Europe", "population": 67391582, "latlng": [ 46.0, 2.0 ], "demonym": "French", "area": 640679.0, "gini": 32.4, "timezones": [ "UTC-10:00", "UTC-09:30", "UTC-09:00", "UTC-08:00", "UTC-04:00", "UTC-03:00", "UTC+01:00", "UTC+02:00", "UTC+03:00", "UTC+04:00", "UTC+05:00", "UTC+10:00", "UTC+11:00", "UTC+12:00" ], "borders": [ "AND", "BEL", "DEU", "ITA", "LUX", "MCO", "ESP", "CHE" ], "nativeName": "France", "numericCode": "250", "flags": { "svg": "https://flagcdn.com/fr.svg", "png": "https://flagcdn.com/w320/fr.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Frañs", "pt": "França", "nl": "Frankrijk", "hr": "Francuska", "fa": "فرانسه", "de": "Frankreich", "es": "Francia", "fr": "France", "ja": "フランス", "it": "Francia", "hu": "Franciaország" }, "flag": "https://flagcdn.com/fr.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "FRA", "independent": true }, { "name": "French Guiana", "topLevelDomain": [ ".gf" ], "alpha2Code": "GF", "alpha3Code": "GUF", "callingCodes": [ "594" ], "capital": "Cayenne", "altSpellings": [ "GF", "Guiana", "Guyane" ], "subregion": "South America", "region": "Americas", "population": 254541, "latlng": [ 4.0, -53.0 ], "demonym": "French Guianan", "timezones": [ "UTC-03:00" ], "borders": [ "BRA", "SUR" ], "nativeName": "Guyane française", "numericCode": "254", "flags": { "svg": "https://flagcdn.com/gf.svg", "png": "https://flagcdn.com/w320/gf.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Gwiana C'hall", "pt": "Guiana Francesa", "nl": "Frans-Guyana", "hr": "Francuska Gvajana", "fa": "گویان فرانسه", "de": "Französisch Guyana", "es": "Guayana Francesa", "fr": "Guayane", "ja": "フランス領ギアナ", "it": "Guyana francese", "hu": "Francia Guyana" }, "flag": "https://flagcdn.com/gf.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] }, { "acronym": "EU", "name": "European Union" } ], "independent": false }, { "name": "French Polynesia", "topLevelDomain": [ ".pf" ], "alpha2Code": "PF", "alpha3Code": "PYF", "callingCodes": [ "689" ], "capital": "Papeetē", "altSpellings": [ "PF", "Polynésie française", "French Polynesia", "Pōrīnetia Farāni" ], "subregion": "Polynesia", "region": "Oceania", "population": 280904, "latlng": [ -15.0, -140.0 ], "demonym": "French Polynesian", "area": 4167.0, "timezones": [ "UTC-10:00", "UTC-09:30", "UTC-09:00" ], "nativeName": "Polynésie française", "numericCode": "258", "flags": { "svg": "https://flagcdn.com/pf.svg", "png": "https://flagcdn.com/w320/pf.png" }, "currencies": [ { "code": "XPF", "name": "CFP franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Polinezia C'hall", "pt": "Polinésia Francesa", "nl": "Frans-Polynesië", "hr": "Francuska Polinezija", "fa": "پلی‌نزی فرانسه", "de": "Französisch-Polynesien", "es": "Polinesia Francesa", "fr": "Polynésie française", "ja": "フランス領ポリネシア", "it": "Polinesia Francese", "hu": "Francia Polinézia" }, "flag": "https://flagcdn.com/pf.svg", "independent": false }, { "name": "French Southern Territories", "topLevelDomain": [ ".tf" ], "alpha2Code": "TF", "alpha3Code": "ATF", "callingCodes": [ "262" ], "capital": "Port-aux-Français", "altSpellings": [ "TF" ], "subregion": "Southern Africa", "region": "Africa", "population": 140, "latlng": [ -49.25, 69.167 ], "demonym": "French", "area": 7747.0, "timezones": [ "UTC+05:00" ], "nativeName": "Territoire des Terres australes et antarctiques françaises", "numericCode": "260", "flags": { "svg": "https://flagcdn.com/tf.svg", "png": "https://flagcdn.com/w320/tf.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Douaroù Aostral hag Antarktikel Frañs", "pt": "Terras Austrais e Antárticas Francesas", "nl": "Franse Gebieden in de zuidelijke Indische Oceaan", "hr": "Francuski južni i antarktički teritoriji", "fa": "سرزمین‌های جنوبی و جنوبگانی فرانسه", "de": "Französische Süd- und Antarktisgebiete", "es": "Tierras Australes y Antárticas Francesas", "fr": "Terres australes et antarctiques françaises", "ja": "フランス領南方・南極地域", "it": "Territori Francesi del Sud", "hu": "Francia déli és antarktiszi területek" }, "flag": "https://flagcdn.com/tf.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": false }, { "name": "Gabon", "topLevelDomain": [ ".ga" ], "alpha2Code": "GA", "alpha3Code": "GAB", "callingCodes": [ "241" ], "capital": "Libreville", "altSpellings": [ "GA", "Gabonese Republic", "République Gabonaise" ], "subregion": "Middle Africa", "region": "Africa", "population": 2225728, "latlng": [ -1.0, 11.75 ], "demonym": "Gabonese", "area": 267668.0, "gini": 38.0, "timezones": [ "UTC+01:00" ], "borders": [ "CMR", "COG", "GNQ" ], "nativeName": "Gabon", "numericCode": "266", "flags": { "svg": "https://flagcdn.com/ga.svg", "png": "https://flagcdn.com/w320/ga.png" }, "currencies": [ { "code": "XAF", "name": "Central African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Gabon", "pt": "Gabão", "nl": "Gabon", "hr": "Gabon", "fa": "گابن", "de": "Gabun", "es": "Gabón", "fr": "Gabon", "ja": "ガボン", "it": "Gabon", "hu": "Gabon" }, "flag": "https://flagcdn.com/ga.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GAB", "independent": true }, { "name": "Gambia", "topLevelDomain": [ ".gm" ], "alpha2Code": "GM", "alpha3Code": "GMB", "callingCodes": [ "220" ], "capital": "Banjul", "altSpellings": [ "GM", "Republic of the Gambia" ], "subregion": "Western Africa", "region": "Africa", "population": 2416664, "latlng": [ 13.46666666, -16.56666666 ], "demonym": "Gambian", "area": 11295.0, "gini": 35.9, "timezones": [ "UTC+00:00" ], "borders": [ "SEN" ], "nativeName": "Gambia", "numericCode": "270", "flags": { "svg": "https://flagcdn.com/gm.svg", "png": "https://flagcdn.com/w320/gm.png" }, "currencies": [ { "code": "GMD", "name": "Gambian dalasi", "symbol": "D" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Gambia", "pt": "Gâmbia", "nl": "Gambia", "hr": "Gambija", "fa": "گامبیا", "de": "Gambia", "es": "Gambia", "fr": "Gambie", "ja": "ガンビア", "it": "Gambia", "hu": "Gambia" }, "flag": "https://flagcdn.com/gm.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GAM", "independent": true }, { "name": "Georgia", "topLevelDomain": [ ".ge" ], "alpha2Code": "GE", "alpha3Code": "GEO", "callingCodes": [ "995" ], "capital": "Tbilisi", "altSpellings": [ "GE", "Sakartvelo" ], "subregion": "Western Asia", "region": "Asia", "population": 3714000, "latlng": [ 42.0, 43.5 ], "demonym": "Georgian", "area": 69700.0, "gini": 35.9, "timezones": [ "UTC-04:00" ], "borders": [ "ARM", "AZE", "RUS", "TUR" ], "nativeName": "საქართველო", "numericCode": "268", "flags": { "svg": "https://flagcdn.com/ge.svg", "png": "https://flagcdn.com/w320/ge.png" }, "currencies": [ { "code": "GEL", "name": "Georgian Lari", "symbol": "ლ" } ], "languages": [ { "iso639_1": "ka", "iso639_2": "kat", "name": "Georgian", "nativeName": "ქართული" } ], "translations": { "br": "Jorjia", "pt": "Geórgia", "nl": "Georgië", "hr": "Németország", "fa": "گرجستان", "de": "Georgien", "es": "Georgia", "fr": "Géorgie", "ja": "グルジア", "it": "Georgia", "hu": "Grúzia" }, "flag": "https://flagcdn.com/ge.svg", "cioc": "GEO", "independent": true }, { "name": "Germany", "topLevelDomain": [ ".de" ], "alpha2Code": "DE", "alpha3Code": "DEU", "callingCodes": [ "49" ], "capital": "Berlin", "altSpellings": [ "DE", "Federal Republic of Germany", "Bundesrepublik Deutschland" ], "subregion": "Central Europe", "region": "Europe", "population": 83240525, "latlng": [ 51.0, 9.0 ], "demonym": "German", "area": 357114.0, "gini": 31.9, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "BEL", "CZE", "DNK", "FRA", "LUX", "NLD", "POL", "CHE" ], "nativeName": "Deutschland", "numericCode": "276", "flags": { "svg": "https://flagcdn.com/de.svg", "png": "https://flagcdn.com/w320/de.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" } ], "translations": { "br": "Alamagn", "pt": "Alemanha", "nl": "Duitsland", "hr": "Njemačka", "fa": "آلمان", "de": "Deutschland", "es": "Alemania", "fr": "Allemagne", "ja": "ドイツ", "it": "Germania", "hu": "Grúzia" }, "flag": "https://flagcdn.com/de.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "GER", "independent": true }, { "name": "Ghana", "topLevelDomain": [ ".gh" ], "alpha2Code": "GH", "alpha3Code": "GHA", "callingCodes": [ "233" ], "capital": "Accra", "altSpellings": [ "GH" ], "subregion": "Western Africa", "region": "Africa", "population": 31072945, "latlng": [ 8.0, -2.0 ], "demonym": "Ghanaian", "area": 238533.0, "gini": 43.5, "timezones": [ "UTC" ], "borders": [ "BFA", "CIV", "TGO" ], "nativeName": "Ghana", "numericCode": "288", "flags": { "svg": "https://flagcdn.com/gh.svg", "png": "https://flagcdn.com/w320/gh.png" }, "currencies": [ { "code": "GHS", "name": "Ghanaian cedi", "symbol": "₵" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Ghana", "pt": "Gana", "nl": "Ghana", "hr": "Gana", "fa": "غنا", "de": "Ghana", "es": "Ghana", "fr": "Ghana", "ja": "ガーナ", "it": "Ghana", "hu": "Ghána" }, "flag": "https://flagcdn.com/gh.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GHA", "independent": true }, { "name": "Gibraltar", "topLevelDomain": [ ".gi" ], "alpha2Code": "GI", "alpha3Code": "GIB", "callingCodes": [ "350" ], "capital": "Gibraltar", "altSpellings": [ "GI" ], "subregion": "Southern Europe", "region": "Europe", "population": 33691, "latlng": [ 36.13333333, -5.35 ], "demonym": "Gibraltar", "area": 6.0, "timezones": [ "UTC+01:00" ], "borders": [ "ESP" ], "nativeName": "Gibraltar", "numericCode": "292", "flags": { "svg": "https://flagcdn.com/gi.svg", "png": "https://flagcdn.com/w320/gi.png" }, "currencies": [ { "code": "GIP", "name": "Gibraltar pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Jibraltar", "pt": "Gibraltar", "nl": "Gibraltar", "hr": "Gibraltar", "fa": "جبل‌طارق", "de": "Gibraltar", "es": "Gibraltar", "fr": "Gibraltar", "ja": "ジブラルタル", "it": "Gibilterra", "hu": "Gibraltár" }, "flag": "https://flagcdn.com/gi.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "independent": false }, { "name": "Greece", "topLevelDomain": [ ".gr" ], "alpha2Code": "GR", "alpha3Code": "GRC", "callingCodes": [ "30" ], "capital": "Athens", "altSpellings": [ "GR", "Elláda", "Hellenic Republic", "Ελληνική Δημοκρατία" ], "subregion": "Southern Europe", "region": "Europe", "population": 10715549, "latlng": [ 39.0, 22.0 ], "demonym": "Greek", "area": 131990.0, "gini": 32.9, "timezones": [ "UTC+02:00" ], "borders": [ "ALB", "BGR", "TUR", "MKD" ], "nativeName": "Ελλάδα", "numericCode": "300", "flags": { "svg": "https://flagcdn.com/gr.svg", "png": "https://flagcdn.com/w320/gr.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "el", "iso639_2": "ell", "name": "Greek (modern)", "nativeName": "ελληνικά" } ], "translations": { "br": "Gres", "pt": "Grécia", "nl": "Griekenland", "hr": "Grčka", "fa": "یونان", "de": "Griechenland", "es": "Grecia", "fr": "Grèce", "ja": "ギリシャ", "it": "Grecia", "hu": "Görögország" }, "flag": "https://flagcdn.com/gr.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "GRE", "independent": true }, { "name": "Greenland", "topLevelDomain": [ ".gl" ], "alpha2Code": "GL", "alpha3Code": "GRL", "callingCodes": [ "299" ], "capital": "Nuuk", "altSpellings": [ "GL", "Grønland" ], "subregion": "Northern America", "region": "Americas", "population": 56367, "latlng": [ 72.0, -40.0 ], "demonym": "Greenlandic", "area": 2166086.0, "timezones": [ "UTC-04:00", "UTC-03:00", "UTC-01:00", "UTC+00:00" ], "nativeName": "Kalaallit Nunaat", "numericCode": "304", "flags": { "svg": "https://flagcdn.com/gl.svg", "png": "https://flagcdn.com/w320/gl.png" }, "currencies": [ { "code": "DKK", "name": "Danish krone", "symbol": "kr" } ], "languages": [ { "iso639_1": "kl", "iso639_2": "kal", "name": "Greenlandic", "nativeName": "kalaallisut" } ], "translations": { "br": "Greunland", "pt": "Gronelândia", "nl": "Groenland", "hr": "Grenland", "fa": "گرینلند", "de": "Grönland", "es": "Groenlandia", "fr": "Groenland", "ja": "グリーンランド", "it": "Groenlandia", "hu": "Grönland" }, "flag": "https://flagcdn.com/gl.svg", "independent": false }, { "name": "Grenada", "topLevelDomain": [ ".gd" ], "alpha2Code": "GD", "alpha3Code": "GRD", "callingCodes": [ "1" ], "capital": "St. George's", "altSpellings": [ "GD" ], "subregion": "Caribbean", "region": "Americas", "population": 112519, "latlng": [ 12.11666666, -61.66666666 ], "demonym": "Grenadian", "area": 344.0, "timezones": [ "UTC-04:00" ], "nativeName": "Grenada", "numericCode": "308", "flags": { "svg": "https://flagcdn.com/gd.svg", "png": "https://flagcdn.com/w320/gd.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Grenada", "pt": "Granada", "nl": "Grenada", "hr": "Grenada", "fa": "گرنادا", "de": "Grenada", "es": "Grenada", "fr": "Grenade", "ja": "グレナダ", "it": "Grenada", "hu": "Grenada" }, "flag": "https://flagcdn.com/gd.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "GRN", "independent": true }, { "name": "Guadeloupe", "topLevelDomain": [ ".gp" ], "alpha2Code": "GP", "alpha3Code": "GLP", "callingCodes": [ "590" ], "capital": "Basse-Terre", "altSpellings": [ "GP", "Gwadloup" ], "subregion": "Caribbean", "region": "Americas", "population": 400132, "latlng": [ 16.25, -61.583333 ], "demonym": "Guadeloupian", "timezones": [ "UTC-04:00" ], "nativeName": "Guadeloupe", "numericCode": "312", "flags": { "svg": "https://flagcdn.com/gp.svg", "png": "https://flagcdn.com/w320/gp.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Gwadeloup", "pt": "Guadalupe", "nl": "Guadeloupe", "hr": "Gvadalupa", "fa": "جزیره گوادلوپ", "de": "Guadeloupe", "es": "Guadalupe", "fr": "Guadeloupe", "ja": "グアドループ", "it": "Guadeloupa", "hu": "Guadeloupe" }, "flag": "https://flagcdn.com/gp.svg", "independent": false }, { "name": "Guam", "topLevelDomain": [ ".gu" ], "alpha2Code": "GU", "alpha3Code": "GUM", "callingCodes": [ "1" ], "capital": "Hagåtña", "altSpellings": [ "GU", "Guåhån" ], "subregion": "Micronesia", "region": "Oceania", "population": 168783, "latlng": [ 13.46666666, 144.78333333 ], "demonym": "Guamanian", "area": 549.0, "timezones": [ "UTC+10:00" ], "nativeName": "Guam", "numericCode": "316", "flags": { "svg": "https://flagcdn.com/gu.svg", "png": "https://flagcdn.com/w320/gu.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ch", "iso639_2": "cha", "name": "Chamorro", "nativeName": "Chamoru" }, { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Guam", "pt": "Guame", "nl": "Guam", "hr": "Guam", "fa": "گوام", "de": "Guam", "es": "Guam", "fr": "Guam", "ja": "グアム", "it": "Guam", "hu": "Guam" }, "flag": "https://flagcdn.com/gu.svg", "cioc": "GUM", "independent": false }, { "name": "Guatemala", "topLevelDomain": [ ".gt" ], "alpha2Code": "GT", "alpha3Code": "GTM", "callingCodes": [ "502" ], "capital": "Guatemala City", "altSpellings": [ "GT" ], "subregion": "Central America", "region": "Americas", "population": 16858333, "latlng": [ 15.5, -90.25 ], "demonym": "Guatemalan", "area": 108889.0, "gini": 48.3, "timezones": [ "UTC-06:00" ], "borders": [ "BLZ", "SLV", "HND", "MEX" ], "nativeName": "Guatemala", "numericCode": "320", "flags": { "svg": "https://flagcdn.com/gt.svg", "png": "https://flagcdn.com/w320/gt.png" }, "currencies": [ { "code": "GTQ", "name": "Guatemalan quetzal", "symbol": "Q" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Guatemala", "pt": "Guatemala", "nl": "Guatemala", "hr": "Gvatemala", "fa": "گواتمالا", "de": "Guatemala", "es": "Guatemala", "fr": "Guatemala", "ja": "グアテマラ", "it": "Guatemala", "hu": "Guatemala" }, "flag": "https://flagcdn.com/gt.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "GUA", "independent": true }, { "name": "Guernsey", "topLevelDomain": [ ".gg" ], "alpha2Code": "GG", "alpha3Code": "GGY", "callingCodes": [ "44" ], "capital": "St. Peter Port", "altSpellings": [ "GG", "Bailiwick of Guernsey", "Bailliage de Guernesey" ], "subregion": "Northern Europe", "region": "Europe", "population": 62999, "latlng": [ 49.46666666, -2.58333333 ], "demonym": "Channel Islander", "area": 78.0, "timezones": [ "UTC+00:00" ], "nativeName": "Guernsey", "numericCode": "831", "flags": { "svg": "https://flagcdn.com/gg.svg", "png": "https://flagcdn.com/w320/gg.png" }, "currencies": [ { "code": "GBP", "name": "British pound", "symbol": "£" }, { "code": "GGP", "name": "Guernsey pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Gwernenez", "pt": "Guernsey", "nl": "Guernsey", "hr": "Guernsey", "fa": "گرنزی", "de": "Guernsey", "es": "Guernsey", "fr": "Guernesey", "ja": "ガーンジー", "it": "Guernsey", "hu": "Guernsey" }, "flag": "https://flagcdn.com/gg.svg", "independent": false }, { "name": "Guinea", "topLevelDomain": [ ".gn" ], "alpha2Code": "GN", "alpha3Code": "GIN", "callingCodes": [ "224" ], "capital": "Conakry", "altSpellings": [ "GN", "Republic of Guinea", "République de Guinée" ], "subregion": "Western Africa", "region": "Africa", "population": 13132792, "latlng": [ 11.0, -10.0 ], "demonym": "Guinean", "area": 245857.0, "gini": 33.7, "timezones": [ "UTC" ], "borders": [ "CIV", "GNB", "LBR", "MLI", "SEN", "SLE" ], "nativeName": "Guinée", "numericCode": "324", "flags": { "svg": "https://flagcdn.com/gn.svg", "png": "https://flagcdn.com/w320/gn.png" }, "currencies": [ { "code": "GNF", "name": "Guinean franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ff", "iso639_2": "ful", "name": "Fula", "nativeName": "Fulfulde" } ], "translations": { "br": "Ginea", "pt": "Guiné", "nl": "Guinee", "hr": "Gvineja", "fa": "گینه", "de": "Guinea", "es": "Guinea", "fr": "Guinée", "ja": "ギニア", "it": "Guinea", "hu": "Guinea" }, "flag": "https://flagcdn.com/gn.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GUI", "independent": true }, { "name": "Guinea-Bissau", "topLevelDomain": [ ".gw" ], "alpha2Code": "GW", "alpha3Code": "GNB", "callingCodes": [ "245" ], "capital": "Bissau", "altSpellings": [ "GW", "Republic of Guinea-Bissau", "República da Guiné-Bissau" ], "subregion": "Western Africa", "region": "Africa", "population": 1967998, "latlng": [ 12.0, -15.0 ], "demonym": "Guinea-Bissauan", "area": 36125.0, "gini": 50.7, "timezones": [ "UTC" ], "borders": [ "GIN", "SEN" ], "nativeName": "Guiné-Bissau", "numericCode": "624", "flags": { "svg": "https://flagcdn.com/gw.svg", "png": "https://flagcdn.com/w320/gw.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Ginea-Bissau", "pt": "Guiné-Bissau", "nl": "Guinee-Bissau", "hr": "Gvineja Bisau", "fa": "گینه بیسائو", "de": "Guinea-Bissau", "es": "Guinea-Bisáu", "fr": "Guinée-Bissau", "ja": "ギニアビサウ", "it": "Guinea-Bissau", "hu": "Bissau-Guinea" }, "flag": "https://flagcdn.com/gw.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "GBS", "independent": true }, { "name": "Guyana", "topLevelDomain": [ ".gy" ], "alpha2Code": "GY", "alpha3Code": "GUY", "callingCodes": [ "592" ], "capital": "Georgetown", "altSpellings": [ "GY", "Co-operative Republic of Guyana" ], "subregion": "South America", "region": "Americas", "population": 786559, "latlng": [ 5.0, -59.0 ], "demonym": "Guyanese", "area": 214969.0, "gini": 45.1, "timezones": [ "UTC-04:00" ], "borders": [ "BRA", "SUR", "VEN" ], "nativeName": "Guyana", "numericCode": "328", "flags": { "svg": "https://flagcdn.com/gy.svg", "png": "https://flagcdn.com/w320/gy.png" }, "currencies": [ { "code": "GYD", "name": "Guyanese dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Guyana", "pt": "Guiana", "nl": "Guyana", "hr": "Gvajana", "fa": "گویان", "de": "Guyana", "es": "Guyana", "fr": "Guyane", "ja": "ガイアナ", "it": "Guyana", "hu": "Guyana" }, "flag": "https://flagcdn.com/gy.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "GUY", "independent": true }, { "name": "Haiti", "topLevelDomain": [ ".ht" ], "alpha2Code": "HT", "alpha3Code": "HTI", "callingCodes": [ "509" ], "capital": "Port-au-Prince", "altSpellings": [ "HT", "Republic of Haiti", "République d'Haïti", "Repiblik Ayiti" ], "subregion": "Caribbean", "region": "Americas", "population": 11402533, "latlng": [ 19.0, -72.41666666 ], "demonym": "Haitian", "area": 27750.0, "gini": 41.1, "timezones": [ "UTC-05:00" ], "borders": [ "DOM" ], "nativeName": "Haïti", "numericCode": "332", "flags": { "svg": "https://flagcdn.com/ht.svg", "png": "https://flagcdn.com/w320/ht.png" }, "currencies": [ { "code": "HTG", "name": "Haitian gourde", "symbol": "G" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "ht", "iso639_2": "hat", "name": "Haitian", "nativeName": "Kreyòl ayisyen" } ], "translations": { "br": "Haiti", "pt": "Haiti", "nl": "Haïti", "hr": "Haiti", "fa": "هائیتی", "de": "Haiti", "es": "Haiti", "fr": "Haïti", "ja": "ハイチ", "it": "Haiti", "hu": "Haiti" }, "flag": "https://flagcdn.com/ht.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "HAI", "independent": true }, { "name": "Heard Island and McDonald Islands", "topLevelDomain": [ ".hm", ".aq" ], "alpha2Code": "HM", "alpha3Code": "HMD", "callingCodes": [ "672" ], "altSpellings": [ "HM" ], "subregion": "Antarctic", "region": "Antarctic", "population": 0, "latlng": [ -53.1, 72.51666666 ], "demonym": "Heard and McDonald Islander", "area": 412.0, "timezones": [ "UTC+05:00" ], "nativeName": "Heard Island and McDonald Islands", "numericCode": "334", "flags": { "svg": "https://flagcdn.com/hm.svg", "png": "https://flagcdn.com/w320/hm.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Heard ha McDonald", "pt": "Ilha Heard e Ilhas McDonald", "nl": "Heard- en McDonaldeilanden", "hr": "Otok Heard i otočje McDonald", "fa": "جزیره هرد و جزایر مک‌دونالد", "de": "Heard und die McDonaldinseln", "es": "Islas Heard y McDonald", "fr": "Îles Heard-et-MacDonald", "ja": "ハード島とマクドナルド諸島", "it": "Isole Heard e McDonald", "hu": "Heard-sziget és McDonald-szigetek" }, "flag": "https://flagcdn.com/hm.svg", "independent": false }, { "name": "Vatican City", "topLevelDomain": [ ".va" ], "alpha2Code": "VA", "alpha3Code": "VAT", "callingCodes": [ "379" ], "capital": "Vatican City", "altSpellings": [ "Vatican", "The Vatican" ], "subregion": "Southern Europe", "region": "Europe", "population": 451, "latlng": [ 41.9, 12.45 ], "demonym": "Vatican", "area": 0.44, "timezones": [ "UTC+01:00" ], "borders": [ "ITA" ], "nativeName": "Status Civitatis Vaticanae", "numericCode": "336", "flags": { "svg": "https://flagcdn.com/va.svg", "png": "https://flagcdn.com/w320/va.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "la", "iso639_2": "lat", "name": "Latin", "nativeName": "latine" }, { "iso639_1": "it", "iso639_2": "ita", "name": "Italian", "nativeName": "Italiano" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "Français" }, { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" } ], "translations": { "br": "Vatikan", "pt": "Vaticano", "nl": "Heilige Stoel", "hr": "Sveta Stolica", "fa": "سریر مقدس", "de": "Heiliger Stuhl", "es": "Santa Sede", "fr": "Saint-Siège", "ja": "聖座", "it": "Santa Sede", "hu": "Vatikán" }, "flag": "https://flagcdn.com/va.svg", "independent": true }, { "name": "Honduras", "topLevelDomain": [ ".hn" ], "alpha2Code": "HN", "alpha3Code": "HND", "callingCodes": [ "504" ], "capital": "Tegucigalpa", "altSpellings": [ "HN", "Republic of Honduras", "República de Honduras" ], "subregion": "Central America", "region": "Americas", "population": 9904608, "latlng": [ 15.0, -86.5 ], "demonym": "Honduran", "area": 112492.0, "gini": 48.2, "timezones": [ "UTC-06:00" ], "borders": [ "GTM", "SLV", "NIC" ], "nativeName": "Honduras", "numericCode": "340", "flags": { "svg": "https://flagcdn.com/hn.svg", "png": "https://flagcdn.com/w320/hn.png" }, "currencies": [ { "code": "HNL", "name": "Honduran lempira", "symbol": "L" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Honduras", "pt": "Honduras", "nl": "Honduras", "hr": "Honduras", "fa": "هندوراس", "de": "Honduras", "es": "Honduras", "fr": "Honduras", "ja": "ホンジュラス", "it": "Honduras", "hu": "Honduras" }, "flag": "https://flagcdn.com/hn.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "HON", "independent": true }, { "name": "Hungary", "topLevelDomain": [ ".hu" ], "alpha2Code": "HU", "alpha3Code": "HUN", "callingCodes": [ "36" ], "capital": "Budapest", "altSpellings": [ "HU" ], "subregion": "Central Europe", "region": "Europe", "population": 9749763, "latlng": [ 47.0, 20.0 ], "demonym": "Hungarian", "area": 93028.0, "gini": 29.6, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "HRV", "ROU", "SRB", "SVK", "SVN", "UKR" ], "nativeName": "Magyarország", "numericCode": "348", "flags": { "svg": "https://flagcdn.com/hu.svg", "png": "https://flagcdn.com/w320/hu.png" }, "currencies": [ { "code": "HUF", "name": "Hungarian forint", "symbol": "Ft" } ], "languages": [ { "iso639_1": "hu", "iso639_2": "hun", "name": "Hungarian", "nativeName": "magyar" } ], "translations": { "br": "Hungaria", "pt": "Hungria", "nl": "Hongarije", "hr": "Mađarska", "fa": "مجارستان", "de": "Ungarn", "es": "Hungría", "fr": "Hongrie", "ja": "ハンガリー", "it": "Ungheria", "hu": "Magyarország" }, "flag": "https://flagcdn.com/hu.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "HUN", "independent": true }, { "name": "Hong Kong", "topLevelDomain": [ ".hk" ], "alpha2Code": "HK", "alpha3Code": "HKG", "callingCodes": [ "852" ], "capital": "City of Victoria", "altSpellings": [ "HK", "香港" ], "subregion": "Eastern Asia", "region": "Asia", "population": 7481800, "latlng": [ 22.25, 114.16666666 ], "demonym": "Chinese", "area": 1104.0, "timezones": [ "UTC+08:00" ], "borders": [ "CHN" ], "nativeName": "香港", "numericCode": "344", "flags": { "svg": "https://flagcdn.com/hk.svg", "png": "https://flagcdn.com/w320/hk.png" }, "currencies": [ { "code": "HKD", "name": "Hong Kong dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "zh", "iso639_2": "zho", "name": "Chinese", "nativeName": "中文 (Zhōngwén)" } ], "translations": { "br": "Hong Kong", "pt": "Hong Kong", "nl": "Hongkong", "hr": "Hong Kong", "fa": "هنگ‌کنگ", "de": "Hong Kong", "es": "Hong Kong", "fr": "Hong Kong", "ja": "香港", "it": "Hong Kong", "hu": "Hong Kong" }, "flag": "https://flagcdn.com/hk.svg", "cioc": "HKG", "independent": false }, { "name": "Iceland", "topLevelDomain": [ ".is" ], "alpha2Code": "IS", "alpha3Code": "ISL", "callingCodes": [ "354" ], "capital": "Reykjavík", "altSpellings": [ "IS", "Island", "Republic of Iceland", "Lýðveldið Ísland" ], "subregion": "Northern Europe", "region": "Europe", "population": 366425, "latlng": [ 65.0, -18.0 ], "demonym": "Icelander", "area": 103000.0, "gini": 26.1, "timezones": [ "UTC" ], "nativeName": "Ísland", "numericCode": "352", "flags": { "svg": "https://flagcdn.com/is.svg", "png": "https://flagcdn.com/w320/is.png" }, "currencies": [ { "code": "ISK", "name": "Icelandic króna", "symbol": "kr" } ], "languages": [ { "iso639_1": "is", "iso639_2": "isl", "name": "Icelandic", "nativeName": "Íslenska" } ], "translations": { "br": "Island", "pt": "Islândia", "nl": "IJsland", "hr": "Island", "fa": "ایسلند", "de": "Island", "es": "Islandia", "fr": "Islande", "ja": "アイスランド", "it": "Islanda", "hu": "Izland" }, "flag": "https://flagcdn.com/is.svg", "regionalBlocs": [ { "acronym": "EFTA", "name": "European Free Trade Association" } ], "cioc": "ISL", "independent": true }, { "name": "India", "topLevelDomain": [ ".in" ], "alpha2Code": "IN", "alpha3Code": "IND", "callingCodes": [ "91" ], "capital": "New Delhi", "altSpellings": [ "IN", "Bhārat", "Republic of India", "Bharat Ganrajya" ], "subregion": "Southern Asia", "region": "Asia", "population": 1380004385, "latlng": [ 20.0, 77.0 ], "demonym": "Indian", "area": 3287590.0, "gini": 35.7, "timezones": [ "UTC+05:30" ], "borders": [ "AFG", "BGD", "BTN", "MMR", "CHN", "NPL", "PAK", "LKA" ], "nativeName": "भारत", "numericCode": "356", "flags": { "svg": "https://flagcdn.com/in.svg", "png": "https://flagcdn.com/w320/in.png" }, "currencies": [ { "code": "INR", "name": "Indian rupee", "symbol": "₹" } ], "languages": [ { "iso639_1": "hi", "iso639_2": "hin", "name": "Hindi", "nativeName": "हिन्दी" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "India", "pt": "Índia", "nl": "India", "hr": "Indija", "fa": "هند", "de": "Indien", "es": "India", "fr": "Inde", "ja": "インド", "it": "India", "hu": "India" }, "flag": "https://flagcdn.com/in.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "IND", "independent": true }, { "name": "Indonesia", "topLevelDomain": [ ".id" ], "alpha2Code": "ID", "alpha3Code": "IDN", "callingCodes": [ "62" ], "capital": "Jakarta", "altSpellings": [ "ID", "Republic of Indonesia", "Republik Indonesia" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 273523621, "latlng": [ -5.0, 120.0 ], "demonym": "Indonesian", "area": 1904569.0, "gini": 38.2, "timezones": [ "UTC+07:00", "UTC+08:00", "UTC+09:00" ], "borders": [ "TLS", "MYS", "PNG" ], "nativeName": "Indonesia", "numericCode": "360", "flags": { "svg": "https://flagcdn.com/id.svg", "png": "https://flagcdn.com/w320/id.png" }, "currencies": [ { "code": "IDR", "name": "Indonesian rupiah", "symbol": "Rp" } ], "languages": [ { "iso639_1": "id", "iso639_2": "ind", "name": "Indonesian", "nativeName": "Bahasa Indonesia" } ], "translations": { "br": "Indonezia", "pt": "Indonésia", "nl": "Indonesië", "hr": "Indonezija", "fa": "اندونزی", "de": "Indonesien", "es": "Indonesia", "fr": "Indonésie", "ja": "インドネシア", "it": "Indonesia", "hu": "Indonézia" }, "flag": "https://flagcdn.com/id.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "INA", "independent": true }, { "name": "Ivory Coast", "topLevelDomain": [ ".ci" ], "alpha2Code": "CI", "alpha3Code": "CIV", "callingCodes": [ "225" ], "capital": "Yamoussoukro", "altSpellings": [ "CI", "Ivory Coast", "Republic of Côte d'Ivoire", "République de Côte d'Ivoire" ], "subregion": "Western Africa", "region": "Africa", "population": 26378275, "latlng": [ 8.0, -5.0 ], "demonym": "Ivorian", "area": 322463.0, "gini": 41.5, "timezones": [ "UTC" ], "borders": [ "BFA", "GHA", "GIN", "LBR", "MLI" ], "nativeName": "Côte d'Ivoire", "numericCode": "384", "flags": { "svg": "https://flagcdn.com/ci.svg", "png": "https://flagcdn.com/w320/ci.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Aod an Olifant", "pt": "Costa do Marfim", "nl": "Ivoorkust", "hr": "Obala Bjelokosti", "fa": "ساحل عاج", "de": "Elfenbeinküste", "es": "Costa de Marfil", "fr": "Côte d'Ivoire", "ja": "コートジボワール", "it": "Costa D'Avorio", "hu": "Elefántcsontpart" }, "flag": "https://flagcdn.com/ci.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "CIV", "independent": true }, { "name": "Iran (Islamic Republic of)", "topLevelDomain": [ ".ir" ], "alpha2Code": "IR", "alpha3Code": "IRN", "callingCodes": [ "98" ], "capital": "Tehran", "altSpellings": [ "IR", "Islamic Republic of Iran", "Jomhuri-ye Eslāmi-ye Irān" ], "subregion": "Southern Asia", "region": "Asia", "population": 83992953, "latlng": [ 32.0, 53.0 ], "demonym": "Iranian", "area": 1648195.0, "gini": 42.0, "timezones": [ "UTC+03:30" ], "borders": [ "AFG", "ARM", "AZE", "IRQ", "PAK", "TUR", "TKM" ], "nativeName": "ایران", "numericCode": "364", "flags": { "svg": "https://flagcdn.com/ir.svg", "png": "https://flagcdn.com/w320/ir.png" }, "currencies": [ { "code": "IRR", "name": "Iranian rial", "symbol": "﷼" } ], "languages": [ { "iso639_1": "fa", "iso639_2": "fas", "name": "Persian (Farsi)", "nativeName": "فارسی" } ], "translations": { "br": "Iran", "pt": "Irão", "nl": "Iran", "hr": "Iran", "fa": "ایران", "de": "Iran", "es": "Iran", "fr": "Iran", "ja": "イラン・イスラム共和国", "it": "Iran (Islamic Republic of)", "hu": "Irán" }, "flag": "https://flagcdn.com/ir.svg", "cioc": "IRI", "independent": true }, { "name": "Iraq", "topLevelDomain": [ ".iq" ], "alpha2Code": "IQ", "alpha3Code": "IRQ", "callingCodes": [ "964" ], "capital": "Baghdad", "altSpellings": [ "IQ", "Republic of Iraq", "Jumhūriyyat al-‘Irāq" ], "subregion": "Western Asia", "region": "Asia", "population": 40222503, "latlng": [ 33.0, 44.0 ], "demonym": "Iraqi", "area": 438317.0, "gini": 29.5, "timezones": [ "UTC+03:00" ], "borders": [ "IRN", "JOR", "KWT", "SAU", "SYR", "TUR" ], "nativeName": "العراق", "numericCode": "368", "flags": { "svg": "https://flagcdn.com/iq.svg", "png": "https://flagcdn.com/w320/iq.png" }, "currencies": [ { "code": "IQD", "name": "Iraqi dinar", "symbol": "ع.د" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" }, { "iso639_1": "ku", "iso639_2": "kur", "name": "Kurdish", "nativeName": "Kurdî" } ], "translations": { "br": "Irak", "pt": "Iraque", "nl": "Irak", "hr": "Irak", "fa": "عراق", "de": "Irak", "es": "Irak", "fr": "Irak", "ja": "イラク", "it": "Iraq", "hu": "Irak" }, "flag": "https://flagcdn.com/iq.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "IRQ", "independent": true }, { "name": "Ireland", "topLevelDomain": [ ".ie" ], "alpha2Code": "IE", "alpha3Code": "IRL", "callingCodes": [ "353" ], "capital": "Dublin", "altSpellings": [ "IE", "Éire", "Republic of Ireland", "Poblacht na hÉireann" ], "subregion": "Northern Europe", "region": "Europe", "population": 4994724, "latlng": [ 53.0, -8.0 ], "demonym": "Irish", "area": 70273.0, "gini": 31.4, "timezones": [ "UTC" ], "borders": [ "GBR" ], "nativeName": "Éire", "numericCode": "372", "flags": { "svg": "https://flagcdn.com/ie.svg", "png": "https://flagcdn.com/w320/ie.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "ga", "iso639_2": "gle", "name": "Irish", "nativeName": "Gaeilge" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Iwerzhon", "pt": "Irlanda", "nl": "Ierland", "hr": "Irska", "fa": "ایرلند", "de": "Irland", "es": "Irlanda", "fr": "Irlande", "ja": "アイルランド", "it": "Irlanda", "hu": "Írország" }, "flag": "https://flagcdn.com/ie.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "IRL", "independent": true }, { "name": "Isle of Man", "topLevelDomain": [ ".im" ], "alpha2Code": "IM", "alpha3Code": "IMN", "callingCodes": [ "44" ], "capital": "Douglas", "altSpellings": [ "IM", "Ellan Vannin", "Mann", "Mannin" ], "subregion": "Northern Europe", "region": "Europe", "population": 85032, "latlng": [ 54.25, -4.5 ], "demonym": "Manx", "area": 572.0, "timezones": [ "UTC+00:00" ], "nativeName": "Isle of Man", "numericCode": "833", "flags": { "svg": "https://flagcdn.com/im.svg", "png": "https://flagcdn.com/w320/im.png" }, "currencies": [ { "code": "GBP", "name": "British pound", "symbol": "£" }, { "code": "IMP[G]", "name": "Manx pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "gv", "iso639_2": "glv", "name": "Manx", "nativeName": "Gaelg" } ], "translations": { "br": "Enez Vanav", "pt": "Ilha de Man", "nl": "Isle of Man", "hr": "Otok Man", "fa": "جزیره من", "de": "Insel Man", "es": "Isla de Man", "fr": "Île de Man", "ja": "マン島", "it": "Isola di Man", "hu": "Man" }, "flag": "https://flagcdn.com/im.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "independent": false }, { "name": "Israel", "topLevelDomain": [ ".il" ], "alpha2Code": "IL", "alpha3Code": "ISR", "callingCodes": [ "972" ], "capital": "Jerusalem", "altSpellings": [ "IL", "State of Israel", "Medīnat Yisrā'el" ], "subregion": "Western Asia", "region": "Asia", "population": 9216900, "latlng": [ 31.5, 34.75 ], "demonym": "Israeli", "area": 20770.0, "gini": 39.0, "timezones": [ "UTC+02:00" ], "borders": [ "EGY", "JOR", "LBN", "SYR" ], "nativeName": "יִשְׂרָאֵל", "numericCode": "376", "flags": { "svg": "https://flagcdn.com/il.svg", "png": "https://flagcdn.com/w320/il.png" }, "currencies": [ { "code": "ILS", "name": "Israeli new shekel", "symbol": "₪" } ], "languages": [ { "iso639_1": "he", "iso639_2": "heb", "name": "Hebrew (modern)", "nativeName": "עברית" }, { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Israel", "pt": "Israel", "nl": "Israël", "hr": "Izrael", "fa": "اسرائیل", "de": "Israel", "es": "Israel", "fr": "Israël", "ja": "イスラエル", "it": "Israele", "hu": "Izrael" }, "flag": "https://flagcdn.com/il.svg", "cioc": "ISR", "independent": true }, { "name": "Italy", "topLevelDomain": [ ".it" ], "alpha2Code": "IT", "alpha3Code": "ITA", "callingCodes": [ "39" ], "capital": "Rome", "altSpellings": [ "IT", "Italian Republic", "Repubblica italiana" ], "subregion": "Southern Europe", "region": "Europe", "population": 59554023, "latlng": [ 42.83333333, 12.83333333 ], "demonym": "Italian", "area": 301336.0, "gini": 35.9, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "FRA", "SMR", "SVN", "CHE", "VAT" ], "nativeName": "Italia", "numericCode": "380", "flags": { "svg": "https://flagcdn.com/it.svg", "png": "https://flagcdn.com/w320/it.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "it", "iso639_2": "ita", "name": "Italian", "nativeName": "Italiano" } ], "translations": { "br": "Italia", "pt": "Itália", "nl": "Italië", "hr": "Italija", "fa": "ایتالیا", "de": "Italien", "es": "Italia", "fr": "Italie", "ja": "イタリア", "it": "Italia", "hu": "Olaszország" }, "flag": "https://flagcdn.com/it.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "ITA", "independent": true }, { "name": "Jamaica", "topLevelDomain": [ ".jm" ], "alpha2Code": "JM", "alpha3Code": "JAM", "callingCodes": [ "1" ], "capital": "Kingston", "altSpellings": [ "JM" ], "subregion": "Caribbean", "region": "Americas", "population": 2961161, "latlng": [ 18.25, -77.5 ], "demonym": "Jamaican", "area": 10991.0, "gini": 45.5, "timezones": [ "UTC-05:00" ], "nativeName": "Jamaica", "numericCode": "388", "flags": { "svg": "https://flagcdn.com/jm.svg", "png": "https://flagcdn.com/w320/jm.png" }, "currencies": [ { "code": "JMD", "name": "Jamaican dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Jamaika", "pt": "Jamaica", "nl": "Jamaica", "hr": "Jamajka", "fa": "جامائیکا", "de": "Jamaika", "es": "Jamaica", "fr": "Jamaïque", "ja": "ジャマイカ", "it": "Giamaica", "hu": "Jamaica" }, "flag": "https://flagcdn.com/jm.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "JAM", "independent": true }, { "name": "Japan", "topLevelDomain": [ ".jp" ], "alpha2Code": "JP", "alpha3Code": "JPN", "callingCodes": [ "81" ], "capital": "Tokyo", "altSpellings": [ "JP", "Nippon", "Nihon" ], "subregion": "Eastern Asia", "region": "Asia", "population": 125836021, "latlng": [ 36.0, 138.0 ], "demonym": "Japanese", "area": 377930.0, "gini": 32.9, "timezones": [ "UTC+09:00" ], "nativeName": "日本", "numericCode": "392", "flags": { "svg": "https://flagcdn.com/jp.svg", "png": "https://flagcdn.com/w320/jp.png" }, "currencies": [ { "code": "JPY", "name": "Japanese yen", "symbol": "¥" } ], "languages": [ { "iso639_1": "ja", "iso639_2": "jpn", "name": "Japanese", "nativeName": "日本語 (にほんご)" } ], "translations": { "br": "Japan", "pt": "Japão", "nl": "Japan", "hr": "Japan", "fa": "ژاپن", "de": "Japan", "es": "Japón", "fr": "Japon", "ja": "日本", "it": "Giappone", "hu": "Japán" }, "flag": "https://flagcdn.com/jp.svg", "cioc": "JPN", "independent": true }, { "name": "Jersey", "topLevelDomain": [ ".je" ], "alpha2Code": "JE", "alpha3Code": "JEY", "callingCodes": [ "44" ], "capital": "Saint Helier", "altSpellings": [ "JE", "Bailiwick of Jersey", "Bailliage de Jersey", "Bailliage dé Jèrri" ], "subregion": "Northern Europe", "region": "Europe", "population": 100800, "latlng": [ 49.25, -2.16666666 ], "demonym": "Channel Islander", "area": 116.0, "timezones": [ "UTC+01:00" ], "nativeName": "Jersey", "numericCode": "832", "flags": { "svg": "https://flagcdn.com/je.svg", "png": "https://flagcdn.com/w320/je.png" }, "currencies": [ { "code": "GBP", "name": "British pound", "symbol": "£" }, { "code": "JEP[G]", "name": "Jersey pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Jerzenez", "pt": "Jersey", "nl": "Jersey", "hr": "Jersey", "fa": "جرزی", "de": "Jersey", "es": "Jersey", "fr": "Jersey", "ja": "ジャージー", "it": "Isola di Jersey", "hu": "Jersey" }, "flag": "https://flagcdn.com/je.svg", "independent": false }, { "name": "Jordan", "topLevelDomain": [ ".jo" ], "alpha2Code": "JO", "alpha3Code": "JOR", "callingCodes": [ "962" ], "capital": "Amman", "altSpellings": [ "JO", "Hashemite Kingdom of Jordan", "al-Mamlakah al-Urdunīyah al-Hāshimīyah" ], "subregion": "Western Asia", "region": "Asia", "population": 10203140, "latlng": [ 31.0, 36.0 ], "demonym": "Jordanian", "area": 89342.0, "gini": 33.7, "timezones": [ "UTC+03:00" ], "borders": [ "IRQ", "ISR", "SAU", "SYR" ], "nativeName": "الأردن", "numericCode": "400", "flags": { "svg": "https://flagcdn.com/jo.svg", "png": "https://flagcdn.com/w320/jo.png" }, "currencies": [ { "code": "JOD", "name": "Jordanian dinar", "symbol": "د.ا" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Jordania", "pt": "Jordânia", "nl": "Jordanië", "hr": "Jordan", "fa": "اردن", "de": "Jordanien", "es": "Jordania", "fr": "Jordanie", "ja": "ヨルダン", "it": "Giordania", "hu": "Jordánia" }, "flag": "https://flagcdn.com/jo.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "JOR", "independent": true }, { "name": "Kazakhstan", "topLevelDomain": [ ".kz", ".қаз" ], "alpha2Code": "KZ", "alpha3Code": "KAZ", "callingCodes": [ "76", "77" ], "capital": "Nur-Sultan", "altSpellings": [ "KZ", "Qazaqstan", "Казахстан", "Republic of Kazakhstan", "Қазақстан Республикасы", "Qazaqstan Respublïkası", "Республика Казахстан", "Respublika Kazakhstan" ], "subregion": "Central Asia", "region": "Asia", "population": 18754440, "latlng": [ 48.0, 68.0 ], "demonym": "Kazakhstani", "area": 2724900.0, "gini": 27.8, "timezones": [ "UTC+05:00", "UTC+06:00" ], "borders": [ "CHN", "KGZ", "RUS", "TKM", "UZB" ], "nativeName": "Қазақстан", "numericCode": "398", "flags": { "svg": "https://flagcdn.com/kz.svg", "png": "https://flagcdn.com/w320/kz.png" }, "currencies": [ { "code": "KZT", "name": "Kazakhstani tenge", "symbol": "₸" } ], "languages": [ { "iso639_1": "kk", "iso639_2": "kaz", "name": "Kazakh", "nativeName": "қазақ тілі" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Kazakstan", "pt": "Cazaquistão", "nl": "Kazachstan", "hr": "Kazahstan", "fa": "قزاقستان", "de": "Kasachstan", "es": "Kazajistán", "fr": "Kazakhstan", "ja": "カザフスタン", "it": "Kazakistan", "hu": "Kazahsztán" }, "flag": "https://flagcdn.com/kz.svg", "regionalBlocs": [ { "acronym": "EEU", "name": "Eurasian Economic Union", "otherAcronyms": [ "EAEU" ] } ], "cioc": "KAZ", "independent": true }, { "name": "Kenya", "topLevelDomain": [ ".ke" ], "alpha2Code": "KE", "alpha3Code": "KEN", "callingCodes": [ "254" ], "capital": "Nairobi", "altSpellings": [ "KE", "Republic of Kenya", "Jamhuri ya Kenya" ], "subregion": "Eastern Africa", "region": "Africa", "population": 53771300, "latlng": [ 1.0, 38.0 ], "demonym": "Kenyan", "area": 580367.0, "gini": 40.8, "timezones": [ "UTC+03:00" ], "borders": [ "ETH", "SOM", "SSD", "TZA", "UGA" ], "nativeName": "Kenya", "numericCode": "404", "flags": { "svg": "https://flagcdn.com/ke.svg", "png": "https://flagcdn.com/w320/ke.png" }, "currencies": [ { "code": "KES", "name": "Kenyan shilling", "symbol": "Sh" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "sw", "iso639_2": "swa", "name": "Swahili", "nativeName": "Kiswahili" } ], "translations": { "br": "Kenya", "pt": "Quénia", "nl": "Kenia", "hr": "Kenija", "fa": "کنیا", "de": "Kenia", "es": "Kenia", "fr": "Kenya", "ja": "ケニア", "it": "Kenya", "hu": "Kenya" }, "flag": "https://flagcdn.com/ke.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "KEN", "independent": true }, { "name": "Kiribati", "topLevelDomain": [ ".ki" ], "alpha2Code": "KI", "alpha3Code": "KIR", "callingCodes": [ "686" ], "capital": "South Tarawa", "altSpellings": [ "KI", "Republic of Kiribati", "Ribaberiki Kiribati" ], "subregion": "Micronesia", "region": "Oceania", "population": 119446, "latlng": [ 1.41666666, 173.0 ], "demonym": "I-Kiribati", "area": 811.0, "gini": 37.0, "timezones": [ "UTC+12:00", "UTC+13:00", "UTC+14:00" ], "nativeName": "Kiribati", "numericCode": "296", "flags": { "svg": "https://flagcdn.com/ki.svg", "png": "https://flagcdn.com/w320/ki.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, { "code": "KID", "name": "Kiribati dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Kiribati", "pt": "Quiribáti", "nl": "Kiribati", "hr": "Kiribati", "fa": "کیریباتی", "de": "Kiribati", "es": "Kiribati", "fr": "Kiribati", "ja": "キリバス", "it": "Kiribati", "hu": "Kiribati" }, "flag": "https://flagcdn.com/ki.svg", "cioc": "KIR", "independent": true }, { "name": "Kuwait", "topLevelDomain": [ ".kw" ], "alpha2Code": "KW", "alpha3Code": "KWT", "callingCodes": [ "965" ], "capital": "Kuwait City", "altSpellings": [ "KW", "State of Kuwait", "Dawlat al-Kuwait" ], "subregion": "Western Asia", "region": "Asia", "population": 4270563, "latlng": [ 29.5, 45.75 ], "demonym": "Kuwaiti", "area": 17818.0, "timezones": [ "UTC+03:00" ], "borders": [ "IRQ", "SAU" ], "nativeName": "الكويت", "numericCode": "414", "flags": { "svg": "https://flagcdn.com/kw.svg", "png": "https://flagcdn.com/w320/kw.png" }, "currencies": [ { "code": "KWD", "name": "Kuwaiti dinar", "symbol": "د.ك" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Koweit", "pt": "Kuwait", "nl": "Koeweit", "hr": "Kuvajt", "fa": "کویت", "de": "Kuwait", "es": "Kuwait", "fr": "Koweït", "ja": "クウェート", "it": "Kuwait", "hu": "Kuvait" }, "flag": "https://flagcdn.com/kw.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "KUW", "independent": true }, { "name": "Kyrgyzstan", "topLevelDomain": [ ".kg" ], "alpha2Code": "KG", "alpha3Code": "KGZ", "callingCodes": [ "996" ], "capital": "Bishkek", "altSpellings": [ "KG", "Киргизия", "Kyrgyz Republic", "Кыргыз Республикасы", "Kyrgyz Respublikasy" ], "subregion": "Central Asia", "region": "Asia", "population": 6591600, "latlng": [ 41.0, 75.0 ], "demonym": "Kirghiz", "area": 199951.0, "gini": 29.7, "timezones": [ "UTC+06:00" ], "borders": [ "CHN", "KAZ", "TJK", "UZB" ], "nativeName": "Кыргызстан", "numericCode": "417", "flags": { "svg": "https://flagcdn.com/kg.svg", "png": "https://flagcdn.com/w320/kg.png" }, "currencies": [ { "code": "KGS", "name": "Kyrgyzstani som", "symbol": "с" } ], "languages": [ { "iso639_1": "ky", "iso639_2": "kir", "name": "Kyrgyz", "nativeName": "Кыргызча" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Kirgizstan", "pt": "Quirguizistão", "nl": "Kirgizië", "hr": "Kirgistan", "fa": "قرقیزستان", "de": "Kirgisistan", "es": "Kirguizistán", "fr": "Kirghizistan", "ja": "キルギス", "it": "Kirghizistan", "hu": "Kirgizisztán" }, "flag": "https://flagcdn.com/kg.svg", "regionalBlocs": [ { "acronym": "EEU", "name": "Eurasian Economic Union", "otherAcronyms": [ "EAEU" ] } ], "cioc": "KGZ", "independent": true }, { "name": "Lao People's Democratic Republic", "topLevelDomain": [ ".la" ], "alpha2Code": "LA", "alpha3Code": "LAO", "callingCodes": [ "856" ], "capital": "Vientiane", "altSpellings": [ "LA", "Lao", "Laos", "Lao People's Democratic Republic", "Sathalanalat Paxathipatai Paxaxon Lao" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 7275556, "latlng": [ 18.0, 105.0 ], "demonym": "Laotian", "area": 236800.0, "gini": 38.8, "timezones": [ "UTC+07:00" ], "borders": [ "MMR", "KHM", "CHN", "THA", "VNM" ], "nativeName": "ສາທາລະນະລັດ ປະຊາທິປະໄຕ ປະຊາຊົນລາວ", "numericCode": "418", "flags": { "svg": "https://flagcdn.com/la.svg", "png": "https://flagcdn.com/w320/la.png" }, "currencies": [ { "code": "LAK", "name": "Lao kip", "symbol": "₭" } ], "languages": [ { "iso639_1": "lo", "iso639_2": "lao", "name": "Lao", "nativeName": "ພາສາລາວ" } ], "translations": { "br": "Laos", "pt": "Laos", "nl": "Laos", "hr": "Laos", "fa": "لائوس", "de": "Laos", "es": "Laos", "fr": "Laos", "ja": "ラオス人民民主共和国", "it": "Laos", "hu": "Laosz" }, "flag": "https://flagcdn.com/la.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "LAO", "independent": true }, { "name": "Latvia", "topLevelDomain": [ ".lv" ], "alpha2Code": "LV", "alpha3Code": "LVA", "callingCodes": [ "371" ], "capital": "Riga", "altSpellings": [ "LV", "Republic of Latvia", "Latvijas Republika" ], "subregion": "Northern Europe", "region": "Europe", "population": 1901548, "latlng": [ 57.0, 25.0 ], "demonym": "Latvian", "area": 64559.0, "gini": 35.1, "timezones": [ "UTC+02:00" ], "borders": [ "BLR", "EST", "LTU", "RUS" ], "nativeName": "Latvija", "numericCode": "428", "flags": { "svg": "https://flagcdn.com/lv.svg", "png": "https://flagcdn.com/w320/lv.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "lv", "iso639_2": "lav", "name": "Latvian", "nativeName": "latviešu valoda" } ], "translations": { "br": "Latvia", "pt": "Letónia", "nl": "Letland", "hr": "Latvija", "fa": "لتونی", "de": "Lettland", "es": "Letonia", "fr": "Lettonie", "ja": "ラトビア", "it": "Lettonia", "hu": "Lettország" }, "flag": "https://flagcdn.com/lv.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "LAT", "independent": true }, { "name": "Lebanon", "topLevelDomain": [ ".lb" ], "alpha2Code": "LB", "alpha3Code": "LBN", "callingCodes": [ "961" ], "capital": "Beirut", "altSpellings": [ "LB", "Lebanese Republic", "Al-Jumhūrīyah Al-Libnānīyah" ], "subregion": "Western Asia", "region": "Asia", "population": 6825442, "latlng": [ 33.83333333, 35.83333333 ], "demonym": "Lebanese", "area": 10452.0, "gini": 31.8, "timezones": [ "UTC+02:00" ], "borders": [ "ISR", "SYR" ], "nativeName": "لبنان", "numericCode": "422", "flags": { "svg": "https://flagcdn.com/lb.svg", "png": "https://flagcdn.com/w320/lb.png" }, "currencies": [ { "code": "LBP", "name": "Lebanese pound", "symbol": "ل.ل" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Liban", "pt": "Líbano", "nl": "Libanon", "hr": "Libanon", "fa": "لبنان", "de": "Libanon", "es": "Líbano", "fr": "Liban", "ja": "レバノン", "it": "Libano", "hu": "Libanon" }, "flag": "https://flagcdn.com/lb.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "LIB", "independent": true }, { "name": "Lesotho", "topLevelDomain": [ ".ls" ], "alpha2Code": "LS", "alpha3Code": "LSO", "callingCodes": [ "266" ], "capital": "Maseru", "altSpellings": [ "LS", "Kingdom of Lesotho", "Muso oa Lesotho" ], "subregion": "Southern Africa", "region": "Africa", "population": 2142252, "latlng": [ -29.5, 28.5 ], "demonym": "Mosotho", "area": 30355.0, "gini": 44.9, "timezones": [ "UTC+02:00" ], "borders": [ "ZAF" ], "nativeName": "Lesotho", "numericCode": "426", "flags": { "svg": "https://flagcdn.com/ls.svg", "png": "https://flagcdn.com/w320/ls.png" }, "currencies": [ { "code": "LSL", "name": "Lesotho loti", "symbol": "L" }, { "code": "ZAR", "name": "South African rand", "symbol": "R" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "st", "iso639_2": "sot", "name": "Southern Sotho", "nativeName": "Sesotho" } ], "translations": { "br": "Lesotho", "pt": "Lesoto", "nl": "Lesotho", "hr": "Lesoto", "fa": "لسوتو", "de": "Lesotho", "es": "Lesotho", "fr": "Lesotho", "ja": "レソト", "it": "Lesotho", "hu": "Lesotho" }, "flag": "https://flagcdn.com/ls.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "LES", "independent": true }, { "name": "Liberia", "topLevelDomain": [ ".lr" ], "alpha2Code": "LR", "alpha3Code": "LBR", "callingCodes": [ "231" ], "capital": "Monrovia", "altSpellings": [ "LR", "Republic of Liberia" ], "subregion": "Western Africa", "region": "Africa", "population": 5057677, "latlng": [ 6.5, -9.5 ], "demonym": "Liberian", "area": 111369.0, "gini": 35.3, "timezones": [ "UTC" ], "borders": [ "GIN", "CIV", "SLE" ], "nativeName": "Liberia", "numericCode": "430", "flags": { "svg": "https://flagcdn.com/lr.svg", "png": "https://flagcdn.com/w320/lr.png" }, "currencies": [ { "code": "LRD", "name": "Liberian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Liberia", "pt": "Libéria", "nl": "Liberia", "hr": "Liberija", "fa": "لیبریا", "de": "Liberia", "es": "Liberia", "fr": "Liberia", "ja": "リベリア", "it": "Liberia", "hu": "Libéria" }, "flag": "https://flagcdn.com/lr.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "LBR", "independent": true }, { "name": "Libya", "topLevelDomain": [ ".ly" ], "alpha2Code": "LY", "alpha3Code": "LBY", "callingCodes": [ "218" ], "capital": "Tripoli", "altSpellings": [ "LY", "State of Libya", "Dawlat Libya" ], "subregion": "Northern Africa", "region": "Africa", "population": 6871287, "latlng": [ 25.0, 17.0 ], "demonym": "Libyan", "area": 1759540.0, "timezones": [ "UTC+01:00" ], "borders": [ "DZA", "TCD", "EGY", "NER", "SDN", "TUN" ], "nativeName": "‏ليبيا", "numericCode": "434", "flags": { "svg": "https://flagcdn.com/ly.svg", "png": "https://flagcdn.com/w320/ly.png" }, "currencies": [ { "code": "LYD", "name": "Libyan dinar", "symbol": "ل.د" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Libia", "pt": "Líbia", "nl": "Libië", "hr": "Libija", "fa": "لیبی", "de": "Libyen", "es": "Libia", "fr": "Libye", "ja": "リビア", "it": "Libia", "hu": "Líbia" }, "flag": "https://flagcdn.com/ly.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "LBA", "independent": true }, { "name": "Liechtenstein", "topLevelDomain": [ ".li" ], "alpha2Code": "LI", "alpha3Code": "LIE", "callingCodes": [ "423" ], "capital": "Vaduz", "altSpellings": [ "LI", "Principality of Liechtenstein", "Fürstentum Liechtenstein" ], "subregion": "Central Europe", "region": "Europe", "population": 38137, "latlng": [ 47.26666666, 9.53333333 ], "demonym": "Liechtensteiner", "area": 160.0, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "CHE" ], "nativeName": "Liechtenstein", "numericCode": "438", "flags": { "svg": "https://flagcdn.com/li.svg", "png": "https://flagcdn.com/w320/li.png" }, "currencies": [ { "code": "CHF", "name": "Swiss franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" } ], "translations": { "br": "Liechtenstein", "pt": "Listenstaine", "nl": "Liechtenstein", "hr": "Lihtenštajn", "fa": "لیختن‌اشتاین", "de": "Liechtenstein", "es": "Liechtenstein", "fr": "Liechtenstein", "ja": "リヒテンシュタイン", "it": "Liechtenstein", "hu": "Liechtenstein" }, "flag": "https://flagcdn.com/li.svg", "regionalBlocs": [ { "acronym": "EFTA", "name": "European Free Trade Association" } ], "cioc": "LIE", "independent": true }, { "name": "Lithuania", "topLevelDomain": [ ".lt" ], "alpha2Code": "LT", "alpha3Code": "LTU", "callingCodes": [ "370" ], "capital": "Vilnius", "altSpellings": [ "LT", "Republic of Lithuania", "Lietuvos Respublika" ], "subregion": "Northern Europe", "region": "Europe", "population": 2794700, "latlng": [ 56.0, 24.0 ], "demonym": "Lithuanian", "area": 65300.0, "gini": 35.7, "timezones": [ "UTC+02:00" ], "borders": [ "BLR", "LVA", "POL", "RUS" ], "nativeName": "Lietuva", "numericCode": "440", "flags": { "svg": "https://flagcdn.com/lt.svg", "png": "https://flagcdn.com/w320/lt.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "lt", "iso639_2": "lit", "name": "Lithuanian", "nativeName": "lietuvių kalba" } ], "translations": { "br": "Lituania", "pt": "Lituânia", "nl": "Litouwen", "hr": "Litva", "fa": "لیتوانی", "de": "Litauen", "es": "Lituania", "fr": "Lituanie", "ja": "リトアニア", "it": "Lituania", "hu": "Litvánia" }, "flag": "https://flagcdn.com/lt.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "LTU", "independent": true }, { "name": "Luxembourg", "topLevelDomain": [ ".lu" ], "alpha2Code": "LU", "alpha3Code": "LUX", "callingCodes": [ "352" ], "capital": "Luxembourg", "altSpellings": [ "LU", "Grand Duchy of Luxembourg", "Grand-Duché de Luxembourg", "Großherzogtum Luxemburg", "Groussherzogtum Lëtzebuerg" ], "subregion": "Western Europe", "region": "Europe", "population": 632275, "latlng": [ 49.75, 6.16666666 ], "demonym": "Luxembourger", "area": 2586.0, "gini": 35.4, "timezones": [ "UTC+01:00" ], "borders": [ "BEL", "FRA", "DEU" ], "nativeName": "Lëtzebuerg", "numericCode": "442", "flags": { "svg": "https://flagcdn.com/lu.svg", "png": "https://flagcdn.com/w320/lu.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" }, { "iso639_1": "lb", "iso639_2": "ltz", "name": "Luxembourgish", "nativeName": "Lëtzebuergesch" } ], "translations": { "br": "Luksembourg", "pt": "Luxemburgo", "nl": "Luxemburg", "hr": "Luksemburg", "fa": "لوکزامبورگ", "de": "Luxemburg", "es": "Luxemburgo", "fr": "Luxembourg", "ja": "ルクセンブルク", "it": "Lussemburgo", "hu": "Luxemburg" }, "flag": "https://flagcdn.com/lu.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "LUX", "independent": true }, { "name": "Macao", "topLevelDomain": [ ".mo" ], "alpha2Code": "MO", "alpha3Code": "MAC", "callingCodes": [ "853" ], "altSpellings": [ "MO", "澳门", "Macao Special Administrative Region of the People's Republic of China", "中華人民共和國澳門特別行政區", "Região Administrativa Especial de Macau da República Popular da China" ], "subregion": "Eastern Asia", "region": "Asia", "population": 649342, "latlng": [ 22.16666666, 113.55 ], "demonym": "Chinese", "area": 30.0, "timezones": [ "UTC+08:00" ], "borders": [ "CHN" ], "nativeName": "澳門", "numericCode": "446", "flags": { "svg": "https://flagcdn.com/mo.svg", "png": "https://flagcdn.com/w320/mo.png" }, "currencies": [ { "code": "MOP", "name": "Macanese pataca", "symbol": "P" } ], "languages": [ { "iso639_1": "zh", "iso639_2": "zho", "name": "Chinese", "nativeName": "中文 (Zhōngwén)" }, { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Makao", "pt": "Macau", "nl": "Macao", "hr": "Makao", "fa": "مکائو", "de": "Macao", "es": "Macao", "fr": "Macao", "ja": "マカオ", "it": "Macao", "hu": "Makaó" }, "flag": "https://flagcdn.com/mo.svg", "independent": false }, { "name": "North Macedonia", "topLevelDomain": [ ".mk" ], "alpha2Code": "MK", "alpha3Code": "MKD", "callingCodes": [ "389" ], "capital": "Skopje", "altSpellings": [ "MK", "Republic of Macedonia", "Република Македонија" ], "subregion": "Southern Europe", "region": "Europe", "population": 2083380, "latlng": [ 41.83333333, 22.0 ], "demonym": "Macedonian", "area": 25713.0, "gini": 33.0, "timezones": [ "UTC+01:00" ], "borders": [ "ALB", "BGR", "GRC", "UNK", "SRB" ], "nativeName": "Македонија", "numericCode": "807", "flags": { "svg": "https://flagcdn.com/mk.svg", "png": "https://flagcdn.com/w320/mk.png" }, "currencies": [ { "code": "MKD", "name": "Macedonian denar", "symbol": "ден" } ], "languages": [ { "iso639_1": "mk", "iso639_2": "mkd", "name": "Macedonian", "nativeName": "македонски јазик" } ], "translations": { "br": "Makedonia an Norzh", "pt": "Macedónia", "nl": "Macedonië", "hr": "Makedonija", "de": "Mazedonien", "es": "Macedonia", "fr": "Macédoine", "ja": "マケドニア旧ユーゴスラビア共和国", "it": "Macedonia", "hu": "Macedónia" }, "flag": "https://flagcdn.com/mk.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "MKD", "independent": true }, { "name": "Madagascar", "topLevelDomain": [ ".mg" ], "alpha2Code": "MG", "alpha3Code": "MDG", "callingCodes": [ "261" ], "capital": "Antananarivo", "altSpellings": [ "MG", "Republic of Madagascar", "Repoblikan'i Madagasikara", "République de Madagascar" ], "subregion": "Eastern Africa", "region": "Africa", "population": 27691019, "latlng": [ -20.0, 47.0 ], "demonym": "Malagasy", "area": 587041.0, "gini": 42.6, "timezones": [ "UTC+03:00" ], "nativeName": "Madagasikara", "numericCode": "450", "flags": { "svg": "https://flagcdn.com/mg.svg", "png": "https://flagcdn.com/w320/mg.png" }, "currencies": [ { "code": "MGA", "name": "Malagasy ariary", "symbol": "Ar" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "mg", "iso639_2": "mlg", "name": "Malagasy", "nativeName": "fiteny malagasy" } ], "translations": { "br": "Madagaskar", "pt": "Madagáscar", "nl": "Madagaskar", "hr": "Madagaskar", "fa": "ماداگاسکار", "de": "Madagaskar", "es": "Madagascar", "fr": "Madagascar", "ja": "マダガスカル", "it": "Madagascar", "hu": "Madagaszkár" }, "flag": "https://flagcdn.com/mg.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "MAD", "independent": true }, { "name": "Malawi", "topLevelDomain": [ ".mw" ], "alpha2Code": "MW", "alpha3Code": "MWI", "callingCodes": [ "265" ], "capital": "Lilongwe", "altSpellings": [ "MW", "Republic of Malawi" ], "subregion": "Eastern Africa", "region": "Africa", "population": 19129955, "latlng": [ -13.5, 34.0 ], "demonym": "Malawian", "area": 118484.0, "gini": 44.7, "timezones": [ "UTC+02:00" ], "borders": [ "MOZ", "TZA", "ZMB" ], "nativeName": "Malawi", "numericCode": "454", "flags": { "svg": "https://flagcdn.com/mw.svg", "png": "https://flagcdn.com/w320/mw.png" }, "currencies": [ { "code": "MWK", "name": "Malawian kwacha", "symbol": "MK" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ny", "iso639_2": "nya", "name": "Chichewa", "nativeName": "chiCheŵa" } ], "translations": { "br": "Malawi", "pt": "Malávi", "nl": "Malawi", "hr": "Malavi", "fa": "مالاوی", "de": "Malawi", "es": "Malawi", "fr": "Malawi", "ja": "マラウイ", "it": "Malawi", "hu": "Malawi" }, "flag": "https://flagcdn.com/mw.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "MAW", "independent": true }, { "name": "Malaysia", "topLevelDomain": [ ".my" ], "alpha2Code": "MY", "alpha3Code": "MYS", "callingCodes": [ "60" ], "capital": "Kuala Lumpur", "altSpellings": [ "MY" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 32365998, "latlng": [ 2.5, 112.5 ], "demonym": "Malaysian", "area": 330803.0, "gini": 41.1, "timezones": [ "UTC+08:00" ], "borders": [ "BRN", "IDN", "THA" ], "nativeName": "Malaysia", "numericCode": "458", "flags": { "svg": "https://flagcdn.com/my.svg", "png": "https://flagcdn.com/w320/my.png" }, "currencies": [ { "code": "MYR", "name": "Malaysian ringgit", "symbol": "RM" } ], "languages": [ { "iso639_1": "ms", "iso639_2": "zsm", "name": "Malaysian", "nativeName": "بهاس مليسيا" } ], "translations": { "br": "Malaysia", "pt": "Malásia", "nl": "Maleisië", "hr": "Malezija", "fa": "مالزی", "de": "Malaysia", "es": "Malasia", "fr": "Malaisie", "ja": "マレーシア", "it": "Malesia", "hu": "Malajzia" }, "flag": "https://flagcdn.com/my.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "MAS", "independent": true }, { "name": "Maldives", "topLevelDomain": [ ".mv" ], "alpha2Code": "MV", "alpha3Code": "MDV", "callingCodes": [ "960" ], "capital": "Malé", "altSpellings": [ "MV", "Maldive Islands", "Republic of the Maldives", "Dhivehi Raajjeyge Jumhooriyya" ], "subregion": "Southern Asia", "region": "Asia", "population": 540542, "latlng": [ 3.25, 73.0 ], "demonym": "Maldivan", "area": 300.0, "gini": 31.3, "timezones": [ "UTC+05:00" ], "nativeName": "Maldives", "numericCode": "462", "flags": { "svg": "https://flagcdn.com/mv.svg", "png": "https://flagcdn.com/w320/mv.png" }, "currencies": [ { "code": "MVR", "name": "Maldivian rufiyaa", "symbol": ".ރ" } ], "languages": [ { "iso639_1": "dv", "iso639_2": "div", "name": "Divehi", "nativeName": "ދިވެހި" } ], "translations": { "br": "Maldivez", "pt": "Maldivas", "nl": "Maldiven", "hr": "Maldivi", "fa": "مالدیو", "de": "Malediven", "es": "Maldivas", "fr": "Maldives", "ja": "モルディブ", "it": "Maldive", "hu": "Maldív-szigetek" }, "flag": "https://flagcdn.com/mv.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "MDV", "independent": true }, { "name": "Mali", "topLevelDomain": [ ".ml" ], "alpha2Code": "ML", "alpha3Code": "MLI", "callingCodes": [ "223" ], "capital": "Bamako", "altSpellings": [ "ML", "Republic of Mali", "République du Mali" ], "subregion": "Western Africa", "region": "Africa", "population": 20250834, "latlng": [ 17.0, -4.0 ], "demonym": "Malian", "area": 1240192.0, "gini": 33.0, "timezones": [ "UTC" ], "borders": [ "DZA", "BFA", "GIN", "CIV", "MRT", "NER", "SEN" ], "nativeName": "Mali", "numericCode": "466", "flags": { "svg": "https://flagcdn.com/ml.svg", "png": "https://flagcdn.com/w320/ml.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Mali", "pt": "Mali", "nl": "Mali", "hr": "Mali", "fa": "مالی", "de": "Mali", "es": "Mali", "fr": "Mali", "ja": "マリ", "it": "Mali", "hu": "Mali" }, "flag": "https://flagcdn.com/ml.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "MLI", "independent": true }, { "name": "Malta", "topLevelDomain": [ ".mt" ], "alpha2Code": "MT", "alpha3Code": "MLT", "callingCodes": [ "356" ], "capital": "Valletta", "altSpellings": [ "MT", "Republic of Malta", "Repubblika ta' Malta" ], "subregion": "Southern Europe", "region": "Europe", "population": 525285, "latlng": [ 35.83333333, 14.58333333 ], "demonym": "Maltese", "area": 316.0, "gini": 28.7, "timezones": [ "UTC+01:00" ], "nativeName": "Malta", "numericCode": "470", "flags": { "svg": "https://flagcdn.com/mt.svg", "png": "https://flagcdn.com/w320/mt.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "mt", "iso639_2": "mlt", "name": "Maltese", "nativeName": "Malti" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Malta", "pt": "Malta", "nl": "Malta", "hr": "Malta", "fa": "مالت", "de": "Malta", "es": "Malta", "fr": "Malte", "ja": "マルタ", "it": "Malta", "hu": "Málta" }, "flag": "https://flagcdn.com/mt.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "MLT", "independent": true }, { "name": "Marshall Islands", "topLevelDomain": [ ".mh" ], "alpha2Code": "MH", "alpha3Code": "MHL", "callingCodes": [ "692" ], "capital": "Majuro", "altSpellings": [ "MH", "Republic of the Marshall Islands", "Aolepān Aorōkin M̧ajeļ" ], "subregion": "Micronesia", "region": "Oceania", "population": 59194, "latlng": [ 9.0, 168.0 ], "demonym": "Marshallese", "area": 181.0, "timezones": [ "UTC+12:00" ], "nativeName": "M̧ajeļ", "numericCode": "584", "flags": { "svg": "https://flagcdn.com/mh.svg", "png": "https://flagcdn.com/w320/mh.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "mh", "iso639_2": "mah", "name": "Marshallese", "nativeName": "Kajin M̧ajeļ" } ], "translations": { "br": "Inizi Marshall", "pt": "Ilhas Marshall", "nl": "Marshalleilanden", "hr": "Maršalovi Otoci", "fa": "جزایر مارشال", "de": "Marshallinseln", "es": "Islas Marshall", "fr": "Îles Marshall", "ja": "マーシャル諸島", "it": "Isole Marshall", "hu": "Marshall-szigetek" }, "flag": "https://flagcdn.com/mh.svg", "cioc": "MHL", "independent": true }, { "name": "Martinique", "topLevelDomain": [ ".mq" ], "alpha2Code": "MQ", "alpha3Code": "MTQ", "callingCodes": [ "596" ], "capital": "Fort-de-France", "altSpellings": [ "MQ" ], "subregion": "Caribbean", "region": "Americas", "population": 378243, "latlng": [ 14.666667, -61.0 ], "demonym": "French", "timezones": [ "UTC-04:00" ], "nativeName": "Martinique", "numericCode": "474", "flags": { "svg": "https://flagcdn.com/mq.svg", "png": "https://flagcdn.com/w320/mq.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Martinik", "pt": "Martinica", "nl": "Martinique", "hr": "Martinique", "fa": "مونتسرات", "de": "Martinique", "es": "Martinica", "fr": "Martinique", "ja": "マルティニーク", "it": "Martinica", "hu": "Martinique" }, "flag": "https://flagcdn.com/mq.svg", "independent": false }, { "name": "Mauritania", "topLevelDomain": [ ".mr" ], "alpha2Code": "MR", "alpha3Code": "MRT", "callingCodes": [ "222" ], "capital": "Nouakchott", "altSpellings": [ "MR", "Islamic Republic of Mauritania", "al-Jumhūriyyah al-ʾIslāmiyyah al-Mūrītāniyyah" ], "subregion": "Western Africa", "region": "Africa", "population": 4649660, "latlng": [ 20.0, -12.0 ], "demonym": "Mauritanian", "area": 1030700.0, "gini": 32.6, "timezones": [ "UTC" ], "borders": [ "DZA", "MLI", "SEN", "ESH" ], "nativeName": "موريتانيا", "numericCode": "478", "flags": { "svg": "https://flagcdn.com/mr.svg", "png": "https://flagcdn.com/w320/mr.png" }, "currencies": [ { "code": "MRO", "name": "Mauritanian ouguiya", "symbol": "UM" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Maouritania", "pt": "Mauritânia", "nl": "Mauritanië", "hr": "Mauritanija", "fa": "موریتانی", "de": "Mauretanien", "es": "Mauritania", "fr": "Mauritanie", "ja": "モーリタニア", "it": "Mauritania", "hu": "Mauritánia" }, "flag": "https://flagcdn.com/mr.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "MTN", "independent": true }, { "name": "Mauritius", "topLevelDomain": [ ".mu" ], "alpha2Code": "MU", "alpha3Code": "MUS", "callingCodes": [ "230" ], "capital": "Port Louis", "altSpellings": [ "MU", "Republic of Mauritius", "République de Maurice" ], "subregion": "Eastern Africa", "region": "Africa", "population": 1265740, "latlng": [ -20.28333333, 57.55 ], "demonym": "Mauritian", "area": 2040.0, "gini": 36.8, "timezones": [ "UTC+04:00" ], "nativeName": "Maurice", "numericCode": "480", "flags": { "svg": "https://flagcdn.com/mu.svg", "png": "https://flagcdn.com/w320/mu.png" }, "currencies": [ { "code": "MUR", "name": "Mauritian rupee", "symbol": "₨" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Moris", "pt": "Maurícia", "nl": "Mauritius", "hr": "Mauricijus", "fa": "موریس", "de": "Mauritius", "es": "Mauricio", "fr": "Île Maurice", "ja": "モーリシャス", "it": "Mauritius", "hu": "Mauritius" }, "flag": "https://flagcdn.com/mu.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "MRI", "independent": true }, { "name": "Mayotte", "topLevelDomain": [ ".yt" ], "alpha2Code": "YT", "alpha3Code": "MYT", "callingCodes": [ "262" ], "capital": "Mamoudzou", "altSpellings": [ "YT", "Department of Mayotte", "Département de Mayotte" ], "subregion": "Eastern Africa", "region": "Africa", "population": 226915, "latlng": [ -12.83333333, 45.16666666 ], "demonym": "French", "timezones": [ "UTC+03:00" ], "nativeName": "Mayotte", "numericCode": "175", "flags": { "svg": "https://flagcdn.com/yt.svg", "png": "https://flagcdn.com/w320/yt.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Mayotte", "pt": "Mayotte", "nl": "Mayotte", "hr": "Mayotte", "fa": "مایوت", "de": "Mayotte", "es": "Mayotte", "fr": "Mayotte", "ja": "マヨット", "it": "Mayotte", "hu": "Mayotte" }, "flag": "https://flagcdn.com/yt.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": false }, { "name": "Mexico", "topLevelDomain": [ ".mx" ], "alpha2Code": "MX", "alpha3Code": "MEX", "callingCodes": [ "52" ], "capital": "Mexico City", "altSpellings": [ "MX", "Mexicanos", "United Mexican States", "Estados Unidos Mexicanos" ], "subregion": "North America", "region": "Americas", "population": 128932753, "latlng": [ 23.0, -102.0 ], "demonym": "Mexican", "area": 1964375.0, "gini": 45.4, "timezones": [ "UTC-08:00", "UTC-07:00", "UTC-06:00" ], "borders": [ "BLZ", "GTM", "USA" ], "nativeName": "México", "numericCode": "484", "flags": { "svg": "https://flagcdn.com/mx.svg", "png": "https://flagcdn.com/w320/mx.png" }, "currencies": [ { "code": "MXN", "name": "Mexican peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Mec'hiko", "pt": "México", "nl": "Mexico", "hr": "Meksiko", "fa": "مکزیک", "de": "Mexiko", "es": "México", "fr": "Mexique", "ja": "メキシコ", "it": "Messico", "hu": "Mexikó" }, "flag": "https://flagcdn.com/mx.svg", "regionalBlocs": [ { "acronym": "PA", "name": "Pacific Alliance", "otherNames": [ "Alianza del Pacífico" ] }, { "acronym": "NAFTA", "name": "North American Free Trade Agreement", "otherNames": [ "Tratado de Libre Comercio de América del Norte", "Accord de Libre-échange Nord-Américain" ] } ], "cioc": "MEX", "independent": true }, { "name": "Micronesia (Federated States of)", "topLevelDomain": [ ".fm" ], "alpha2Code": "FM", "alpha3Code": "FSM", "callingCodes": [ "691" ], "capital": "Palikir", "altSpellings": [ "FM", "Federated States of Micronesia" ], "subregion": "Micronesia", "region": "Oceania", "population": 115021, "latlng": [ 6.91666666, 158.25 ], "demonym": "Micronesian", "area": 702.0, "gini": 40.1, "timezones": [ "UTC+10:00", "UTC+11:00" ], "nativeName": "Micronesia", "numericCode": "583", "flags": { "svg": "https://flagcdn.com/fm.svg", "png": "https://flagcdn.com/w320/fm.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Mikronezia", "pt": "Micronésia", "nl": "Micronesië", "hr": "Mikronezija", "fa": "ایالات فدرال میکرونزی", "de": "Mikronesien", "es": "Micronesia", "fr": "Micronésie", "ja": "ミクロネシア連邦", "it": "Micronesia", "hu": "Mikronézia" }, "flag": "https://flagcdn.com/fm.svg", "cioc": "FSM", "independent": true }, { "name": "Moldova (Republic of)", "topLevelDomain": [ ".md" ], "alpha2Code": "MD", "alpha3Code": "MDA", "callingCodes": [ "373" ], "capital": "Chișinău", "altSpellings": [ "MD", "Republic of Moldova", "Republica Moldova" ], "subregion": "Eastern Europe", "region": "Europe", "population": 2617820, "latlng": [ 47.0, 29.0 ], "demonym": "Moldovan", "area": 33846.0, "gini": 25.7, "timezones": [ "UTC+02:00" ], "borders": [ "ROU", "UKR" ], "nativeName": "Moldova", "numericCode": "498", "flags": { "svg": "https://flagcdn.com/md.svg", "png": "https://flagcdn.com/w320/md.png" }, "currencies": [ { "code": "MDL", "name": "Moldovan leu", "symbol": "L" } ], "languages": [ { "iso639_1": "ro", "iso639_2": "ron", "name": "Romanian", "nativeName": "Română" } ], "translations": { "br": "Moldova", "pt": "Moldávia", "nl": "Moldavië", "hr": "Moldova", "fa": "مولداوی", "de": "Moldawie", "es": "Moldavia", "fr": "Moldavie", "ja": "モルドバ共和国", "it": "Moldavia", "hu": "Moldova" }, "flag": "https://flagcdn.com/md.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "MDA", "independent": true }, { "name": "Monaco", "topLevelDomain": [ ".mc" ], "alpha2Code": "MC", "alpha3Code": "MCO", "callingCodes": [ "377" ], "capital": "Monaco", "altSpellings": [ "MC", "Principality of Monaco", "Principauté de Monaco" ], "subregion": "Western Europe", "region": "Europe", "population": 39244, "latlng": [ 43.73333333, 7.4 ], "demonym": "Monegasque", "area": 2.02, "timezones": [ "UTC+01:00" ], "borders": [ "FRA" ], "nativeName": "Monaco", "numericCode": "492", "flags": { "svg": "https://flagcdn.com/mc.svg", "png": "https://flagcdn.com/w320/mc.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Monako", "pt": "Mónaco", "nl": "Monaco", "hr": "Monako", "fa": "موناکو", "de": "Monaco", "es": "Mónaco", "fr": "Monaco", "ja": "モナコ", "it": "Principato di Monaco", "hu": "Monaco" }, "flag": "https://flagcdn.com/mc.svg", "cioc": "MON", "independent": true }, { "name": "Mongolia", "topLevelDomain": [ ".mn" ], "alpha2Code": "MN", "alpha3Code": "MNG", "callingCodes": [ "976" ], "capital": "Ulan Bator", "altSpellings": [ "MN" ], "subregion": "Eastern Asia", "region": "Asia", "population": 3278292, "latlng": [ 46.0, 105.0 ], "demonym": "Mongolian", "area": 1564110.0, "gini": 32.7, "timezones": [ "UTC+07:00", "UTC+08:00" ], "borders": [ "CHN", "RUS" ], "nativeName": "Монгол улс", "numericCode": "496", "flags": { "svg": "https://flagcdn.com/mn.svg", "png": "https://flagcdn.com/w320/mn.png" }, "currencies": [ { "code": "MNT", "name": "Mongolian tögrög", "symbol": "₮" } ], "languages": [ { "iso639_1": "mn", "iso639_2": "mon", "name": "Mongolian", "nativeName": "Монгол хэл" } ], "translations": { "br": "Mongolia", "pt": "Mongólia", "nl": "Mongolië", "hr": "Mongolija", "fa": "مغولستان", "de": "Mongolei", "es": "Mongolia", "fr": "Mongolie", "ja": "モンゴル", "it": "Mongolia", "hu": "Mongólia" }, "flag": "https://flagcdn.com/mn.svg", "cioc": "MGL", "independent": true }, { "name": "Montenegro", "topLevelDomain": [ ".me" ], "alpha2Code": "ME", "alpha3Code": "MNE", "callingCodes": [ "382" ], "capital": "Podgorica", "altSpellings": [ "ME", "Crna Gora" ], "subregion": "Southern Europe", "region": "Europe", "population": 621718, "latlng": [ 42.5, 19.3 ], "demonym": "Montenegrin", "area": 13812.0, "gini": 38.5, "timezones": [ "UTC+01:00" ], "borders": [ "ALB", "BIH", "HRV", "UNK", "SRB" ], "nativeName": "Црна Гора", "numericCode": "499", "flags": { "svg": "https://flagcdn.com/me.svg", "png": "https://flagcdn.com/w320/me.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "sr", "iso639_2": "srp", "name": "Serbian", "nativeName": "српски језик" }, { "iso639_1": "bs", "iso639_2": "bos", "name": "Bosnian", "nativeName": "bosanski jezik" }, { "iso639_1": "sq", "iso639_2": "sqi", "name": "Albanian", "nativeName": "Shqip" }, { "iso639_1": "hr", "iso639_2": "hrv", "name": "Croatian", "nativeName": "hrvatski jezik" } ], "translations": { "br": "Montenegro", "pt": "Montenegro", "nl": "Montenegro", "hr": "Crna Gora", "fa": "مونته‌نگرو", "de": "Montenegro", "es": "Montenegro", "fr": "Monténégro", "ja": "モンテネグロ", "it": "Montenegro", "hu": "Montenegró" }, "flag": "https://flagcdn.com/me.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "MNE", "independent": true }, { "name": "Montserrat", "topLevelDomain": [ ".ms" ], "alpha2Code": "MS", "alpha3Code": "MSR", "callingCodes": [ "1" ], "capital": "Plymouth", "altSpellings": [ "MS" ], "subregion": "Caribbean", "region": "Americas", "population": 4922, "latlng": [ 16.75, -62.2 ], "demonym": "Montserratian", "area": 102.0, "timezones": [ "UTC-04:00" ], "nativeName": "Montserrat", "numericCode": "500", "flags": { "svg": "https://flagcdn.com/ms.svg", "png": "https://flagcdn.com/w320/ms.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Montserrat", "pt": "Monserrate", "nl": "Montserrat", "hr": "Montserrat", "fa": "مایوت", "de": "Montserrat", "es": "Montserrat", "fr": "Montserrat", "ja": "モントセラト", "it": "Montserrat", "hu": "Montserrat" }, "flag": "https://flagcdn.com/ms.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "independent": false }, { "name": "Morocco", "topLevelDomain": [ ".ma" ], "alpha2Code": "MA", "alpha3Code": "MAR", "callingCodes": [ "212" ], "capital": "Rabat", "altSpellings": [ "MA", "Kingdom of Morocco", "Al-Mamlakah al-Maġribiyah" ], "subregion": "Northern Africa", "region": "Africa", "population": 36910558, "latlng": [ 32.0, -5.0 ], "demonym": "Moroccan", "area": 446550.0, "gini": 39.5, "timezones": [ "UTC" ], "borders": [ "DZA", "ESH", "ESP" ], "nativeName": "المغرب", "numericCode": "504", "flags": { "svg": "https://flagcdn.com/ma.svg", "png": "https://flagcdn.com/w320/ma.png" }, "currencies": [ { "code": "MAD", "name": "Moroccan dirham", "symbol": "د.م." } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Maroko", "pt": "Marrocos", "nl": "Marokko", "hr": "Maroko", "fa": "المغرب", "de": "Marokko", "es": "Marruecos", "fr": "Maroc", "ja": "モロッコ", "it": "Marocco", "hu": "Marokkó" }, "flag": "https://flagcdn.com/ma.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "MAR", "independent": true }, { "name": "Mozambique", "topLevelDomain": [ ".mz" ], "alpha2Code": "MZ", "alpha3Code": "MOZ", "callingCodes": [ "258" ], "capital": "Maputo", "altSpellings": [ "MZ", "Republic of Mozambique", "República de Moçambique" ], "subregion": "Eastern Africa", "region": "Africa", "population": 31255435, "latlng": [ -18.25, 35.0 ], "demonym": "Mozambican", "area": 801590.0, "gini": 54.0, "timezones": [ "UTC+02:00" ], "borders": [ "MWI", "ZAF", "SWZ", "TZA", "ZMB", "ZWE" ], "nativeName": "Moçambique", "numericCode": "508", "flags": { "svg": "https://flagcdn.com/mz.svg", "png": "https://flagcdn.com/w320/mz.png" }, "currencies": [ { "code": "MZN", "name": "Mozambican metical", "symbol": "MT" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Mozambik", "pt": "Moçambique", "nl": "Mozambique", "hr": "Mozambik", "fa": "موزامبیک", "de": "Mosambik", "es": "Mozambique", "fr": "Mozambique", "ja": "モザンビーク", "it": "Mozambico", "hu": "Mozambik" }, "flag": "https://flagcdn.com/mz.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "MOZ", "independent": true }, { "name": "Myanmar", "topLevelDomain": [ ".mm" ], "alpha2Code": "MM", "alpha3Code": "MMR", "callingCodes": [ "95" ], "capital": "Naypyidaw", "altSpellings": [ "MM", "Burma", "Republic of the Union of Myanmar", "Pyidaunzu Thanmăda Myăma Nainngandaw" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 54409794, "latlng": [ 22.0, 98.0 ], "demonym": "Burmese", "area": 676578.0, "gini": 30.7, "timezones": [ "UTC+06:30" ], "borders": [ "BGD", "CHN", "IND", "LAO", "THA" ], "nativeName": "Myanma", "numericCode": "104", "flags": { "svg": "https://flagcdn.com/mm.svg", "png": "https://flagcdn.com/w320/mm.png" }, "currencies": [ { "code": "MMK", "name": "Burmese kyat", "symbol": "Ks" } ], "languages": [ { "iso639_1": "my", "iso639_2": "mya", "name": "Burmese", "nativeName": "ဗမာစာ" } ], "translations": { "br": "Myanmar", "pt": "Myanmar", "nl": "Myanmar", "hr": "Mijanmar", "fa": "میانمار", "de": "Myanmar", "es": "Myanmar", "fr": "Myanmar", "ja": "ミャンマー", "it": "Birmania", "hu": "Mianmar" }, "flag": "https://flagcdn.com/mm.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "MYA", "independent": true }, { "name": "Namibia", "topLevelDomain": [ ".na" ], "alpha2Code": "NA", "alpha3Code": "NAM", "callingCodes": [ "264" ], "capital": "Windhoek", "altSpellings": [ "NA", "Namibië", "Republic of Namibia" ], "subregion": "Southern Africa", "region": "Africa", "population": 2540916, "latlng": [ -22.0, 17.0 ], "demonym": "Namibian", "area": 825615.0, "gini": 59.1, "timezones": [ "UTC+01:00" ], "borders": [ "AGO", "BWA", "ZAF", "ZMB" ], "nativeName": "Namibia", "numericCode": "516", "flags": { "svg": "https://flagcdn.com/na.svg", "png": "https://flagcdn.com/w320/na.png" }, "currencies": [ { "code": "NAD", "name": "Namibian dollar", "symbol": "$" }, { "code": "ZAR", "name": "South African rand", "symbol": "R" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "af", "iso639_2": "afr", "name": "Afrikaans", "nativeName": "Afrikaans" } ], "translations": { "br": "Namibia", "pt": "Namíbia", "nl": "Namibië", "hr": "Namibija", "fa": "نامیبیا", "de": "Namibia", "es": "Namibia", "fr": "Namibie", "ja": "ナミビア", "it": "Namibia", "hu": "Namíbia" }, "flag": "https://flagcdn.com/na.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "NAM", "independent": true }, { "name": "Nauru", "topLevelDomain": [ ".nr" ], "alpha2Code": "NR", "alpha3Code": "NRU", "callingCodes": [ "674" ], "capital": "Yaren", "altSpellings": [ "NR", "Naoero", "Pleasant Island", "Republic of Nauru", "Ripublik Naoero" ], "subregion": "Micronesia", "region": "Oceania", "population": 10834, "latlng": [ -0.53333333, 166.91666666 ], "demonym": "Nauruan", "area": 21.0, "gini": 34.8, "timezones": [ "UTC+12:00" ], "nativeName": "Nauru", "numericCode": "520", "flags": { "svg": "https://flagcdn.com/nr.svg", "png": "https://flagcdn.com/w320/nr.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "na", "iso639_2": "nau", "name": "Nauruan", "nativeName": "Dorerin Naoero" } ], "translations": { "br": "Nauru", "pt": "Nauru", "nl": "Nauru", "hr": "Nauru", "fa": "نائورو", "de": "Nauru", "es": "Nauru", "fr": "Nauru", "ja": "ナウル", "it": "Nauru", "hu": "Nauru" }, "flag": "https://flagcdn.com/nr.svg", "cioc": "NRU", "independent": true }, { "name": "Nepal", "topLevelDomain": [ ".np" ], "alpha2Code": "NP", "alpha3Code": "NPL", "callingCodes": [ "977" ], "capital": "Kathmandu", "altSpellings": [ "NP", "Federal Democratic Republic of Nepal", "Loktāntrik Ganatantra Nepāl" ], "subregion": "Southern Asia", "region": "Asia", "population": 29136808, "latlng": [ 28.0, 84.0 ], "demonym": "Nepalese", "area": 147181.0, "gini": 32.8, "timezones": [ "UTC+05:45" ], "borders": [ "CHN", "IND" ], "nativeName": "नेपाल", "numericCode": "524", "flags": { "svg": "https://flagcdn.com/np.svg", "png": "https://flagcdn.com/w320/np.png" }, "currencies": [ { "code": "NPR", "name": "Nepalese rupee", "symbol": "₨" } ], "languages": [ { "iso639_1": "ne", "iso639_2": "nep", "name": "Nepali", "nativeName": "नेपाली" } ], "translations": { "br": "Nepal", "pt": "Nepal", "nl": "Nepal", "hr": "Nepal", "fa": "نپال", "de": "Népal", "es": "Nepal", "fr": "Népal", "ja": "ネパール", "it": "Nepal", "hu": "Nepál" }, "flag": "https://flagcdn.com/np.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "NEP", "independent": true }, { "name": "Netherlands", "topLevelDomain": [ ".nl" ], "alpha2Code": "NL", "alpha3Code": "NLD", "callingCodes": [ "31" ], "capital": "Amsterdam", "altSpellings": [ "NL", "Holland", "Nederland" ], "subregion": "Western Europe", "region": "Europe", "population": 17441139, "latlng": [ 52.5, 5.75 ], "demonym": "Dutch", "area": 41850.0, "gini": 28.1, "timezones": [ "UTC-04:00", "UTC+01:00" ], "borders": [ "BEL", "DEU" ], "nativeName": "Nederland", "numericCode": "528", "flags": { "svg": "https://flagcdn.com/nl.svg", "png": "https://flagcdn.com/w320/nl.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" } ], "translations": { "br": "Izelvroioù", "pt": "Países Baixos", "nl": "Nederland", "hr": "Nizozemska", "fa": "پادشاهی هلند", "de": "Niederlande", "es": "Países Bajos", "fr": "Pays-Bas", "ja": "オランダ", "it": "Paesi Bassi", "hu": "Hollandia" }, "flag": "https://flagcdn.com/nl.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "NED", "independent": true }, { "name": "New Caledonia", "topLevelDomain": [ ".nc" ], "alpha2Code": "NC", "alpha3Code": "NCL", "callingCodes": [ "687" ], "capital": "Nouméa", "altSpellings": [ "NC" ], "subregion": "Melanesia", "region": "Oceania", "population": 271960, "latlng": [ -21.5, 165.5 ], "demonym": "New Caledonian", "area": 18575.0, "timezones": [ "UTC+11:00" ], "nativeName": "Nouvelle-Calédonie", "numericCode": "540", "flags": { "svg": "https://flagcdn.com/nc.svg", "png": "https://flagcdn.com/w320/nc.png" }, "currencies": [ { "code": "XPF", "name": "CFP franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Kaledonia-Nevez", "pt": "Nova Caledónia", "nl": "Nieuw-Caledonië", "hr": "Nova Kaledonija", "fa": "کالدونیای جدید", "de": "Neukaledonien", "es": "Nueva Caledonia", "fr": "Nouvelle-Calédonie", "ja": "ニューカレドニア", "it": "Nuova Caledonia", "hu": "Új-Kaledónia" }, "flag": "https://flagcdn.com/nc.svg", "independent": false }, { "name": "New Zealand", "topLevelDomain": [ ".nz" ], "alpha2Code": "NZ", "alpha3Code": "NZL", "callingCodes": [ "64" ], "capital": "Wellington", "altSpellings": [ "NZ", "Aotearoa" ], "subregion": "Australia and New Zealand", "region": "Oceania", "population": 5084300, "latlng": [ -41.0, 174.0 ], "demonym": "New Zealander", "area": 270467.0, "timezones": [ "UTC-11:00", "UTC-10:00", "UTC+12:00", "UTC+12:45", "UTC+13:00" ], "nativeName": "New Zealand", "numericCode": "554", "flags": { "svg": "https://flagcdn.com/nz.svg", "png": "https://flagcdn.com/w320/nz.png" }, "currencies": [ { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "mi", "iso639_2": "mri", "name": "Māori", "nativeName": "te reo Māori" } ], "translations": { "br": "Zeland-Nevez", "pt": "Nova Zelândia", "nl": "Nieuw-Zeeland", "hr": "Novi Zeland", "fa": "نیوزیلند", "de": "Neuseeland", "es": "Nueva Zelanda", "fr": "Nouvelle-Zélande", "ja": "ニュージーランド", "it": "Nuova Zelanda", "hu": "Új-Zéland" }, "flag": "https://flagcdn.com/nz.svg", "cioc": "NZL", "independent": true }, { "name": "Nicaragua", "topLevelDomain": [ ".ni" ], "alpha2Code": "NI", "alpha3Code": "NIC", "callingCodes": [ "505" ], "capital": "Managua", "altSpellings": [ "NI", "Republic of Nicaragua", "República de Nicaragua" ], "subregion": "Central America", "region": "Americas", "population": 6624554, "latlng": [ 13.0, -85.0 ], "demonym": "Nicaraguan", "area": 130373.0, "gini": 46.2, "timezones": [ "UTC-06:00" ], "borders": [ "CRI", "HND" ], "nativeName": "Nicaragua", "numericCode": "558", "flags": { "svg": "https://flagcdn.com/ni.svg", "png": "https://flagcdn.com/w320/ni.png" }, "currencies": [ { "code": "NIO", "name": "Nicaraguan córdoba", "symbol": "C$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Nicaragua", "pt": "Nicarágua", "nl": "Nicaragua", "hr": "Nikaragva", "fa": "نیکاراگوئه", "de": "Nicaragua", "es": "Nicaragua", "fr": "Nicaragua", "ja": "ニカラグア", "it": "Nicaragua", "hu": "Nicaragua" }, "flag": "https://flagcdn.com/ni.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "NCA", "independent": true }, { "name": "Niger", "topLevelDomain": [ ".ne" ], "alpha2Code": "NE", "alpha3Code": "NER", "callingCodes": [ "227" ], "capital": "Niamey", "altSpellings": [ "NE", "Nijar", "Republic of Niger", "République du Niger" ], "subregion": "Western Africa", "region": "Africa", "population": 24206636, "latlng": [ 16.0, 8.0 ], "demonym": "Nigerien", "area": 1267000.0, "gini": 34.3, "timezones": [ "UTC+01:00" ], "borders": [ "DZA", "BEN", "BFA", "TCD", "LBY", "MLI", "NGA" ], "nativeName": "Niger", "numericCode": "562", "flags": { "svg": "https://flagcdn.com/ne.svg", "png": "https://flagcdn.com/w320/ne.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Niger", "pt": "Níger", "nl": "Niger", "hr": "Niger", "fa": "نیجر", "de": "Niger", "es": "Níger", "fr": "Niger", "ja": "ニジェール", "it": "Niger", "hu": "Niger" }, "flag": "https://flagcdn.com/ne.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "NIG", "independent": true }, { "name": "Nigeria", "topLevelDomain": [ ".ng" ], "alpha2Code": "NG", "alpha3Code": "NGA", "callingCodes": [ "234" ], "capital": "Abuja", "altSpellings": [ "NG", "Nijeriya", "Naíjíríà", "Federal Republic of Nigeria" ], "subregion": "Western Africa", "region": "Africa", "population": 206139587, "latlng": [ 10.0, 8.0 ], "demonym": "Nigerian", "area": 923768.0, "gini": 35.1, "timezones": [ "UTC+01:00" ], "borders": [ "BEN", "CMR", "TCD", "NER" ], "nativeName": "Nigeria", "numericCode": "566", "flags": { "svg": "https://flagcdn.com/ng.svg", "png": "https://flagcdn.com/w320/ng.png" }, "currencies": [ { "code": "NGN", "name": "Nigerian naira", "symbol": "₦" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Nigeria", "pt": "Nigéria", "nl": "Nigeria", "hr": "Nigerija", "fa": "نیجریه", "de": "Nigeria", "es": "Nigeria", "fr": "Nigéria", "ja": "ナイジェリア", "it": "Nigeria", "hu": "Nigéria" }, "flag": "https://flagcdn.com/ng.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "NGR", "independent": true }, { "name": "Niue", "topLevelDomain": [ ".nu" ], "alpha2Code": "NU", "alpha3Code": "NIU", "callingCodes": [ "683" ], "capital": "Alofi", "altSpellings": [ "NU" ], "subregion": "Polynesia", "region": "Oceania", "population": 1470, "latlng": [ -19.03333333, -169.86666666 ], "demonym": "Niuean", "area": 260.0, "timezones": [ "UTC-11:00" ], "nativeName": "Niuē", "numericCode": "570", "flags": { "svg": "https://flagcdn.com/nu.svg", "png": "https://flagcdn.com/w320/nu.png" }, "currencies": [ { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, { "code": "NZD", "name": "Niue dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Niue", "pt": "Niue", "nl": "Niue", "hr": "Niue", "fa": "نیووی", "de": "Niue", "es": "Niue", "fr": "Niue", "ja": "ニウエ", "it": "Niue", "hu": "Niue" }, "flag": "https://flagcdn.com/nu.svg", "independent": true }, { "name": "Norfolk Island", "topLevelDomain": [ ".nf" ], "alpha2Code": "NF", "alpha3Code": "NFK", "callingCodes": [ "672" ], "capital": "Kingston", "altSpellings": [ "NF", "Territory of Norfolk Island", "Teratri of Norf'k Ailen" ], "subregion": "Australia and New Zealand", "region": "Oceania", "population": 2302, "latlng": [ -29.03333333, 167.95 ], "demonym": "Norfolk Islander", "area": 36.0, "timezones": [ "UTC+11:30" ], "nativeName": "Norfolk Island", "numericCode": "574", "flags": { "svg": "https://flagcdn.com/nf.svg", "png": "https://flagcdn.com/w320/nf.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Enez Norfolk", "pt": "Ilha Norfolk", "nl": "Norfolkeiland", "hr": "Otok Norfolk", "fa": "جزیره نورفک", "de": "Norfolkinsel", "es": "Isla de Norfolk", "fr": "Île de Norfolk", "ja": "ノーフォーク島", "it": "Isola Norfolk", "hu": "Norfolk-sziget" }, "flag": "https://flagcdn.com/nf.svg", "independent": false }, { "name": "Korea (Democratic People's Republic of)", "topLevelDomain": [ ".kp" ], "alpha2Code": "KP", "alpha3Code": "PRK", "callingCodes": [ "850" ], "capital": "Pyongyang", "altSpellings": [ "KP", "Democratic People's Republic of Korea", "조선민주주의인민공화국", "Chosŏn Minjujuŭi Inmin Konghwaguk" ], "subregion": "Eastern Asia", "region": "Asia", "population": 25778815, "latlng": [ 40.0, 127.0 ], "demonym": "North Korean", "area": 120538.0, "timezones": [ "UTC+09:00" ], "borders": [ "CHN", "KOR", "RUS" ], "nativeName": "북한", "numericCode": "408", "flags": { "svg": "https://flagcdn.com/kp.svg", "png": "https://flagcdn.com/w320/kp.png" }, "currencies": [ { "code": "KPW", "name": "North Korean won", "symbol": "₩" } ], "languages": [ { "iso639_1": "ko", "iso639_2": "kor", "name": "Korean", "nativeName": "한국어" } ], "translations": { "br": "Korea an Norzh", "pt": "Coreia do Norte", "nl": "Noord-Korea", "hr": "Sjeverna Koreja", "fa": "کره جنوبی", "de": "Nordkorea", "es": "Corea del Norte", "fr": "Corée du Nord", "ja": "朝鮮民主主義人民共和国", "it": "Corea del Nord", "hu": "Észak-Korea" }, "flag": "https://flagcdn.com/kp.svg", "cioc": "PRK", "independent": true }, { "name": "Northern Mariana Islands", "topLevelDomain": [ ".mp" ], "alpha2Code": "MP", "alpha3Code": "MNP", "callingCodes": [ "1" ], "capital": "Saipan", "altSpellings": [ "MP", "Commonwealth of the Northern Mariana Islands", "Sankattan Siha Na Islas Mariånas" ], "subregion": "Micronesia", "region": "Oceania", "population": 57557, "latlng": [ 15.2, 145.75 ], "demonym": "American", "area": 464.0, "timezones": [ "UTC+10:00" ], "nativeName": "Northern Mariana Islands", "numericCode": "580", "flags": { "svg": "https://flagcdn.com/mp.svg", "png": "https://flagcdn.com/w320/mp.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ch", "iso639_2": "cha", "name": "Chamorro", "nativeName": "Chamoru" } ], "translations": { "br": "Inizi Mariana an Norzh", "pt": "Ilhas Marianas", "nl": "Noordelijke Marianeneilanden", "hr": "Sjevernomarijanski otoci", "fa": "جزایر ماریانای شمالی", "de": "Nördliche Marianen", "es": "Islas Marianas del Norte", "fr": "Îles Mariannes du Nord", "ja": "北マリアナ諸島", "it": "Isole Marianne Settentrionali", "hu": "Északi-Mariana-szigetek" }, "flag": "https://flagcdn.com/mp.svg", "independent": false }, { "name": "Norway", "topLevelDomain": [ ".no" ], "alpha2Code": "NO", "alpha3Code": "NOR", "callingCodes": [ "47" ], "capital": "Oslo", "altSpellings": [ "NO", "Norge", "Noreg", "Kingdom of Norway", "Kongeriket Norge", "Kongeriket Noreg" ], "subregion": "Northern Europe", "region": "Europe", "population": 5379475, "latlng": [ 62.0, 10.0 ], "demonym": "Norwegian", "area": 323802.0, "gini": 27.6, "timezones": [ "UTC+01:00" ], "borders": [ "FIN", "SWE", "RUS" ], "nativeName": "Norge", "numericCode": "578", "flags": { "svg": "https://flagcdn.com/no.svg", "png": "https://flagcdn.com/w320/no.png" }, "currencies": [ { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } ], "languages": [ { "iso639_1": "no", "iso639_2": "nor", "name": "Norwegian", "nativeName": "Norsk" }, { "iso639_1": "nb", "iso639_2": "nob", "name": "Norwegian Bokmål", "nativeName": "Norsk bokmål" }, { "iso639_1": "nn", "iso639_2": "nno", "name": "Norwegian Nynorsk", "nativeName": "Norsk nynorsk" } ], "translations": { "br": "Norvegia", "pt": "Noruega", "nl": "Noorwegen", "hr": "Norveška", "fa": "نروژ", "de": "Norwegen", "es": "Noruega", "fr": "Norvège", "ja": "ノルウェー", "it": "Norvegia", "hu": "Norvégia" }, "flag": "https://flagcdn.com/no.svg", "regionalBlocs": [ { "acronym": "EFTA", "name": "European Free Trade Association" } ], "cioc": "NOR", "independent": true }, { "name": "Oman", "topLevelDomain": [ ".om" ], "alpha2Code": "OM", "alpha3Code": "OMN", "callingCodes": [ "968" ], "capital": "Muscat", "altSpellings": [ "OM", "Sultanate of Oman", "Salṭanat ʻUmān" ], "subregion": "Western Asia", "region": "Asia", "population": 5106622, "latlng": [ 21.0, 57.0 ], "demonym": "Omani", "area": 309500.0, "timezones": [ "UTC+04:00" ], "borders": [ "SAU", "ARE", "YEM" ], "nativeName": "عمان", "numericCode": "512", "flags": { "svg": "https://flagcdn.com/om.svg", "png": "https://flagcdn.com/w320/om.png" }, "currencies": [ { "code": "OMR", "name": "Omani rial", "symbol": "ر.ع." } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Oman", "pt": "Omã", "nl": "Oman", "hr": "Oman", "fa": "عمان", "de": "Oman", "es": "Omán", "fr": "Oman", "ja": "オマーン", "it": "oman", "hu": "Omán" }, "flag": "https://flagcdn.com/om.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "OMA", "independent": true }, { "name": "Pakistan", "topLevelDomain": [ ".pk" ], "alpha2Code": "PK", "alpha3Code": "PAK", "callingCodes": [ "92" ], "capital": "Islamabad", "altSpellings": [ "PK", "Pākistān", "Islamic Republic of Pakistan", "Islāmī Jumhūriya'eh Pākistān" ], "subregion": "Southern Asia", "region": "Asia", "population": 220892331, "latlng": [ 30.0, 70.0 ], "demonym": "Pakistani", "area": 881912.0, "gini": 31.6, "timezones": [ "UTC+05:00" ], "borders": [ "AFG", "CHN", "IND", "IRN" ], "nativeName": "Pakistan", "numericCode": "586", "flags": { "svg": "https://flagcdn.com/pk.svg", "png": "https://flagcdn.com/w320/pk.png" }, "currencies": [ { "code": "PKR", "name": "Pakistani rupee", "symbol": "₨" } ], "languages": [ { "iso639_1": "ur", "iso639_2": "urd", "name": "Urdu", "nativeName": "اردو" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Pakistan", "pt": "Paquistão", "nl": "Pakistan", "hr": "Pakistan", "fa": "پاکستان", "de": "Pakistan", "es": "Pakistán", "fr": "Pakistan", "ja": "パキスタン", "it": "Pakistan", "hu": "Pakisztán" }, "flag": "https://flagcdn.com/pk.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "PAK", "independent": true }, { "name": "Palau", "topLevelDomain": [ ".pw" ], "alpha2Code": "PW", "alpha3Code": "PLW", "callingCodes": [ "680" ], "capital": "Ngerulmud", "altSpellings": [ "PW", "Republic of Palau", "Beluu er a Belau" ], "subregion": "Micronesia", "region": "Oceania", "population": 18092, "latlng": [ 7.5, 134.5 ], "demonym": "Palauan", "area": 459.0, "timezones": [ "UTC+09:00" ], "nativeName": "Palau", "numericCode": "585", "flags": { "svg": "https://flagcdn.com/pw.svg", "png": "https://flagcdn.com/w320/pw.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Palau", "pt": "Palau", "nl": "Palau", "hr": "Palau", "fa": "پالائو", "de": "Palau", "es": "Palau", "fr": "Palaos", "ja": "パラオ", "it": "Palau", "hu": "Palau" }, "flag": "https://flagcdn.com/pw.svg", "cioc": "PLW", "independent": true }, { "name": "Palestine, State of", "topLevelDomain": [ ".ps" ], "alpha2Code": "PS", "alpha3Code": "PSE", "callingCodes": [ "970" ], "capital": "Ramallah", "altSpellings": [ "PS", "State of Palestine", "Dawlat Filasṭin" ], "subregion": "Western Asia", "region": "Asia", "population": 4803269, "latlng": [ 31.9, 35.2 ], "demonym": "Palestinian", "gini": 33.7, "timezones": [ "UTC+02:00" ], "borders": [ "ISR", "EGY", "JOR" ], "nativeName": "فلسطين", "numericCode": "275", "flags": { "svg": "https://flagcdn.com/ps.svg", "png": "https://flagcdn.com/w320/ps.png" }, "currencies": [ { "code": "EGP", "name": "Egyptian pound", "symbol": "E£" }, { "code": "ILS", "name": "Israeli new shekel", "symbol": "₪" }, { "code": "JOD", "name": "Jordanian dinar", "symbol": "د.أ" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Palestina", "pt": "Palestina", "nl": "Palestijnse gebieden", "hr": "Palestina", "fa": "فلسطین", "de": "Palästina", "es": "Palestina", "fr": "Palestine", "ja": "パレスチナ", "it": "Palestina", "hu": "Palesztina" }, "flag": "https://flagcdn.com/ps.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "PLE", "independent": true }, { "name": "Panama", "topLevelDomain": [ ".pa" ], "alpha2Code": "PA", "alpha3Code": "PAN", "callingCodes": [ "507" ], "capital": "Panama City", "altSpellings": [ "PA", "Republic of Panama", "República de Panamá" ], "subregion": "Central America", "region": "Americas", "population": 4314768, "latlng": [ 9.0, -80.0 ], "demonym": "Panamanian", "area": 75417.0, "gini": 49.8, "timezones": [ "UTC-05:00" ], "borders": [ "COL", "CRI" ], "nativeName": "Panamá", "numericCode": "591", "flags": { "svg": "https://flagcdn.com/pa.svg", "png": "https://flagcdn.com/w320/pa.png" }, "currencies": [ { "code": "PAB", "name": "Panamanian balboa", "symbol": "B/." }, { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Panama", "pt": "Panamá", "nl": "Panama", "hr": "Panama", "fa": "پاناما", "de": "Panama", "es": "Panamá", "fr": "Panama", "ja": "パナマ", "it": "Panama", "hu": "Panama" }, "flag": "https://flagcdn.com/pa.svg", "regionalBlocs": [ { "acronym": "CAIS", "name": "Central American Integration System", "otherAcronyms": [ "SICA" ], "otherNames": [ "Sistema de la Integración Centroamericana," ] } ], "cioc": "PAN", "independent": true }, { "name": "Papua New Guinea", "topLevelDomain": [ ".pg" ], "alpha2Code": "PG", "alpha3Code": "PNG", "callingCodes": [ "675" ], "capital": "Port Moresby", "altSpellings": [ "PG", "Independent State of Papua New Guinea", "Independen Stet bilong Papua Niugini" ], "subregion": "Melanesia", "region": "Oceania", "population": 8947027, "latlng": [ -6.0, 147.0 ], "demonym": "Papua New Guinean", "area": 462840.0, "gini": 41.9, "timezones": [ "UTC+10:00" ], "borders": [ "IDN" ], "nativeName": "Papua Niugini", "numericCode": "598", "flags": { "svg": "https://flagcdn.com/pg.svg", "png": "https://flagcdn.com/w320/pg.png" }, "currencies": [ { "code": "PGK", "name": "Papua New Guinean kina", "symbol": "K" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Papoua-Ginea Nevez", "pt": "Papua Nova Guiné", "nl": "Papoea-Nieuw-Guinea", "hr": "Papua Nova Gvineja", "fa": "پاپوآ گینه نو", "de": "Papua-Neuguinea", "es": "Papúa Nueva Guinea", "fr": "Papouasie-Nouvelle-Guinée", "ja": "パプアニューギニア", "it": "Papua Nuova Guinea", "hu": "Pápua Új-Guinea" }, "flag": "https://flagcdn.com/pg.svg", "cioc": "PNG", "independent": true }, { "name": "Paraguay", "topLevelDomain": [ ".py" ], "alpha2Code": "PY", "alpha3Code": "PRY", "callingCodes": [ "595" ], "capital": "Asunción", "altSpellings": [ "PY", "Republic of Paraguay", "República del Paraguay", "Tetã Paraguái" ], "subregion": "South America", "region": "Americas", "population": 7132530, "latlng": [ -23.0, -58.0 ], "demonym": "Paraguayan", "area": 406752.0, "gini": 45.7, "timezones": [ "UTC-04:00" ], "borders": [ "ARG", "BOL", "BRA" ], "nativeName": "Paraguay", "numericCode": "600", "flags": { "svg": "https://flagcdn.com/py.svg", "png": "https://flagcdn.com/w320/py.png" }, "currencies": [ { "code": "PYG", "name": "Paraguayan guaraní", "symbol": "₲" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }, { "iso639_1": "gn", "iso639_2": "grn", "name": "Guaraní", "nativeName": "Avañe'ẽ" } ], "translations": { "br": "Paraguay", "pt": "Paraguai", "nl": "Paraguay", "hr": "Paragvaj", "fa": "پاراگوئه", "de": "Paraguay", "es": "Paraguay", "fr": "Paraguay", "ja": "パラグアイ", "it": "Paraguay", "hu": "Paraguay" }, "flag": "https://flagcdn.com/py.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "PAR", "independent": true }, { "name": "Peru", "topLevelDomain": [ ".pe" ], "alpha2Code": "PE", "alpha3Code": "PER", "callingCodes": [ "51" ], "capital": "Lima", "altSpellings": [ "PE", "Republic of Peru", " República del Perú" ], "subregion": "South America", "region": "Americas", "population": 32971846, "latlng": [ -10.0, -76.0 ], "demonym": "Peruvian", "area": 1285216.0, "gini": 41.5, "timezones": [ "UTC-05:00" ], "borders": [ "BOL", "BRA", "CHL", "COL", "ECU" ], "nativeName": "Perú", "numericCode": "604", "flags": { "svg": "https://flagcdn.com/pe.svg", "png": "https://flagcdn.com/w320/pe.png" }, "currencies": [ { "code": "PEN", "name": "Peruvian sol", "symbol": "S/." } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Perou", "pt": "Peru", "nl": "Peru", "hr": "Peru", "fa": "پرو", "de": "Peru", "es": "Perú", "fr": "Pérou", "ja": "ペルー", "it": "Perù", "hu": "Peru" }, "flag": "https://flagcdn.com/pe.svg", "regionalBlocs": [ { "acronym": "PA", "name": "Pacific Alliance", "otherNames": [ "Alianza del Pacífico" ] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "PER", "independent": true }, { "name": "Philippines", "topLevelDomain": [ ".ph" ], "alpha2Code": "PH", "alpha3Code": "PHL", "callingCodes": [ "63" ], "capital": "Manila", "altSpellings": [ "PH", "Republic of the Philippines", "Repúblika ng Pilipinas" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 109581085, "latlng": [ 13.0, 122.0 ], "demonym": "Filipino", "area": 342353.0, "gini": 42.3, "timezones": [ "UTC+08:00" ], "nativeName": "Pilipinas", "numericCode": "608", "flags": { "svg": "https://flagcdn.com/ph.svg", "png": "https://flagcdn.com/w320/ph.png" }, "currencies": [ { "code": "PHP", "name": "Philippine peso", "symbol": "₱" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Filipinez", "pt": "Filipinas", "nl": "Filipijnen", "hr": "Filipini", "fa": "جزایر الندفیلیپین", "de": "Philippinen", "es": "Filipinas", "fr": "Philippines", "ja": "フィリピン", "it": "Filippine", "hu": "Fülöp-szigetek" }, "flag": "https://flagcdn.com/ph.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "PHI", "independent": true }, { "name": "Pitcairn", "topLevelDomain": [ ".pn" ], "alpha2Code": "PN", "alpha3Code": "PCN", "callingCodes": [ "64" ], "capital": "Adamstown", "altSpellings": [ "PN", "Pitcairn Henderson Ducie and Oeno Islands" ], "subregion": "Polynesia", "region": "Oceania", "population": 56, "latlng": [ -25.06666666, -130.1 ], "demonym": "Pitcairn Islander", "area": 47.0, "timezones": [ "UTC-08:00" ], "nativeName": "Pitcairn Islands", "numericCode": "612", "flags": { "svg": "https://flagcdn.com/pn.svg", "png": "https://flagcdn.com/w320/pn.png" }, "currencies": [ { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" }, { "code": "PND", "name": "Pitcairn Islands dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Pitcairn", "pt": "Ilhas Picárnia", "nl": "Pitcairneilanden", "hr": "Pitcairnovo otočje", "fa": "پیتکرن", "de": "Pitcairn", "es": "Islas Pitcairn", "fr": "Îles Pitcairn", "ja": "ピトケアン", "it": "Isole Pitcairn", "hu": "Pitcairn-szigetek" }, "flag": "https://flagcdn.com/pn.svg", "independent": true }, { "name": "Poland", "topLevelDomain": [ ".pl" ], "alpha2Code": "PL", "alpha3Code": "POL", "callingCodes": [ "48" ], "capital": "Warsaw", "altSpellings": [ "PL", "Republic of Poland", "Rzeczpospolita Polska" ], "subregion": "Central Europe", "region": "Europe", "population": 37950802, "latlng": [ 52.0, 20.0 ], "demonym": "Polish", "area": 312679.0, "gini": 30.2, "timezones": [ "UTC+01:00" ], "borders": [ "BLR", "CZE", "DEU", "LTU", "RUS", "SVK", "UKR" ], "nativeName": "Polska", "numericCode": "616", "flags": { "svg": "https://flagcdn.com/pl.svg", "png": "https://flagcdn.com/w320/pl.png" }, "currencies": [ { "code": "PLN", "name": "Polish złoty", "symbol": "zł" } ], "languages": [ { "iso639_1": "pl", "iso639_2": "pol", "name": "Polish", "nativeName": "język polski" } ], "translations": { "br": "Polonia", "pt": "Polónia", "nl": "Polen", "hr": "Poljska", "fa": "لهستان", "de": "Polen", "es": "Polonia", "fr": "Pologne", "ja": "ポーランド", "it": "Polonia", "hu": "Lengyelország" }, "flag": "https://flagcdn.com/pl.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "POL", "independent": true }, { "name": "Portugal", "topLevelDomain": [ ".pt" ], "alpha2Code": "PT", "alpha3Code": "PRT", "callingCodes": [ "351" ], "capital": "Lisbon", "altSpellings": [ "PT", "Portuguesa", "Portuguese Republic", "República Portuguesa" ], "subregion": "Southern Europe", "region": "Europe", "population": 10305564, "latlng": [ 39.5, -8.0 ], "demonym": "Portuguese", "area": 92090.0, "gini": 33.5, "timezones": [ "UTC-01:00", "UTC" ], "borders": [ "ESP" ], "nativeName": "Portugal", "numericCode": "620", "flags": { "svg": "https://flagcdn.com/pt.svg", "png": "https://flagcdn.com/w320/pt.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Portugal", "pt": "Portugal", "nl": "Portugal", "hr": "Portugal", "fa": "پرتغال", "de": "Portugal", "es": "Portugal", "fr": "Portugal", "ja": "ポルトガル", "it": "Portogallo", "hu": "Portugália" }, "flag": "https://flagcdn.com/pt.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "POR", "independent": true }, { "name": "Puerto Rico", "topLevelDomain": [ ".pr" ], "alpha2Code": "PR", "alpha3Code": "PRI", "callingCodes": [ "1" ], "capital": "San Juan", "altSpellings": [ "PR", "Commonwealth of Puerto Rico", "Estado Libre Asociado de Puerto Rico" ], "subregion": "Caribbean", "region": "Americas", "population": 3194034, "latlng": [ 18.25, -66.5 ], "demonym": "Puerto Rican", "area": 8870.0, "timezones": [ "UTC-04:00" ], "nativeName": "Puerto Rico", "numericCode": "630", "flags": { "svg": "https://flagcdn.com/pr.svg", "png": "https://flagcdn.com/w320/pr.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Puerto Rico", "pt": "Porto Rico", "nl": "Puerto Rico", "hr": "Portoriko", "fa": "پورتو ریکو", "de": "Puerto Rico", "es": "Puerto Rico", "fr": "Porto Rico", "ja": "プエルトリコ", "it": "Porto Rico", "hu": "Puerto Rico" }, "flag": "https://flagcdn.com/pr.svg", "cioc": "PUR", "independent": false }, { "name": "Qatar", "topLevelDomain": [ ".qa" ], "alpha2Code": "QA", "alpha3Code": "QAT", "callingCodes": [ "974" ], "capital": "Doha", "altSpellings": [ "QA", "State of Qatar", "Dawlat Qaṭar" ], "subregion": "Western Asia", "region": "Asia", "population": 2881060, "latlng": [ 25.5, 51.25 ], "demonym": "Qatari", "area": 11586.0, "timezones": [ "UTC+03:00" ], "borders": [ "SAU" ], "nativeName": "قطر", "numericCode": "634", "flags": { "svg": "https://flagcdn.com/qa.svg", "png": "https://flagcdn.com/w320/qa.png" }, "currencies": [ { "code": "QAR", "name": "Qatari riyal", "symbol": "ر.ق" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Katar", "pt": "Catar", "nl": "Qatar", "hr": "Katar", "fa": "قطر", "de": "Katar", "es": "Catar", "fr": "Qatar", "ja": "カタール", "it": "Qatar", "hu": "Katar" }, "flag": "https://flagcdn.com/qa.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "QAT", "independent": true }, { "name": "Republic of Kosovo", "topLevelDomain": [ "" ], "alpha2Code": "XK", "alpha3Code": "UNK", "callingCodes": [ "383" ], "capital": "Pristina", "altSpellings": [ "XK", "Република Косово" ], "subregion": "Eastern Europe", "region": "Europe", "population": 1775378, "latlng": [ 42.666667, 21.166667 ], "demonym": "Kosovar", "area": 10908.0, "gini": 29.0, "timezones": [ "UTC+01:00" ], "borders": [ "ALB", "MKD", "MNE", "SRB" ], "nativeName": "Republika e Kosovës", "numericCode": "926", "flags": { "svg": "https://flagcdn.com/xk.svg", "png": "https://flagcdn.com/w320/xk.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "sq", "iso639_2": "sqi", "name": "Albanian", "nativeName": "Shqip" }, { "iso639_1": "sr", "iso639_2": "srp", "name": "Serbian", "nativeName": "српски језик" } ], "translations": { "br": "Kosovo", "pt": "Kosovo", "nl": "Republiek van Kosovo", "hr": "Kosovo", "fa": "کوزوو", "de": "Republic of Kosovo", "es": "Kosovo", "fr": "Kosovo", "ja": "Republic of Kosovo", "it": "Republic of Kosovo", "hu": "Koszovó" }, "flag": "https://flagcdn.com/xk.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "independent": true }, { "name": "Réunion", "topLevelDomain": [ ".re" ], "alpha2Code": "RE", "alpha3Code": "REU", "callingCodes": [ "262" ], "capital": "Saint-Denis", "altSpellings": [ "RE", "Reunion" ], "subregion": "Eastern Africa", "region": "Africa", "population": 840974, "latlng": [ -21.15, 55.5 ], "demonym": "French", "timezones": [ "UTC+04:00" ], "nativeName": "La Réunion", "numericCode": "638", "flags": { "svg": "https://flagcdn.com/re.svg", "png": "https://flagcdn.com/w320/re.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Reünion", "pt": "Reunião", "nl": "Réunion", "hr": "Réunion", "fa": "رئونیون", "de": "Réunion", "es": "Reunión", "fr": "Réunion", "ja": "レユニオン", "it": "Riunione", "hu": "Réunion" }, "flag": "https://flagcdn.com/re.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": false }, { "name": "Romania", "topLevelDomain": [ ".ro" ], "alpha2Code": "RO", "alpha3Code": "ROU", "callingCodes": [ "40" ], "capital": "Bucharest", "altSpellings": [ "RO", "Rumania", "Roumania", "România" ], "subregion": "Eastern Europe", "region": "Europe", "population": 19286123, "latlng": [ 46.0, 25.0 ], "demonym": "Romanian", "area": 238391.0, "gini": 35.8, "timezones": [ "UTC+02:00" ], "borders": [ "BGR", "HUN", "MDA", "SRB", "UKR" ], "nativeName": "România", "numericCode": "642", "flags": { "svg": "https://flagcdn.com/ro.svg", "png": "https://flagcdn.com/w320/ro.png" }, "currencies": [ { "code": "RON", "name": "Romanian leu", "symbol": "lei" } ], "languages": [ { "iso639_1": "ro", "iso639_2": "ron", "name": "Romanian", "nativeName": "Română" } ], "translations": { "br": "Roumania", "pt": "Roménia", "nl": "Roemenië", "hr": "Rumunjska", "fa": "رومانی", "de": "Rumänien", "es": "Rumania", "fr": "Roumanie", "ja": "ルーマニア", "it": "Romania", "hu": "Románia" }, "flag": "https://flagcdn.com/ro.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "ROU", "independent": true }, { "name": "Russian Federation", "topLevelDomain": [ ".ru" ], "alpha2Code": "RU", "alpha3Code": "RUS", "callingCodes": [ "7" ], "capital": "Moscow", "altSpellings": [ "RU", "Rossiya", "Russian Federation", "Российская Федерация", "Rossiyskaya Federatsiya" ], "subregion": "Eastern Europe", "region": "Europe", "population": 144104080, "latlng": [ 60.0, 100.0 ], "demonym": "Russian", "area": 17124442.0, "gini": 37.5, "timezones": [ "UTC+03:00", "UTC+04:00", "UTC+06:00", "UTC+07:00", "UTC+08:00", "UTC+09:00", "UTC+10:00", "UTC+11:00", "UTC+12:00" ], "borders": [ "AZE", "BLR", "CHN", "EST", "FIN", "GEO", "KAZ", "PRK", "LVA", "LTU", "MNG", "NOR", "POL", "UKR" ], "nativeName": "Россия", "numericCode": "643", "flags": { "svg": "https://flagcdn.com/ru.svg", "png": "https://flagcdn.com/w320/ru.png" }, "currencies": [ { "code": "RUB", "name": "Russian ruble", "symbol": "₽" } ], "languages": [ { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Rusia", "pt": "Rússia", "nl": "Rusland", "hr": "Rusija", "fa": "روسیه", "de": "Russland", "es": "Rusia", "fr": "Russie", "ja": "ロシア連邦", "it": "Russia", "hu": "Oroszország" }, "flag": "https://flagcdn.com/ru.svg", "regionalBlocs": [ { "acronym": "EEU", "name": "Eurasian Economic Union", "otherAcronyms": [ "EAEU" ] } ], "cioc": "RUS", "independent": true }, { "name": "Rwanda", "topLevelDomain": [ ".rw" ], "alpha2Code": "RW", "alpha3Code": "RWA", "callingCodes": [ "250" ], "capital": "Kigali", "altSpellings": [ "RW", "Republic of Rwanda", "Repubulika y'u Rwanda", "République du Rwanda" ], "subregion": "Eastern Africa", "region": "Africa", "population": 12952209, "latlng": [ -2.0, 30.0 ], "demonym": "Rwandan", "area": 26338.0, "gini": 43.7, "timezones": [ "UTC+02:00" ], "borders": [ "BDI", "COD", "TZA", "UGA" ], "nativeName": "Rwanda", "numericCode": "646", "flags": { "svg": "https://flagcdn.com/rw.svg", "png": "https://flagcdn.com/w320/rw.png" }, "currencies": [ { "code": "RWF", "name": "Rwandan franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "rw", "iso639_2": "kin", "name": "Kinyarwanda", "nativeName": "Ikinyarwanda" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Rwanda", "pt": "Ruanda", "nl": "Rwanda", "hr": "Ruanda", "fa": "رواندا", "de": "Ruanda", "es": "Ruanda", "fr": "Rwanda", "ja": "ルワンダ", "it": "Ruanda", "hu": "Ruanda" }, "flag": "https://flagcdn.com/rw.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "RWA", "independent": true }, { "name": "Saint Barthélemy", "topLevelDomain": [ ".bl" ], "alpha2Code": "BL", "alpha3Code": "BLM", "callingCodes": [ "590" ], "capital": "Gustavia", "altSpellings": [ "BL", "St. Barthelemy", "Collectivity of Saint Barthélemy", "Collectivité de Saint-Barthélemy" ], "subregion": "Caribbean", "region": "Americas", "population": 9417, "latlng": [ 18.5, -63.41666666 ], "demonym": "Saint Barthélemy Islander", "area": 21.0, "timezones": [ "UTC-04:00" ], "nativeName": "Saint-Barthélemy", "numericCode": "652", "flags": { "svg": "https://flagcdn.com/bl.svg", "png": "https://flagcdn.com/w320/bl.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Saint-Barthélemy", "pt": "São Bartolomeu", "nl": "Saint Barthélemy", "hr": "Saint Barthélemy", "fa": "سن-بارتلمی", "de": "Saint-Barthélemy", "es": "San Bartolomé", "fr": "Saint-Barthélemy", "ja": "サン・バルテルミー", "it": "Antille Francesi", "hu": "Saint-Barthélemy" }, "flag": "https://flagcdn.com/bl.svg", "independent": false }, { "name": "Saint Helena, Ascension and Tristan da Cunha", "topLevelDomain": [ ".sh" ], "alpha2Code": "SH", "alpha3Code": "SHN", "callingCodes": [ "290" ], "capital": "Jamestown", "altSpellings": [ "SH" ], "subregion": "Western Africa", "region": "Africa", "population": 4255, "latlng": [ -15.95, -5.7 ], "demonym": "Saint Helenian", "timezones": [ "UTC+00:00" ], "nativeName": "Saint Helena", "numericCode": "654", "flags": { "svg": "https://flagcdn.com/sh.svg", "png": "https://flagcdn.com/w320/sh.png" }, "currencies": [ { "code": "SHP", "name": "Saint Helena pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Saint Helena, Ascension ha Tristan da Cunha", "pt": "Santa Helena", "nl": "Sint-Helena", "hr": "Sveta Helena", "fa": "سنت هلنا، اسنشن و تریستان دا کونا", "de": "Sankt Helena", "es": "Santa Helena", "fr": "Sainte-Hélène", "ja": "セントヘレナ・アセンションおよびトリスタンダクーニャ", "it": "Sant'Elena", "hu": "Szent Ilona" }, "flag": "https://flagcdn.com/sh.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": false }, { "name": "Saint Kitts and Nevis", "topLevelDomain": [ ".kn" ], "alpha2Code": "KN", "alpha3Code": "KNA", "callingCodes": [ "1" ], "capital": "Basseterre", "altSpellings": [ "KN", "Federation of Saint Christopher and Nevis" ], "subregion": "Caribbean", "region": "Americas", "population": 53192, "latlng": [ 17.33333333, -62.75 ], "demonym": "Kittian and Nevisian", "area": 261.0, "timezones": [ "UTC-04:00" ], "nativeName": "Saint Kitts and Nevis", "numericCode": "659", "flags": { "svg": "https://flagcdn.com/kn.svg", "png": "https://flagcdn.com/w320/kn.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Saint Kitts ha Nevis", "pt": "São Cristóvão e Neves", "nl": "Saint Kitts en Nevis", "hr": "Sveti Kristof i Nevis", "fa": "سنت کیتس و نویس", "de": "St. Kitts und Nevis", "es": "San Cristóbal y Nieves", "fr": "Saint-Christophe-et-Niévès", "ja": "セントクリストファー・ネイビス", "it": "Saint Kitts e Nevis", "hu": "Saint Kitts és Nevis" }, "flag": "https://flagcdn.com/kn.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "SKN", "independent": true }, { "name": "Saint Lucia", "topLevelDomain": [ ".lc" ], "alpha2Code": "LC", "alpha3Code": "LCA", "callingCodes": [ "1" ], "capital": "Castries", "altSpellings": [ "LC" ], "subregion": "Caribbean", "region": "Americas", "population": 183629, "latlng": [ 13.88333333, -60.96666666 ], "demonym": "Saint Lucian", "area": 616.0, "gini": 51.2, "timezones": [ "UTC-04:00" ], "nativeName": "Saint Lucia", "numericCode": "662", "flags": { "svg": "https://flagcdn.com/lc.svg", "png": "https://flagcdn.com/w320/lc.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Santez-Lusia", "pt": "Santa Lúcia", "nl": "Saint Lucia", "hr": "Sveta Lucija", "fa": "سنت لوسیا", "de": "Saint Lucia", "es": "Santa Lucía", "fr": "Saint-Lucie", "ja": "セントルシア", "it": "Santa Lucia", "hu": "Saint Lucia" }, "flag": "https://flagcdn.com/lc.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "LCA", "independent": true }, { "name": "Saint Martin (French part)", "topLevelDomain": [ ".mf", ".fr", ".gp" ], "alpha2Code": "MF", "alpha3Code": "MAF", "callingCodes": [ "590" ], "capital": "Marigot", "altSpellings": [ "MF", "Collectivity of Saint Martin", "Collectivité de Saint-Martin" ], "subregion": "Caribbean", "region": "Americas", "population": 38659, "latlng": [ 18.08333333, -63.95 ], "demonym": "Saint Martin Islander", "area": 53.0, "timezones": [ "UTC-04:00" ], "borders": [ "SXM", "NLD" ], "nativeName": "Saint-Martin", "numericCode": "663", "flags": { "svg": "https://flagcdn.com/mf.svg", "png": "https://flagcdn.com/w320/mf.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" } ], "translations": { "br": "Saint-Martin", "pt": "Ilha São Martinho", "nl": "Saint-Martin", "hr": "Sveti Martin", "fa": "سینت مارتن", "de": "Saint Martin", "es": "Saint Martin", "fr": "Saint-Martin", "ja": "サン・マルタン(フランス領)", "it": "Saint Martin", "hu": "Saint-Martin" }, "flag": "https://flagcdn.com/mf.svg", "independent": false }, { "name": "Saint Pierre and Miquelon", "topLevelDomain": [ ".pm" ], "alpha2Code": "PM", "alpha3Code": "SPM", "callingCodes": [ "508" ], "capital": "Saint-Pierre", "altSpellings": [ "PM", "Collectivité territoriale de Saint-Pierre-et-Miquelon" ], "subregion": "Northern America", "region": "Americas", "population": 6069, "latlng": [ 46.83333333, -56.33333333 ], "demonym": "French", "area": 242.0, "timezones": [ "UTC-03:00" ], "nativeName": "Saint-Pierre-et-Miquelon", "numericCode": "666", "flags": { "svg": "https://flagcdn.com/pm.svg", "png": "https://flagcdn.com/w320/pm.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Sant-Pêr-ha-Mikelon", "pt": "São Pedro e Miquelon", "nl": "Saint Pierre en Miquelon", "hr": "Sveti Petar i Mikelon", "fa": "سن پیر و میکلن", "de": "Saint-Pierre und Miquelon", "es": "San Pedro y Miquelón", "fr": "Saint-Pierre-et-Miquelon", "ja": "サンピエール島・ミクロン島", "it": "Saint-Pierre e Miquelon", "hu": "Saint-Pierre és Miquelon" }, "flag": "https://flagcdn.com/pm.svg", "independent": false }, { "name": "Saint Vincent and the Grenadines", "topLevelDomain": [ ".vc" ], "alpha2Code": "VC", "alpha3Code": "VCT", "callingCodes": [ "1" ], "capital": "Kingstown", "altSpellings": [ "VC" ], "subregion": "Caribbean", "region": "Americas", "population": 110947, "latlng": [ 13.25, -61.2 ], "demonym": "Saint Vincentian", "area": 389.0, "timezones": [ "UTC-04:00" ], "nativeName": "Saint Vincent and the Grenadines", "numericCode": "670", "flags": { "svg": "https://flagcdn.com/vc.svg", "png": "https://flagcdn.com/w320/vc.png" }, "currencies": [ { "code": "XCD", "name": "East Caribbean dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Sant-Visant hag ar Grenadinez", "pt": "São Vicente e Granadinas", "nl": "Saint Vincent en de Grenadines", "hr": "Sveti Vincent i Grenadini", "fa": "سنت وینسنت و گرنادین‌ها", "de": "Saint Vincent und die Grenadinen", "es": "San Vicente y Granadinas", "fr": "Saint-Vincent-et-les-Grenadines", "ja": "セントビンセントおよびグレナディーン諸島", "it": "Saint Vincent e Grenadine", "hu": "Saint Vincent és a Grenadine-szigetek" }, "flag": "https://flagcdn.com/vc.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "VIN", "independent": true }, { "name": "Samoa", "topLevelDomain": [ ".ws" ], "alpha2Code": "WS", "alpha3Code": "WSM", "callingCodes": [ "685" ], "capital": "Apia", "altSpellings": [ "WS", "Independent State of Samoa", "Malo Saʻoloto Tutoʻatasi o Sāmoa" ], "subregion": "Polynesia", "region": "Oceania", "population": 198410, "latlng": [ -13.58333333, -172.33333333 ], "demonym": "Samoan", "area": 2842.0, "gini": 38.7, "timezones": [ "UTC+13:00" ], "nativeName": "Samoa", "numericCode": "882", "flags": { "svg": "https://flagcdn.com/ws.svg", "png": "https://flagcdn.com/w320/ws.png" }, "currencies": [ { "code": "WST", "name": "Samoan tālā", "symbol": "T" } ], "languages": [ { "iso639_1": "sm", "iso639_2": "smo", "name": "Samoan", "nativeName": "gagana fa'a Samoa" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Samoa", "pt": "Samoa", "nl": "Samoa", "hr": "Samoa", "fa": "ساموآ", "de": "Samoa", "es": "Samoa", "fr": "Samoa", "ja": "サモア", "it": "Samoa", "hu": "Szamoa" }, "flag": "https://flagcdn.com/ws.svg", "cioc": "SAM", "independent": true }, { "name": "San Marino", "topLevelDomain": [ ".sm" ], "alpha2Code": "SM", "alpha3Code": "SMR", "callingCodes": [ "378" ], "capital": "City of San Marino", "altSpellings": [ "SM", "Republic of San Marino", "Repubblica di San Marino" ], "subregion": "Southern Europe", "region": "Europe", "population": 33938, "latlng": [ 43.76666666, 12.41666666 ], "demonym": "Sammarinese", "area": 61.0, "timezones": [ "UTC+01:00" ], "borders": [ "ITA" ], "nativeName": "San Marino", "numericCode": "674", "flags": { "svg": "https://flagcdn.com/sm.svg", "png": "https://flagcdn.com/w320/sm.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "it", "iso639_2": "ita", "name": "Italian", "nativeName": "Italiano" } ], "translations": { "br": "San Marino", "pt": "São Marinho", "nl": "San Marino", "hr": "San Marino", "fa": "سان مارینو", "de": "San Marino", "es": "San Marino", "fr": "Saint-Marin", "ja": "サンマリノ", "it": "San Marino", "hu": "San Marino" }, "flag": "https://flagcdn.com/sm.svg", "cioc": "SMR", "independent": true }, { "name": "Sao Tome and Principe", "topLevelDomain": [ ".st" ], "alpha2Code": "ST", "alpha3Code": "STP", "callingCodes": [ "239" ], "capital": "São Tomé", "altSpellings": [ "ST", "Democratic Republic of São Tomé and Príncipe", "República Democrática de São Tomé e Príncipe" ], "subregion": "Middle Africa", "region": "Africa", "population": 219161, "latlng": [ 1.0, 7.0 ], "demonym": "Sao Tomean", "area": 964.0, "gini": 56.3, "timezones": [ "UTC" ], "nativeName": "São Tomé e Príncipe", "numericCode": "678", "flags": { "svg": "https://flagcdn.com/st.svg", "png": "https://flagcdn.com/w320/st.png" }, "currencies": [ { "code": "STD", "name": "São Tomé and Príncipe dobra", "symbol": "Db" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "São Tomé ha Príncipe", "pt": "São Tomé e Príncipe", "nl": "Sao Tomé en Principe", "hr": "Sveti Toma i Princip", "fa": "کواترو دو فرویرو", "de": "São Tomé und Príncipe", "es": "Santo Tomé y Príncipe", "fr": "Sao Tomé-et-Principe", "ja": "サントメ・プリンシペ", "it": "São Tomé e Príncipe", "hu": "São Tomé és Príncipe" }, "flag": "https://flagcdn.com/st.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "STP", "independent": true }, { "name": "Saudi Arabia", "topLevelDomain": [ ".sa" ], "alpha2Code": "SA", "alpha3Code": "SAU", "callingCodes": [ "966" ], "capital": "Riyadh", "altSpellings": [ "SA", "Kingdom of Saudi Arabia", "Al-Mamlakah al-‘Arabiyyah as-Su‘ūdiyyah" ], "subregion": "Western Asia", "region": "Asia", "population": 34813867, "latlng": [ 25.0, 45.0 ], "demonym": "Saudi Arabian", "area": 2149690.0, "timezones": [ "UTC+03:00" ], "borders": [ "IRQ", "JOR", "KWT", "OMN", "QAT", "ARE", "YEM" ], "nativeName": "العربية السعودية", "numericCode": "682", "flags": { "svg": "https://flagcdn.com/sa.svg", "png": "https://flagcdn.com/w320/sa.png" }, "currencies": [ { "code": "SAR", "name": "Saudi riyal", "symbol": "ر.س" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Arabia Saoudat", "pt": "Arábia Saudita", "nl": "Saoedi-Arabië", "hr": "Saudijska Arabija", "fa": "عربستان سعودی", "de": "Saudi-Arabien", "es": "Arabia Saudí", "fr": "Arabie Saoudite", "ja": "サウジアラビア", "it": "Arabia Saudita", "hu": "Szaúd-Arábia" }, "flag": "https://flagcdn.com/sa.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "KSA", "independent": true }, { "name": "Senegal", "topLevelDomain": [ ".sn" ], "alpha2Code": "SN", "alpha3Code": "SEN", "callingCodes": [ "221" ], "capital": "Dakar", "altSpellings": [ "SN", "Republic of Senegal", "République du Sénégal" ], "subregion": "Western Africa", "region": "Africa", "population": 16743930, "latlng": [ 14.0, -14.0 ], "demonym": "Senegalese", "area": 196722.0, "gini": 40.3, "timezones": [ "UTC" ], "borders": [ "GMB", "GIN", "GNB", "MLI", "MRT" ], "nativeName": "Sénégal", "numericCode": "686", "flags": { "svg": "https://flagcdn.com/sn.svg", "png": "https://flagcdn.com/w320/sn.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Senegal", "pt": "Senegal", "nl": "Senegal", "hr": "Senegal", "fa": "سنگال", "de": "Senegal", "es": "Senegal", "fr": "Sénégal", "ja": "セネガル", "it": "Senegal", "hu": "Szenegál" }, "flag": "https://flagcdn.com/sn.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "SEN", "independent": true }, { "name": "Serbia", "topLevelDomain": [ ".rs" ], "alpha2Code": "RS", "alpha3Code": "SRB", "callingCodes": [ "381" ], "capital": "Belgrade", "altSpellings": [ "RS", "Srbija", "Republic of Serbia", "Република Србија", "Republika Srbija" ], "subregion": "Southern Europe", "region": "Europe", "population": 6908224, "latlng": [ 44.0, 21.0 ], "demonym": "Serbian", "area": 88361.0, "gini": 36.2, "timezones": [ "UTC+01:00" ], "borders": [ "BIH", "BGR", "HRV", "HUN", "UNK", "MKD", "MNE", "ROU" ], "nativeName": "Србија", "numericCode": "688", "flags": { "svg": "https://flagcdn.com/rs.svg", "png": "https://flagcdn.com/w320/rs.png" }, "currencies": [ { "code": "RSD", "name": "Serbian dinar", "symbol": "дин." } ], "languages": [ { "iso639_1": "sr", "iso639_2": "srp", "name": "Serbian", "nativeName": "српски језик" } ], "translations": { "br": "Serbia", "pt": "Sérvia", "nl": "Servië", "hr": "Srbija", "fa": "صربستان", "de": "Serbien", "es": "Serbia", "fr": "Serbie", "ja": "セルビア", "it": "Serbia", "hu": "Szerbia" }, "flag": "https://flagcdn.com/rs.svg", "regionalBlocs": [ { "acronym": "CEFTA", "name": "Central European Free Trade Agreement" } ], "cioc": "SRB", "independent": true }, { "name": "Seychelles", "topLevelDomain": [ ".sc" ], "alpha2Code": "SC", "alpha3Code": "SYC", "callingCodes": [ "248" ], "capital": "Victoria", "altSpellings": [ "SC", "Republic of Seychelles", "Repiblik Sesel", "République des Seychelles" ], "subregion": "Eastern Africa", "region": "Africa", "population": 98462, "latlng": [ -4.58333333, 55.66666666 ], "demonym": "Seychellois", "area": 452.0, "gini": 32.1, "timezones": [ "UTC+04:00" ], "nativeName": "Seychelles", "numericCode": "690", "flags": { "svg": "https://flagcdn.com/sc.svg", "png": "https://flagcdn.com/w320/sc.png" }, "currencies": [ { "code": "SCR", "name": "Seychellois rupee", "symbol": "₨" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Sechelez", "pt": "Seicheles", "nl": "Seychellen", "hr": "Sejšeli", "fa": "سیشل", "de": "Seychellen", "es": "Seychelles", "fr": "Seychelles", "ja": "セーシェル", "it": "Seychelles", "hu": "Seychelle-szigetek" }, "flag": "https://flagcdn.com/sc.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "SEY", "independent": true }, { "name": "Sierra Leone", "topLevelDomain": [ ".sl" ], "alpha2Code": "SL", "alpha3Code": "SLE", "callingCodes": [ "232" ], "capital": "Freetown", "altSpellings": [ "SL", "Republic of Sierra Leone" ], "subregion": "Western Africa", "region": "Africa", "population": 7976985, "latlng": [ 8.5, -11.5 ], "demonym": "Sierra Leonean", "area": 71740.0, "gini": 35.7, "timezones": [ "UTC" ], "borders": [ "GIN", "LBR" ], "nativeName": "Sierra Leone", "numericCode": "694", "flags": { "svg": "https://flagcdn.com/sl.svg", "png": "https://flagcdn.com/w320/sl.png" }, "currencies": [ { "code": "SLL", "name": "Sierra Leonean leone", "symbol": "Le" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Sierra Leone", "pt": "Serra Leoa", "nl": "Sierra Leone", "hr": "Sijera Leone", "fa": "سیرالئون", "de": "Sierra Leone", "es": "Sierra Leone", "fr": "Sierra Leone", "ja": "シエラレオネ", "it": "Sierra Leone", "hu": "Sierra Leone" }, "flag": "https://flagcdn.com/sl.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "SLE", "independent": true }, { "name": "Singapore", "topLevelDomain": [ ".sg" ], "alpha2Code": "SG", "alpha3Code": "SGP", "callingCodes": [ "65" ], "capital": "Singapore", "altSpellings": [ "SG", "Singapura", "Republik Singapura", "新加坡共和国" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 5685807, "latlng": [ 1.36666666, 103.8 ], "demonym": "Singaporean", "area": 710.0, "timezones": [ "UTC+08:00" ], "nativeName": "Singapore", "numericCode": "702", "flags": { "svg": "https://flagcdn.com/sg.svg", "png": "https://flagcdn.com/w320/sg.png" }, "currencies": [ { "code": "SGD", "name": "Singapore dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ms", "iso639_2": "msa", "name": "Malay", "nativeName": "bahasa Melayu" }, { "iso639_1": "ta", "iso639_2": "tam", "name": "Tamil", "nativeName": "தமிழ்" }, { "iso639_1": "zh", "iso639_2": "zho", "name": "Chinese", "nativeName": "中文 (Zhōngwén)" } ], "translations": { "br": "Singapour", "pt": "Singapura", "nl": "Singapore", "hr": "Singapur", "fa": "سنگاپور", "de": "Singapur", "es": "Singapur", "fr": "Singapour", "ja": "シンガポール", "it": "Singapore", "hu": "Szingapúr" }, "flag": "https://flagcdn.com/sg.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "SIN", "independent": true }, { "name": "Sint Maarten (Dutch part)", "topLevelDomain": [ ".sx" ], "alpha2Code": "SX", "alpha3Code": "SXM", "callingCodes": [ "1" ], "capital": "Philipsburg", "altSpellings": [ "SX" ], "subregion": "Caribbean", "region": "Americas", "population": 40812, "latlng": [ 18.033333, -63.05 ], "demonym": "Dutch", "area": 34.0, "timezones": [ "UTC-04:00" ], "borders": [ "MAF" ], "nativeName": "Sint Maarten", "numericCode": "534", "flags": { "svg": "https://flagcdn.com/sx.svg", "png": "https://flagcdn.com/w320/sx.png" }, "currencies": [ { "code": "ANG", "name": "Netherlands Antillean guilder", "symbol": "ƒ" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Sint Maarten", "pt": "São Martinho", "nl": "Sint Maarten", "hr": "Sint Maarten (Dutch part)", "fa": "سینت مارتن", "de": "Sint Maarten (niederl. Teil)", "es": "Sint Maarten (Dutch part)", "fr": "Saint Martin (partie néerlandaise)", "ja": "Sint Maarten (Dutch part)", "it": "Saint Martin (parte olandese)", "hu": "Sint Maarten" }, "flag": "https://flagcdn.com/sx.svg", "independent": false }, { "name": "Slovakia", "topLevelDomain": [ ".sk" ], "alpha2Code": "SK", "alpha3Code": "SVK", "callingCodes": [ "421" ], "capital": "Bratislava", "altSpellings": [ "SK", "Slovak Republic", "Slovenská republika" ], "subregion": "Central Europe", "region": "Europe", "population": 5458827, "latlng": [ 48.66666666, 19.5 ], "demonym": "Slovak", "area": 49037.0, "gini": 25.0, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "CZE", "HUN", "POL", "UKR" ], "nativeName": "Slovensko", "numericCode": "703", "flags": { "svg": "https://flagcdn.com/sk.svg", "png": "https://flagcdn.com/w320/sk.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "sk", "iso639_2": "slk", "name": "Slovak", "nativeName": "slovenčina" } ], "translations": { "br": "Slovakia", "pt": "Eslováquia", "nl": "Slowakije", "hr": "Slovačka", "fa": "اسلواکی", "de": "Slowakei", "es": "República Eslovaca", "fr": "Slovaquie", "ja": "スロバキア", "it": "Slovacchia", "hu": "Szlovákia" }, "flag": "https://flagcdn.com/sk.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "SVK", "independent": true }, { "name": "Slovenia", "topLevelDomain": [ ".si" ], "alpha2Code": "SI", "alpha3Code": "SVN", "callingCodes": [ "386" ], "capital": "Ljubljana", "altSpellings": [ "SI", "Republic of Slovenia", "Republika Slovenija" ], "subregion": "Southern Europe", "region": "Europe", "population": 2100126, "latlng": [ 46.11666666, 14.81666666 ], "demonym": "Slovene", "area": 20273.0, "gini": 24.6, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "HRV", "ITA", "HUN" ], "nativeName": "Slovenija", "numericCode": "705", "flags": { "svg": "https://flagcdn.com/si.svg", "png": "https://flagcdn.com/w320/si.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "sl", "iso639_2": "slv", "name": "Slovene", "nativeName": "slovenski jezik" } ], "translations": { "br": "Slovenia", "pt": "Eslovénia", "nl": "Slovenië", "hr": "Slovenija", "fa": "اسلوونی", "de": "Slowenien", "es": "Eslovenia", "fr": "Slovénie", "ja": "スロベニア", "it": "Slovenia", "hu": "Szlovénia" }, "flag": "https://flagcdn.com/si.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "SLO", "independent": true }, { "name": "Solomon Islands", "topLevelDomain": [ ".sb" ], "alpha2Code": "SB", "alpha3Code": "SLB", "callingCodes": [ "677" ], "capital": "Honiara", "altSpellings": [ "SB" ], "subregion": "Melanesia", "region": "Oceania", "population": 686878, "latlng": [ -8.0, 159.0 ], "demonym": "Solomon Islander", "area": 28896.0, "gini": 37.1, "timezones": [ "UTC+11:00" ], "nativeName": "Solomon Islands", "numericCode": "090", "flags": { "svg": "https://flagcdn.com/sb.svg", "png": "https://flagcdn.com/w320/sb.png" }, "currencies": [ { "code": "SBD", "name": "Solomon Islands dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Salomon", "pt": "Ilhas Salomão", "nl": "Salomonseilanden", "hr": "Solomonski Otoci", "fa": "جزایر سلیمان", "de": "Salomonen", "es": "Islas Salomón", "fr": "Îles Salomon", "ja": "ソロモン諸島", "it": "Isole Salomone", "hu": "Salamon-szigetek" }, "flag": "https://flagcdn.com/sb.svg", "cioc": "SOL", "independent": true }, { "name": "Somalia", "topLevelDomain": [ ".so" ], "alpha2Code": "SO", "alpha3Code": "SOM", "callingCodes": [ "252" ], "capital": "Mogadishu", "altSpellings": [ "SO", "aṣ-Ṣūmāl", "Federal Republic of Somalia", "Jamhuuriyadda Federaalka Soomaaliya", "Jumhūriyyat aṣ-Ṣūmāl al-Fiderāliyya" ], "subregion": "Eastern Africa", "region": "Africa", "population": 15893219, "latlng": [ 10.0, 49.0 ], "demonym": "Somali", "area": 637657.0, "gini": 36.8, "timezones": [ "UTC+03:00" ], "borders": [ "DJI", "ETH", "KEN" ], "nativeName": "Soomaaliya", "numericCode": "706", "flags": { "svg": "https://flagcdn.com/so.svg", "png": "https://flagcdn.com/w320/so.png" }, "currencies": [ { "code": "SOS", "name": "Somali shilling", "symbol": "Sh" } ], "languages": [ { "iso639_1": "so", "iso639_2": "som", "name": "Somali", "nativeName": "Soomaaliga" }, { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Somalia", "pt": "Somália", "nl": "Somalië", "hr": "Somalija", "fa": "سومالی", "de": "Somalia", "es": "Somalia", "fr": "Somalie", "ja": "ソマリア", "it": "Somalia", "hu": "Szomália" }, "flag": "https://flagcdn.com/so.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "SOM", "independent": true }, { "name": "South Africa", "topLevelDomain": [ ".za" ], "alpha2Code": "ZA", "alpha3Code": "ZAF", "callingCodes": [ "27" ], "capital": "Pretoria", "altSpellings": [ "ZA", "RSA", "Suid-Afrika", "Republic of South Africa" ], "subregion": "Southern Africa", "region": "Africa", "population": 59308690, "latlng": [ -29.0, 24.0 ], "demonym": "South African", "area": 1221037.0, "gini": 63.0, "timezones": [ "UTC+02:00" ], "borders": [ "BWA", "LSO", "MOZ", "NAM", "SWZ", "ZWE" ], "nativeName": "South Africa", "numericCode": "710", "flags": { "svg": "https://flagcdn.com/za.svg", "png": "https://flagcdn.com/w320/za.png" }, "currencies": [ { "code": "ZAR", "name": "South African rand", "symbol": "R" } ], "languages": [ { "iso639_1": "af", "iso639_2": "afr", "name": "Afrikaans", "nativeName": "Afrikaans" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "nr", "iso639_2": "nbl", "name": "Southern Ndebele", "nativeName": "isiNdebele" }, { "iso639_1": "st", "iso639_2": "sot", "name": "Southern Sotho", "nativeName": "Sesotho" }, { "iso639_1": "ss", "iso639_2": "ssw", "name": "Swati", "nativeName": "SiSwati" }, { "iso639_1": "tn", "iso639_2": "tsn", "name": "Tswana", "nativeName": "Setswana" }, { "iso639_1": "ts", "iso639_2": "tso", "name": "Tsonga", "nativeName": "Xitsonga" }, { "iso639_1": "ve", "iso639_2": "ven", "name": "Venda", "nativeName": "Tshivenḓa" }, { "iso639_1": "xh", "iso639_2": "xho", "name": "Xhosa", "nativeName": "isiXhosa" }, { "iso639_1": "zu", "iso639_2": "zul", "name": "Zulu", "nativeName": "isiZulu" } ], "translations": { "br": "Suafrika", "pt": "República Sul-Africana", "nl": "Zuid-Afrika", "hr": "Južnoafrička Republika", "fa": "آفریقای جنوبی", "de": "Republik Südafrika", "es": "República de Sudáfrica", "fr": "Afrique du Sud", "ja": "南アフリカ", "it": "Sud Africa", "hu": "Dél-afrikai Köztársaság" }, "flag": "https://flagcdn.com/za.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "RSA", "independent": true }, { "name": "South Georgia and the South Sandwich Islands", "topLevelDomain": [ ".gs" ], "alpha2Code": "GS", "alpha3Code": "SGS", "callingCodes": [ "500" ], "capital": "King Edward Point", "altSpellings": [ "GS", "South Georgia and the South Sandwich Islands" ], "subregion": "South America", "region": "Americas", "population": 30, "latlng": [ -54.5, -37.0 ], "demonym": "South Georgia and the South Sandwich Islander", "timezones": [ "UTC-02:00" ], "nativeName": "South Georgia", "numericCode": "239", "flags": { "svg": "https://flagcdn.com/gs.svg", "png": "https://flagcdn.com/w320/gs.png" }, "currencies": [ { "code": "FKP", "name": "Falkland Islands Pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Georgia ar Su hag Inizi Sandwich ar Su", "pt": "Ilhas Geórgia do Sul e Sanduíche do Sul", "nl": "Zuid-Georgia en Zuidelijke Sandwicheilanden", "hr": "Južna Georgija i otočje Južni Sandwich", "fa": "جزایر جورجیای جنوبی و ساندویچ جنوبی", "de": "Südgeorgien und die Südlichen Sandwichinseln", "es": "Islas Georgias del Sur y Sandwich del Sur", "fr": "Géorgie du Sud-et-les Îles Sandwich du Sud", "ja": "サウスジョージア・サウスサンドウィッチ諸島", "it": "Georgia del Sud e Isole Sandwich Meridionali", "hu": "Déli-Georgia és Déli-Sandwich-szigetek" }, "flag": "https://flagcdn.com/gs.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "independent": false }, { "name": "Korea (Republic of)", "topLevelDomain": [ ".kr" ], "alpha2Code": "KR", "alpha3Code": "KOR", "callingCodes": [ "82" ], "capital": "Seoul", "altSpellings": [ "KR", "Republic of Korea" ], "subregion": "Eastern Asia", "region": "Asia", "population": 51780579, "latlng": [ 37.0, 127.5 ], "demonym": "South Korean", "area": 100210.0, "gini": 31.4, "timezones": [ "UTC+09:00" ], "borders": [ "PRK" ], "nativeName": "대한민국", "numericCode": "410", "flags": { "svg": "https://flagcdn.com/kr.svg", "png": "https://flagcdn.com/w320/kr.png" }, "currencies": [ { "code": "KRW", "name": "South Korean won", "symbol": "₩" } ], "languages": [ { "iso639_1": "ko", "iso639_2": "kor", "name": "Korean", "nativeName": "한국어" } ], "translations": { "br": "Korea ar Su", "pt": "Coreia do Sul", "nl": "Zuid-Korea", "hr": "Južna Koreja", "fa": "کره شمالی", "de": "Südkorea", "es": "Corea del Sur", "fr": "Corée du Sud", "ja": "大韓民国", "it": "Corea del Sud", "hu": "Dél-Korea" }, "flag": "https://flagcdn.com/kr.svg", "cioc": "KOR", "independent": true }, { "name": "Spain", "topLevelDomain": [ ".es" ], "alpha2Code": "ES", "alpha3Code": "ESP", "callingCodes": [ "34" ], "capital": "Madrid", "altSpellings": [ "ES", "Kingdom of Spain", "Reino de España" ], "subregion": "Southern Europe", "region": "Europe", "population": 47351567, "latlng": [ 40.0, -4.0 ], "demonym": "Spanish", "area": 505992.0, "gini": 34.7, "timezones": [ "UTC", "UTC+01:00" ], "borders": [ "AND", "FRA", "GIB", "PRT", "MAR" ], "nativeName": "España", "numericCode": "724", "flags": { "svg": "https://flagcdn.com/es.svg", "png": "https://flagcdn.com/w320/es.png" }, "currencies": [ { "code": "EUR", "name": "Euro", "symbol": "€" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Spagn", "pt": "Espanha", "nl": "Spanje", "hr": "Španjolska", "fa": "اسپانیا", "de": "Spanien", "es": "España", "fr": "Espagne", "ja": "スペイン", "it": "Spagna", "hu": "Spanyolország" }, "flag": "https://flagcdn.com/es.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "ESP", "independent": true }, { "name": "Sri Lanka", "topLevelDomain": [ ".lk" ], "alpha2Code": "LK", "alpha3Code": "LKA", "callingCodes": [ "94" ], "capital": "Sri Jayawardenepura Kotte", "altSpellings": [ "LK", "ilaṅkai", "Democratic Socialist Republic of Sri Lanka" ], "subregion": "Southern Asia", "region": "Asia", "population": 21919000, "latlng": [ 7.0, 81.0 ], "demonym": "Sri Lankan", "area": 65610.0, "gini": 39.3, "timezones": [ "UTC+05:30" ], "borders": [ "IND" ], "nativeName": "śrī laṃkāva", "numericCode": "144", "flags": { "svg": "https://flagcdn.com/lk.svg", "png": "https://flagcdn.com/w320/lk.png" }, "currencies": [ { "code": "LKR", "name": "Sri Lankan rupee", "symbol": "Rs" } ], "languages": [ { "iso639_1": "si", "iso639_2": "sin", "name": "Sinhalese", "nativeName": "සිංහල" }, { "iso639_1": "ta", "iso639_2": "tam", "name": "Tamil", "nativeName": "தமிழ்" } ], "translations": { "br": "Sri Lanka", "pt": "Sri Lanka", "nl": "Sri Lanka", "hr": "Šri Lanka", "fa": "سری‌لانکا", "de": "Sri Lanka", "es": "Sri Lanka", "fr": "Sri Lanka", "ja": "スリランカ", "it": "Sri Lanka", "hu": "Srí Lanka" }, "flag": "https://flagcdn.com/lk.svg", "regionalBlocs": [ { "acronym": "SAARC", "name": "South Asian Association for Regional Cooperation" } ], "cioc": "SRI", "independent": true }, { "name": "Sudan", "topLevelDomain": [ ".sd" ], "alpha2Code": "SD", "alpha3Code": "SDN", "callingCodes": [ "249" ], "capital": "Khartoum", "altSpellings": [ "SD", "Republic of the Sudan", "Jumhūrīyat as-Sūdān" ], "subregion": "Northern Africa", "region": "Africa", "population": 43849269, "latlng": [ 15.0, 30.0 ], "demonym": "Sudanese", "area": 1886068.0, "gini": 34.2, "timezones": [ "UTC+03:00" ], "borders": [ "CAF", "TCD", "EGY", "ERI", "ETH", "LBY", "SSD" ], "nativeName": "السودان", "numericCode": "729", "flags": { "svg": "https://flagcdn.com/sd.svg", "png": "https://flagcdn.com/w320/sd.png" }, "currencies": [ { "code": "SDG", "name": "Sudanese pound", "symbol": "ج.س." } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Soudan", "pt": "Sudão", "nl": "Soedan", "hr": "Sudan", "fa": "سودان", "de": "Sudan", "es": "Sudán", "fr": "Soudan", "ja": "スーダン", "it": "Sudan", "hu": "Szudán" }, "flag": "https://flagcdn.com/sd.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "SUD", "independent": true }, { "name": "South Sudan", "topLevelDomain": [ ".ss" ], "alpha2Code": "SS", "alpha3Code": "SSD", "callingCodes": [ "211" ], "capital": "Juba", "altSpellings": [ "SS" ], "subregion": "Middle Africa", "region": "Africa", "population": 11193729, "latlng": [ 7.0, 30.0 ], "demonym": "South Sudanese", "area": 619745.0, "gini": 44.1, "timezones": [ "UTC+03:00" ], "borders": [ "CAF", "COD", "ETH", "KEN", "SDN", "UGA" ], "nativeName": "South Sudan", "numericCode": "728", "flags": { "svg": "https://flagcdn.com/ss.svg", "png": "https://flagcdn.com/w320/ss.png" }, "currencies": [ { "code": "SSP", "name": "South Sudanese pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Soudan ar Su", "pt": "Sudão do Sul", "nl": "Zuid-Soedan", "hr": "Južni Sudan", "fa": "سودان جنوبی", "de": "Südsudan", "es": "Sudán del Sur", "fr": "Soudan du Sud", "ja": "南スーダン", "it": "Sudan del sud", "hu": "Dél-Szudán" }, "flag": "https://flagcdn.com/ss.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "SSD", "independent": true }, { "name": "Suriname", "topLevelDomain": [ ".sr" ], "alpha2Code": "SR", "alpha3Code": "SUR", "callingCodes": [ "597" ], "capital": "Paramaribo", "altSpellings": [ "SR", "Sarnam", "Sranangron", "Republic of Suriname", "Republiek Suriname" ], "subregion": "South America", "region": "Americas", "population": 586634, "latlng": [ 4.0, -56.0 ], "demonym": "Surinamer", "area": 163820.0, "gini": 57.9, "timezones": [ "UTC-03:00" ], "borders": [ "BRA", "FRA", "GUF", "GUY" ], "nativeName": "Suriname", "numericCode": "740", "flags": { "svg": "https://flagcdn.com/sr.svg", "png": "https://flagcdn.com/w320/sr.png" }, "currencies": [ { "code": "SRD", "name": "Surinamese dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "nl", "iso639_2": "nld", "name": "Dutch", "nativeName": "Nederlands" } ], "translations": { "br": "Surinam", "pt": "Suriname", "nl": "Suriname", "hr": "Surinam", "fa": "سورینام", "de": "Suriname", "es": "Surinam", "fr": "Surinam", "ja": "スリナム", "it": "Suriname", "hu": "Suriname" }, "flag": "https://flagcdn.com/sr.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] }, { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "SUR", "independent": true }, { "name": "Svalbard and Jan Mayen", "topLevelDomain": [ ".sj" ], "alpha2Code": "SJ", "alpha3Code": "SJM", "callingCodes": [ "47" ], "capital": "Longyearbyen", "altSpellings": [ "SJ", "Svalbard and Jan Mayen Islands" ], "subregion": "Northern Europe", "region": "Europe", "population": 2562, "latlng": [ 78.0, 20.0 ], "demonym": "Norwegian", "timezones": [ "UTC+01:00" ], "nativeName": "Svalbard og Jan Mayen", "numericCode": "744", "flags": { "svg": "https://flagcdn.com/sj.svg", "png": "https://flagcdn.com/w320/sj.png" }, "currencies": [ { "code": "NOK", "name": "Norwegian krone", "symbol": "kr" } ], "languages": [ { "iso639_1": "no", "iso639_2": "nor", "name": "Norwegian", "nativeName": "Norsk" } ], "translations": { "br": "Svalbard ha Jan Mayen", "pt": "Svalbard", "nl": "Svalbard en Jan Mayen", "hr": "Svalbard i Jan Mayen", "fa": "سوالبارد و یان ماین", "de": "Svalbard und Jan Mayen", "es": "Islas Svalbard y Jan Mayen", "fr": "Svalbard et Jan Mayen", "ja": "スヴァールバル諸島およびヤンマイエン島", "it": "Svalbard e Jan Mayen", "hu": "Spitzbergák és Jan Mayen-szigetek" }, "flag": "https://flagcdn.com/sj.svg", "independent": false }, { "name": "Swaziland", "topLevelDomain": [ ".sz" ], "alpha2Code": "SZ", "alpha3Code": "SWZ", "callingCodes": [ "268" ], "capital": "Mbabane", "altSpellings": [ "SZ", "weSwatini", "Swatini", "Ngwane", "Kingdom of Swaziland", "Umbuso waseSwatini" ], "subregion": "Southern Africa", "region": "Africa", "population": 1160164, "latlng": [ -26.5, 31.5 ], "demonym": "Swazi", "area": 17364.0, "gini": 54.6, "timezones": [ "UTC+02:00" ], "borders": [ "MOZ", "ZAF" ], "nativeName": "Swaziland", "numericCode": "748", "flags": { "svg": "https://flagcdn.com/sz.svg", "png": "https://flagcdn.com/w320/sz.png" }, "currencies": [ { "code": "SZL", "name": "Swazi lilangeni", "symbol": "L" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "ss", "iso639_2": "ssw", "name": "Swati", "nativeName": "SiSwati" } ], "translations": { "br": "Eswatini", "pt": "Suazilândia", "nl": "Swaziland", "hr": "Svazi", "fa": "سوازیلند", "de": "Swasiland", "es": "Suazilandia", "fr": "Swaziland", "ja": "スワジランド", "it": "Swaziland", "hu": "Szváziföld" }, "flag": "https://flagcdn.com/sz.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "SWZ", "independent": true }, { "name": "Sweden", "topLevelDomain": [ ".se" ], "alpha2Code": "SE", "alpha3Code": "SWE", "callingCodes": [ "46" ], "capital": "Stockholm", "altSpellings": [ "SE", "Kingdom of Sweden", "Konungariket Sverige" ], "subregion": "Northern Europe", "region": "Europe", "population": 10353442, "latlng": [ 62.0, 15.0 ], "demonym": "Swedish", "area": 450295.0, "gini": 30.0, "timezones": [ "UTC+01:00" ], "borders": [ "FIN", "NOR" ], "nativeName": "Sverige", "numericCode": "752", "flags": { "svg": "https://flagcdn.com/se.svg", "png": "https://flagcdn.com/w320/se.png" }, "currencies": [ { "code": "SEK", "name": "Swedish krona", "symbol": "kr" } ], "languages": [ { "iso639_1": "sv", "iso639_2": "swe", "name": "Swedish", "nativeName": "svenska" } ], "translations": { "br": "Sveden", "pt": "Suécia", "nl": "Zweden", "hr": "Švedska", "fa": "سوئد", "de": "Schweden", "es": "Suecia", "fr": "Suède", "ja": "スウェーデン", "it": "Svezia", "hu": "Svédország" }, "flag": "https://flagcdn.com/se.svg", "regionalBlocs": [ { "acronym": "EU", "name": "European Union" } ], "cioc": "SWE", "independent": true }, { "name": "Switzerland", "topLevelDomain": [ ".ch" ], "alpha2Code": "CH", "alpha3Code": "CHE", "callingCodes": [ "41" ], "capital": "Bern", "altSpellings": [ "CH", "Swiss Confederation", "Schweiz", "Suisse", "Svizzera", "Svizra" ], "subregion": "Central Europe", "region": "Europe", "population": 8636896, "latlng": [ 47.0, 8.0 ], "demonym": "Swiss", "area": 41284.0, "gini": 33.1, "timezones": [ "UTC+01:00" ], "borders": [ "AUT", "FRA", "ITA", "LIE", "DEU" ], "nativeName": "Schweiz", "numericCode": "756", "flags": { "svg": "https://flagcdn.com/ch.svg", "png": "https://flagcdn.com/w320/ch.png" }, "currencies": [ { "code": "CHF", "name": "Swiss franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "de", "iso639_2": "deu", "name": "German", "nativeName": "Deutsch" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" }, { "iso639_1": "it", "iso639_2": "ita", "name": "Italian", "nativeName": "Italiano" }, { "iso639_2": "roh", "name": "Romansh" } ], "translations": { "br": "Suis", "pt": "Suíça", "nl": "Zwitserland", "hr": "Švicarska", "fa": "سوئیس", "de": "Schweiz", "es": "Suiza", "fr": "Suisse", "ja": "スイス", "it": "Svizzera", "hu": "Svájc" }, "flag": "https://flagcdn.com/ch.svg", "regionalBlocs": [ { "acronym": "EFTA", "name": "European Free Trade Association" } ], "cioc": "SUI", "independent": true }, { "name": "Syrian Arab Republic", "topLevelDomain": [ ".sy" ], "alpha2Code": "SY", "alpha3Code": "SYR", "callingCodes": [ "963" ], "capital": "Damascus", "altSpellings": [ "SY", "Syrian Arab Republic", "Al-Jumhūrīyah Al-ʻArabīyah As-Sūrīyah" ], "subregion": "Western Asia", "region": "Asia", "population": 17500657, "latlng": [ 35.0, 38.0 ], "demonym": "Syrian", "area": 185180.0, "gini": 37.5, "timezones": [ "UTC+02:00" ], "borders": [ "IRQ", "ISR", "JOR", "LBN", "TUR" ], "nativeName": "سوريا", "numericCode": "760", "flags": { "svg": "https://flagcdn.com/sy.svg", "png": "https://flagcdn.com/w320/sy.png" }, "currencies": [ { "code": "SYP", "name": "Syrian pound", "symbol": "£" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Siria", "pt": "Síria", "nl": "Syrië", "hr": "Sirija", "fa": "سوریه", "de": "Syrien", "es": "Siria", "fr": "Syrie", "ja": "シリア・アラブ共和国", "it": "Siria", "hu": "Szíria" }, "flag": "https://flagcdn.com/sy.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "SYR", "independent": true }, { "name": "Taiwan", "topLevelDomain": [ ".tw" ], "alpha2Code": "TW", "alpha3Code": "TWN", "callingCodes": [ "886" ], "capital": "Taipei", "altSpellings": [ "TW", "Táiwān", "Republic of China", "中華民國", "Zhōnghuá Mínguó" ], "subregion": "Eastern Asia", "region": "Asia", "population": 23503349, "latlng": [ 23.5, 121.0 ], "demonym": "Taiwanese", "area": 36193.0, "timezones": [ "UTC+08:00" ], "nativeName": "臺灣", "numericCode": "158", "flags": { "svg": "https://flagcdn.com/tw.svg", "png": "https://flagcdn.com/w320/tw.png" }, "currencies": [ { "code": "TWD", "name": "New Taiwan dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "zh", "iso639_2": "zho", "name": "Chinese", "nativeName": "中文 (Zhōngwén)" } ], "translations": { "br": "Taiwan", "pt": "Taiwan", "nl": "Taiwan", "hr": "Tajvan", "fa": "تایوان", "de": "Taiwan", "es": "Taiwán", "fr": "Taïwan", "ja": "台湾(中華民国)", "it": "Taiwan", "hu": "Tajvan" }, "flag": "https://flagcdn.com/tw.svg", "cioc": "TPE", "independent": true }, { "name": "Tajikistan", "topLevelDomain": [ ".tj" ], "alpha2Code": "TJ", "alpha3Code": "TJK", "callingCodes": [ "992" ], "capital": "Dushanbe", "altSpellings": [ "TJ", "Toçikiston", "Republic of Tajikistan", "Ҷумҳурии Тоҷикистон", "Çumhuriyi Toçikiston" ], "subregion": "Central Asia", "region": "Asia", "population": 9537642, "latlng": [ 39.0, 71.0 ], "demonym": "Tadzhik", "area": 143100.0, "gini": 34.0, "timezones": [ "UTC+05:00" ], "borders": [ "AFG", "CHN", "KGZ", "UZB" ], "nativeName": "Тоҷикистон", "numericCode": "762", "flags": { "svg": "https://flagcdn.com/tj.svg", "png": "https://flagcdn.com/w320/tj.png" }, "currencies": [ { "code": "TJS", "name": "Tajikistani somoni", "symbol": "ЅМ" } ], "languages": [ { "iso639_1": "tg", "iso639_2": "tgk", "name": "Tajik", "nativeName": "тоҷикӣ" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Tadjikistan", "pt": "Tajiquistão", "nl": "Tadzjikistan", "hr": "Tađikistan", "fa": "تاجیکستان", "de": "Tadschikistan", "es": "Tayikistán", "fr": "Tadjikistan", "ja": "タジキスタン", "it": "Tagikistan", "hu": "Tádzsikisztán" }, "flag": "https://flagcdn.com/tj.svg", "cioc": "TJK", "independent": true }, { "name": "Tanzania, United Republic of", "topLevelDomain": [ ".tz" ], "alpha2Code": "TZ", "alpha3Code": "TZA", "callingCodes": [ "255" ], "capital": "Dodoma", "altSpellings": [ "TZ", "United Republic of Tanzania", "Jamhuri ya Muungano wa Tanzania" ], "subregion": "Eastern Africa", "region": "Africa", "population": 59734213, "latlng": [ -6.0, 35.0 ], "demonym": "Tanzanian", "area": 945087.0, "gini": 40.5, "timezones": [ "UTC+03:00" ], "borders": [ "BDI", "COD", "KEN", "MWI", "MOZ", "RWA", "UGA", "ZMB" ], "nativeName": "Tanzania", "numericCode": "834", "flags": { "svg": "https://flagcdn.com/tz.svg", "png": "https://flagcdn.com/w320/tz.png" }, "currencies": [ { "code": "TZS", "name": "Tanzanian shilling", "symbol": "Sh" } ], "languages": [ { "iso639_1": "sw", "iso639_2": "swa", "name": "Swahili", "nativeName": "Kiswahili" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Tanzania", "pt": "Tanzânia", "nl": "Tanzania", "hr": "Tanzanija", "fa": "تانزانیا", "de": "Tansania", "es": "Tanzania", "fr": "Tanzanie", "ja": "タンザニア", "it": "Tanzania", "hu": "Tanzánia" }, "flag": "https://flagcdn.com/tz.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "TAN", "independent": true }, { "name": "Thailand", "topLevelDomain": [ ".th" ], "alpha2Code": "TH", "alpha3Code": "THA", "callingCodes": [ "66" ], "capital": "Bangkok", "altSpellings": [ "TH", "Prathet", "Thai", "Kingdom of Thailand", "ราชอาณาจักรไทย", "Ratcha Anachak Thai" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 69799978, "latlng": [ 15.0, 100.0 ], "demonym": "Thai", "area": 513120.0, "gini": 34.9, "timezones": [ "UTC+07:00" ], "borders": [ "MMR", "KHM", "LAO", "MYS" ], "nativeName": "ประเทศไทย", "numericCode": "764", "flags": { "svg": "https://flagcdn.com/th.svg", "png": "https://flagcdn.com/w320/th.png" }, "currencies": [ { "code": "THB", "name": "Thai baht", "symbol": "฿" } ], "languages": [ { "iso639_1": "th", "iso639_2": "tha", "name": "Thai", "nativeName": "ไทย" } ], "translations": { "br": "Thailand", "pt": "Tailândia", "nl": "Thailand", "hr": "Tajland", "fa": "تایلند", "de": "Thailand", "es": "Tailandia", "fr": "Thaïlande", "ja": "タイ", "it": "Tailandia", "hu": "Thaiföld" }, "flag": "https://flagcdn.com/th.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "THA", "independent": true }, { "name": "Timor-Leste", "topLevelDomain": [ ".tl" ], "alpha2Code": "TL", "alpha3Code": "TLS", "callingCodes": [ "670" ], "capital": "Dili", "altSpellings": [ "TL", "East Timor", "Democratic Republic of Timor-Leste", "República Democrática de Timor-Leste", "Repúblika Demokrátika Timór-Leste" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 1318442, "latlng": [ -8.83333333, 125.91666666 ], "demonym": "East Timorese", "area": 14874.0, "gini": 28.7, "timezones": [ "UTC+09:00" ], "borders": [ "IDN" ], "nativeName": "Timor-Leste", "numericCode": "626", "flags": { "svg": "https://flagcdn.com/tl.svg", "png": "https://flagcdn.com/w320/tl.png" }, "currencies": [ { "code": "USD", "name": "United States Dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "pt", "iso639_2": "por", "name": "Portuguese", "nativeName": "Português" } ], "translations": { "br": "Timor ar Reter", "pt": "Timor Leste", "nl": "Oost-Timor", "hr": "Istočni Timor", "fa": "تیمور شرقی", "de": "Timor-Leste", "es": "Timor Oriental", "fr": "Timor oriental", "ja": "東ティモール", "it": "Timor Est", "hu": "Kelet-Timor" }, "flag": "https://flagcdn.com/tl.svg", "cioc": "TLS", "independent": true }, { "name": "Togo", "topLevelDomain": [ ".tg" ], "alpha2Code": "TG", "alpha3Code": "TGO", "callingCodes": [ "228" ], "capital": "Lomé", "altSpellings": [ "TG", "Togolese", "Togolese Republic", "République Togolaise" ], "subregion": "Western Africa", "region": "Africa", "population": 8278737, "latlng": [ 8.0, 1.16666666 ], "demonym": "Togolese", "area": 56785.0, "gini": 43.1, "timezones": [ "UTC" ], "borders": [ "BEN", "BFA", "GHA" ], "nativeName": "Togo", "numericCode": "768", "flags": { "svg": "https://flagcdn.com/tg.svg", "png": "https://flagcdn.com/w320/tg.png" }, "currencies": [ { "code": "XOF", "name": "West African CFA franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Togo", "pt": "Togo", "nl": "Togo", "hr": "Togo", "fa": "توگو", "de": "Togo", "es": "Togo", "fr": "Togo", "ja": "トーゴ", "it": "Togo", "hu": "Togo" }, "flag": "https://flagcdn.com/tg.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "TOG", "independent": true }, { "name": "Tokelau", "topLevelDomain": [ ".tk" ], "alpha2Code": "TK", "alpha3Code": "TKL", "callingCodes": [ "690" ], "capital": "Fakaofo", "altSpellings": [ "TK" ], "subregion": "Polynesia", "region": "Oceania", "population": 1411, "latlng": [ -9.0, -172.0 ], "demonym": "Tokelauan", "area": 12.0, "timezones": [ "UTC+13:00" ], "nativeName": "Tokelau", "numericCode": "772", "flags": { "svg": "https://flagcdn.com/tk.svg", "png": "https://flagcdn.com/w320/tk.png" }, "currencies": [ { "code": "NZD", "name": "New Zealand dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Tokelau", "pt": "Toquelau", "nl": "Tokelau", "hr": "Tokelau", "fa": "توکلائو", "de": "Tokelau", "es": "Islas Tokelau", "fr": "Tokelau", "ja": "トケラウ", "it": "Isole Tokelau", "hu": "Tokelau-szigetek" }, "flag": "https://flagcdn.com/tk.svg", "independent": false }, { "name": "Tonga", "topLevelDomain": [ ".to" ], "alpha2Code": "TO", "alpha3Code": "TON", "callingCodes": [ "676" ], "capital": "Nuku'alofa", "altSpellings": [ "TO" ], "subregion": "Polynesia", "region": "Oceania", "population": 105697, "latlng": [ -20.0, -175.0 ], "demonym": "Tongan", "area": 747.0, "gini": 37.6, "timezones": [ "UTC+13:00" ], "nativeName": "Tonga", "numericCode": "776", "flags": { "svg": "https://flagcdn.com/to.svg", "png": "https://flagcdn.com/w320/to.png" }, "currencies": [ { "code": "TOP", "name": "Tongan paʻanga", "symbol": "T$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "to", "iso639_2": "ton", "name": "Tonga (Tonga Islands)", "nativeName": "faka Tonga" } ], "translations": { "br": "Tonga", "pt": "Tonga", "nl": "Tonga", "hr": "Tonga", "fa": "تونگا", "de": "Tonga", "es": "Tonga", "fr": "Tonga", "ja": "トンガ", "it": "Tonga", "hu": "Tonga" }, "flag": "https://flagcdn.com/to.svg", "cioc": "TGA", "independent": true }, { "name": "Trinidad and Tobago", "topLevelDomain": [ ".tt" ], "alpha2Code": "TT", "alpha3Code": "TTO", "callingCodes": [ "1" ], "capital": "Port of Spain", "altSpellings": [ "TT", "Republic of Trinidad and Tobago" ], "subregion": "Caribbean", "region": "Americas", "population": 1399491, "latlng": [ 11.0, -61.0 ], "demonym": "Trinidadian", "area": 5130.0, "gini": 40.3, "timezones": [ "UTC-04:00" ], "nativeName": "Trinidad and Tobago", "numericCode": "780", "flags": { "svg": "https://flagcdn.com/tt.svg", "png": "https://flagcdn.com/w320/tt.png" }, "currencies": [ { "code": "TTD", "name": "Trinidad and Tobago dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Trinidad ha Tobago", "pt": "Trindade e Tobago", "nl": "Trinidad en Tobago", "hr": "Trinidad i Tobago", "fa": "ترینیداد و توباگو", "de": "Trinidad und Tobago", "es": "Trinidad y Tobago", "fr": "Trinité et Tobago", "ja": "トリニダード・トバゴ", "it": "Trinidad e Tobago", "hu": "Trinidad és Tobago" }, "flag": "https://flagcdn.com/tt.svg", "regionalBlocs": [ { "acronym": "CARICOM", "name": "Caribbean Community", "otherNames": [ "Comunidad del Caribe", "Communauté Caribéenne", "Caribische Gemeenschap" ] } ], "cioc": "TTO", "independent": true }, { "name": "Tunisia", "topLevelDomain": [ ".tn" ], "alpha2Code": "TN", "alpha3Code": "TUN", "callingCodes": [ "216" ], "capital": "Tunis", "altSpellings": [ "TN", "Republic of Tunisia", "al-Jumhūriyyah at-Tūnisiyyah" ], "subregion": "Northern Africa", "region": "Africa", "population": 11818618, "latlng": [ 34.0, 9.0 ], "demonym": "Tunisian", "area": 163610.0, "gini": 32.8, "timezones": [ "UTC+01:00" ], "borders": [ "DZA", "LBY" ], "nativeName": "تونس", "numericCode": "788", "flags": { "svg": "https://flagcdn.com/tn.svg", "png": "https://flagcdn.com/w320/tn.png" }, "currencies": [ { "code": "TND", "name": "Tunisian dinar", "symbol": "د.ت" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Tunizia", "pt": "Tunísia", "nl": "Tunesië", "hr": "Tunis", "fa": "تونس", "de": "Tunesien", "es": "Túnez", "fr": "Tunisie", "ja": "チュニジア", "it": "Tunisia", "hu": "Tunézia" }, "flag": "https://flagcdn.com/tn.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] }, { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "TUN", "independent": true }, { "name": "Turkey", "topLevelDomain": [ ".tr" ], "alpha2Code": "TR", "alpha3Code": "TUR", "callingCodes": [ "90" ], "capital": "Ankara", "altSpellings": [ "TR", "Turkiye", "Republic of Turkey", "Türkiye Cumhuriyeti" ], "subregion": "Western Asia", "region": "Asia", "population": 84339067, "latlng": [ 39.0, 35.0 ], "demonym": "Turkish", "area": 783562.0, "gini": 41.9, "timezones": [ "UTC+03:00" ], "borders": [ "ARM", "AZE", "BGR", "GEO", "GRC", "IRN", "IRQ", "SYR" ], "nativeName": "Türkiye", "numericCode": "792", "flags": { "svg": "https://flagcdn.com/tr.svg", "png": "https://flagcdn.com/w320/tr.png" }, "currencies": [ { "code": "TRY", "name": "Turkish lira", "symbol": "₺" } ], "languages": [ { "iso639_1": "tr", "iso639_2": "tur", "name": "Turkish", "nativeName": "Türkçe" } ], "translations": { "br": "Turkia", "pt": "Turquia", "nl": "Turkije", "hr": "Turska", "fa": "ترکیه", "de": "Türkei", "es": "Turquía", "fr": "Turquie", "ja": "トルコ", "it": "Turchia", "hu": "Törökország" }, "flag": "https://flagcdn.com/tr.svg", "cioc": "TUR", "independent": true }, { "name": "Turkmenistan", "topLevelDomain": [ ".tm" ], "alpha2Code": "TM", "alpha3Code": "TKM", "callingCodes": [ "993" ], "capital": "Ashgabat", "altSpellings": [ "TM" ], "subregion": "Central Asia", "region": "Asia", "population": 6031187, "latlng": [ 40.0, 60.0 ], "demonym": "Turkmen", "area": 488100.0, "gini": 40.8, "timezones": [ "UTC+05:00" ], "borders": [ "AFG", "IRN", "KAZ", "UZB" ], "nativeName": "Türkmenistan", "numericCode": "795", "flags": { "svg": "https://flagcdn.com/tm.svg", "png": "https://flagcdn.com/w320/tm.png" }, "currencies": [ { "code": "TMT", "name": "Turkmenistan manat", "symbol": "m" } ], "languages": [ { "iso639_1": "tk", "iso639_2": "tuk", "name": "Turkmen", "nativeName": "Türkmen" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Turkmenistan", "pt": "Turquemenistão", "nl": "Turkmenistan", "hr": "Turkmenistan", "fa": "ترکمنستان", "de": "Turkmenistan", "es": "Turkmenistán", "fr": "Turkménistan", "ja": "トルクメニスタン", "it": "Turkmenistan", "hu": "Türkmenisztán" }, "flag": "https://flagcdn.com/tm.svg", "cioc": "TKM", "independent": true }, { "name": "Turks and Caicos Islands", "topLevelDomain": [ ".tc" ], "alpha2Code": "TC", "alpha3Code": "TCA", "callingCodes": [ "1" ], "capital": "Cockburn Town", "altSpellings": [ "TC" ], "subregion": "Caribbean", "region": "Americas", "population": 38718, "latlng": [ 21.75, -71.58333333 ], "demonym": "Turks and Caicos Islander", "area": 948.0, "timezones": [ "UTC-04:00" ], "nativeName": "Turks and Caicos Islands", "numericCode": "796", "flags": { "svg": "https://flagcdn.com/tc.svg", "png": "https://flagcdn.com/w320/tc.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Inizi Turks ha Caicos", "pt": "Ilhas Turcas e Caicos", "nl": "Turks- en Caicoseilanden", "hr": "Otoci Turks i Caicos", "fa": "جزایر تورکس و کایکوس", "de": "Turks- und Caicosinseln", "es": "Islas Turks y Caicos", "fr": "Îles Turques-et-Caïques", "ja": "タークス・カイコス諸島", "it": "Isole Turks e Caicos", "hu": "Turks- és Caicos-szigetek" }, "flag": "https://flagcdn.com/tc.svg", "independent": false }, { "name": "Tuvalu", "topLevelDomain": [ ".tv" ], "alpha2Code": "TV", "alpha3Code": "TUV", "callingCodes": [ "688" ], "capital": "Funafuti", "altSpellings": [ "TV" ], "subregion": "Polynesia", "region": "Oceania", "population": 11792, "latlng": [ -8.0, 178.0 ], "demonym": "Tuvaluan", "area": 26.0, "gini": 39.1, "timezones": [ "UTC+12:00" ], "nativeName": "Tuvalu", "numericCode": "798", "flags": { "svg": "https://flagcdn.com/tv.svg", "png": "https://flagcdn.com/w320/tv.png" }, "currencies": [ { "code": "AUD", "name": "Australian dollar", "symbol": "$" }, { "code": "TVD[G]", "name": "Tuvaluan dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Tuvalu", "pt": "Tuvalu", "nl": "Tuvalu", "hr": "Tuvalu", "fa": "تووالو", "de": "Tuvalu", "es": "Tuvalu", "fr": "Tuvalu", "ja": "ツバル", "it": "Tuvalu", "hu": "Tuvalu" }, "flag": "https://flagcdn.com/tv.svg", "cioc": "TUV", "independent": true }, { "name": "Uganda", "topLevelDomain": [ ".ug" ], "alpha2Code": "UG", "alpha3Code": "UGA", "callingCodes": [ "256" ], "capital": "Kampala", "altSpellings": [ "UG", "Republic of Uganda", "Jamhuri ya Uganda" ], "subregion": "Eastern Africa", "region": "Africa", "population": 45741000, "latlng": [ 1.0, 32.0 ], "demonym": "Ugandan", "area": 241550.0, "gini": 42.8, "timezones": [ "UTC+03:00" ], "borders": [ "COD", "KEN", "RWA", "SSD", "TZA" ], "nativeName": "Uganda", "numericCode": "800", "flags": { "svg": "https://flagcdn.com/ug.svg", "png": "https://flagcdn.com/w320/ug.png" }, "currencies": [ { "code": "UGX", "name": "Ugandan shilling", "symbol": "Sh" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "sw", "iso639_2": "swa", "name": "Swahili", "nativeName": "Kiswahili" } ], "translations": { "br": "Ouganda", "pt": "Uganda", "nl": "Oeganda", "hr": "Uganda", "fa": "اوگاندا", "de": "Uganda", "es": "Uganda", "fr": "Uganda", "ja": "ウガンダ", "it": "Uganda", "hu": "Uganda" }, "flag": "https://flagcdn.com/ug.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "UGA", "independent": true }, { "name": "Ukraine", "topLevelDomain": [ ".ua" ], "alpha2Code": "UA", "alpha3Code": "UKR", "callingCodes": [ "380" ], "capital": "Kyiv", "altSpellings": [ "UA", "Ukrayina" ], "subregion": "Eastern Europe", "region": "Europe", "population": 44134693, "latlng": [ 49.0, 32.0 ], "demonym": "Ukrainian", "area": 603700.0, "gini": 26.6, "timezones": [ "UTC+02:00" ], "borders": [ "BLR", "HUN", "MDA", "POL", "ROU", "RUS", "SVK" ], "nativeName": "Україна", "numericCode": "804", "flags": { "svg": "https://flagcdn.com/ua.svg", "png": "https://flagcdn.com/w320/ua.png" }, "currencies": [ { "code": "UAH", "name": "Ukrainian hryvnia", "symbol": "₴" } ], "languages": [ { "iso639_1": "uk", "iso639_2": "ukr", "name": "Ukrainian", "nativeName": "Українська" } ], "translations": { "br": "Ukraina", "pt": "Ucrânia", "nl": "Oekraïne", "hr": "Ukrajina", "fa": "وکراین", "de": "Ukraine", "es": "Ucrania", "fr": "Ukraine", "ja": "ウクライナ", "it": "Ucraina", "hu": "Ukrajna" }, "flag": "https://flagcdn.com/ua.svg", "cioc": "UKR", "independent": true }, { "name": "United Arab Emirates", "topLevelDomain": [ ".ae" ], "alpha2Code": "AE", "alpha3Code": "ARE", "callingCodes": [ "971" ], "capital": "Abu Dhabi", "altSpellings": [ "AE", "UAE" ], "subregion": "Western Asia", "region": "Asia", "population": 9890400, "latlng": [ 24.0, 54.0 ], "demonym": "Emirati", "area": 83600.0, "gini": 26.0, "timezones": [ "UTC+04:00" ], "borders": [ "OMN", "SAU" ], "nativeName": "دولة الإمارات العربية المتحدة", "numericCode": "784", "flags": { "svg": "https://flagcdn.com/ae.svg", "png": "https://flagcdn.com/w320/ae.png" }, "currencies": [ { "code": "AED", "name": "United Arab Emirates dirham", "symbol": "د.إ" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Emirelezhioù Arab Unanet", "pt": "Emirados árabes Unidos", "nl": "Verenigde Arabische Emiraten", "hr": "Ujedinjeni Arapski Emirati", "fa": "امارات متحده عربی", "de": "Vereinigte Arabische Emirate", "es": "Emiratos Árabes Unidos", "fr": "Émirats arabes unis", "ja": "アラブ首長国連邦", "it": "Emirati Arabi Uniti", "hu": "Egyesült Arab Emírségek" }, "flag": "https://flagcdn.com/ae.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "UAE", "independent": true }, { "name": "United Kingdom of Great Britain and Northern Ireland", "topLevelDomain": [ ".uk" ], "alpha2Code": "GB", "alpha3Code": "GBR", "callingCodes": [ "44" ], "capital": "London", "altSpellings": [ "GB", "UK", "Great Britain" ], "subregion": "Northern Europe", "region": "Europe", "population": 67215293, "latlng": [ 54.0, -2.0 ], "demonym": "British", "area": 242900.0, "gini": 35.1, "timezones": [ "UTC-08:00", "UTC-05:00", "UTC-04:00", "UTC-03:00", "UTC-02:00", "UTC", "UTC+01:00", "UTC+02:00", "UTC+06:00" ], "borders": [ "IRL" ], "nativeName": "United Kingdom", "numericCode": "826", "flags": { "svg": "https://flagcdn.com/gb.svg", "png": "https://flagcdn.com/w320/gb.png" }, "currencies": [ { "code": "GBP", "name": "British pound", "symbol": "£" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Rouantelezh-Unanet", "pt": "Reino Unido", "nl": "Verenigd Koninkrijk", "hr": "Ujedinjeno Kraljevstvo", "fa": "بریتانیای کبیر و ایرلند شمالی", "de": "Vereinigtes Königreich", "es": "Reino Unido", "fr": "Royaume-Uni", "ja": "イギリス", "it": "Regno Unito", "hu": "Nagy-Britannia" }, "flag": "https://flagcdn.com/gb.svg", "cioc": "GBR", "independent": true }, { "name": "United States of America", "topLevelDomain": [ ".us" ], "alpha2Code": "US", "alpha3Code": "USA", "callingCodes": [ "1" ], "capital": "Washington, D.C.", "altSpellings": [ "US", "USA", "United States of America" ], "subregion": "Northern America", "region": "Americas", "population": 329484123, "latlng": [ 38.0, -97.0 ], "demonym": "American", "area": 9629091.0, "gini": 41.4, "timezones": [ "UTC-12:00", "UTC-11:00", "UTC-10:00", "UTC-09:00", "UTC-08:00", "UTC-07:00", "UTC-06:00", "UTC-05:00", "UTC-04:00", "UTC+10:00", "UTC+12:00" ], "borders": [ "CAN", "MEX" ], "nativeName": "United States", "numericCode": "840", "flags": { "svg": "https://flagcdn.com/us.svg", "png": "https://flagcdn.com/w320/us.png" }, "currencies": [ { "code": "USD", "name": "United States dollar", "symbol": "$" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Stadoù-Unanet", "pt": "Estados Unidos", "nl": "Verenigde Staten", "hr": "Sjedinjene Američke Države", "fa": "ایالات متحده آمریکا", "de": "Vereinigte Staaten von Amerika", "es": "Estados Unidos", "fr": "États-Unis", "ja": "アメリカ合衆国", "it": "Stati Uniti D'America", "hu": "Amerikai Egyesült Államok" }, "flag": "https://flagcdn.com/us.svg", "regionalBlocs": [ { "acronym": "NAFTA", "name": "North American Free Trade Agreement", "otherNames": [ "Tratado de Libre Comercio de América del Norte", "Accord de Libre-échange Nord-Américain" ] } ], "cioc": "USA", "independent": true }, { "name": "Uruguay", "topLevelDomain": [ ".uy" ], "alpha2Code": "UY", "alpha3Code": "URY", "callingCodes": [ "598" ], "capital": "Montevideo", "altSpellings": [ "UY", "Oriental Republic of Uruguay", "República Oriental del Uruguay" ], "subregion": "South America", "region": "Americas", "population": 3473727, "latlng": [ -33.0, -56.0 ], "demonym": "Uruguayan", "area": 181034.0, "gini": 39.7, "timezones": [ "UTC-03:00" ], "borders": [ "ARG", "BRA" ], "nativeName": "Uruguay", "numericCode": "858", "flags": { "svg": "https://flagcdn.com/uy.svg", "png": "https://flagcdn.com/w320/uy.png" }, "currencies": [ { "code": "UYU", "name": "Uruguayan peso", "symbol": "$" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Uruguay", "pt": "Uruguai", "nl": "Uruguay", "hr": "Urugvaj", "fa": "اروگوئه", "de": "Uruguay", "es": "Uruguay", "fr": "Uruguay", "ja": "ウルグアイ", "it": "Uruguay", "hu": "Uruguay" }, "flag": "https://flagcdn.com/uy.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "URU", "independent": true }, { "name": "Uzbekistan", "topLevelDomain": [ ".uz" ], "alpha2Code": "UZ", "alpha3Code": "UZB", "callingCodes": [ "998" ], "capital": "Tashkent", "altSpellings": [ "UZ", "Republic of Uzbekistan", "O‘zbekiston Respublikasi", "Ўзбекистон Республикаси" ], "subregion": "Central Asia", "region": "Asia", "population": 34232050, "latlng": [ 41.0, 64.0 ], "demonym": "Uzbekistani", "area": 447400.0, "gini": 35.3, "timezones": [ "UTC+05:00" ], "borders": [ "AFG", "KAZ", "KGZ", "TJK", "TKM" ], "nativeName": "O‘zbekiston", "numericCode": "860", "flags": { "svg": "https://flagcdn.com/uz.svg", "png": "https://flagcdn.com/w320/uz.png" }, "currencies": [ { "code": "UZS", "name": "Uzbekistani so'm", "symbol": "so'm" } ], "languages": [ { "iso639_1": "uz", "iso639_2": "uzb", "name": "Uzbek", "nativeName": "Oʻzbek" }, { "iso639_1": "ru", "iso639_2": "rus", "name": "Russian", "nativeName": "Русский" } ], "translations": { "br": "Ouzbekistan", "pt": "Usbequistão", "nl": "Oezbekistan", "hr": "Uzbekistan", "fa": "ازبکستان", "de": "Usbekistan", "es": "Uzbekistán", "fr": "Ouzbékistan", "ja": "ウズベキスタン", "it": "Uzbekistan", "hu": "Üzbegisztán" }, "flag": "https://flagcdn.com/uz.svg", "cioc": "UZB", "independent": false }, { "name": "Vanuatu", "topLevelDomain": [ ".vu" ], "alpha2Code": "VU", "alpha3Code": "VUT", "callingCodes": [ "678" ], "capital": "Port Vila", "altSpellings": [ "VU", "Republic of Vanuatu", "Ripablik blong Vanuatu", "République de Vanuatu" ], "subregion": "Melanesia", "region": "Oceania", "population": 307150, "latlng": [ -16.0, 167.0 ], "demonym": "Ni-Vanuatu", "area": 12189.0, "gini": 37.6, "timezones": [ "UTC+11:00" ], "nativeName": "Vanuatu", "numericCode": "548", "flags": { "svg": "https://flagcdn.com/vu.svg", "png": "https://flagcdn.com/w320/vu.png" }, "currencies": [ { "code": "VUV", "name": "Vanuatu vatu", "symbol": "Vt" } ], "languages": [ { "iso639_1": "bi", "iso639_2": "bis", "name": "Bislama", "nativeName": "Bislama" }, { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Vanuatu", "pt": "Vanuatu", "nl": "Vanuatu", "hr": "Vanuatu", "fa": "وانواتو", "de": "Vanuatu", "es": "Vanuatu", "fr": "Vanuatu", "ja": "バヌアツ", "it": "Vanuatu", "hu": "Vanuatu" }, "flag": "https://flagcdn.com/vu.svg", "cioc": "VAN", "independent": true }, { "name": "Venezuela (Bolivarian Republic of)", "topLevelDomain": [ ".ve" ], "alpha2Code": "VE", "alpha3Code": "VEN", "callingCodes": [ "58" ], "capital": "Caracas", "altSpellings": [ "VE", "Bolivarian Republic of Venezuela", "República Bolivariana de Venezuela" ], "subregion": "South America", "region": "Americas", "population": 28435943, "latlng": [ 8.0, -66.0 ], "demonym": "Venezuelan", "area": 916445.0, "gini": 44.8, "timezones": [ "UTC-04:00" ], "borders": [ "BRA", "COL", "GUY" ], "nativeName": "Venezuela", "numericCode": "862", "flags": { "svg": "https://flagcdn.com/ve.svg", "png": "https://flagcdn.com/w320/ve.png" }, "currencies": [ { "code": "VEF", "name": "Venezuelan bolívar", "symbol": "Bs S" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Venezuela", "pt": "Venezuela", "nl": "Venezuela", "hr": "Venezuela", "fa": "ونزوئلا", "de": "Venezuela", "es": "Venezuela", "fr": "Venezuela", "ja": "ベネズエラ・ボリバル共和国", "it": "Venezuela", "hu": "Venezuela" }, "flag": "https://flagcdn.com/ve.svg", "regionalBlocs": [ { "acronym": "USAN", "name": "Union of South American Nations", "otherAcronyms": [ "UNASUR", "UNASUL", "UZAN" ], "otherNames": [ "Unión de Naciones Suramericanas", "União de Nações Sul-Americanas", "Unie van Zuid-Amerikaanse Naties", "South American Union" ] } ], "cioc": "VEN", "independent": true }, { "name": "Vietnam", "topLevelDomain": [ ".vn" ], "alpha2Code": "VN", "alpha3Code": "VNM", "callingCodes": [ "84" ], "capital": "Hanoi", "altSpellings": [ "VN", "Socialist Republic of Vietnam", "Cộng hòa Xã hội chủ nghĩa Việt Nam" ], "subregion": "South-Eastern Asia", "region": "Asia", "population": 97338583, "latlng": [ 16.16666666, 107.83333333 ], "demonym": "Vietnamese", "area": 331212.0, "gini": 35.7, "timezones": [ "UTC+07:00" ], "borders": [ "KHM", "CHN", "LAO" ], "nativeName": "Việt Nam", "numericCode": "704", "flags": { "svg": "https://flagcdn.com/vn.svg", "png": "https://flagcdn.com/w320/vn.png" }, "currencies": [ { "code": "VND", "name": "Vietnamese đồng", "symbol": "₫" } ], "languages": [ { "iso639_1": "vi", "iso639_2": "vie", "name": "Vietnamese", "nativeName": "Tiếng Việt" } ], "translations": { "br": "Viêt Nam", "pt": "Vietname", "nl": "Vietnam", "hr": "Vijetnam", "fa": "ویتنام", "de": "Vietnam", "es": "Vietnam", "fr": "Viêt Nam", "ja": "ベトナム", "it": "Vietnam", "hu": "Vietnám" }, "flag": "https://flagcdn.com/vn.svg", "regionalBlocs": [ { "acronym": "ASEAN", "name": "Association of Southeast Asian Nations" } ], "cioc": "VIE", "independent": true }, { "name": "Wallis and Futuna", "topLevelDomain": [ ".wf" ], "alpha2Code": "WF", "alpha3Code": "WLF", "callingCodes": [ "681" ], "capital": "Mata-Utu", "altSpellings": [ "WF", "Territory of the Wallis and Futuna Islands", "Territoire des îles Wallis et Futuna" ], "subregion": "Polynesia", "region": "Oceania", "population": 11750, "latlng": [ -13.3, -176.2 ], "demonym": "Wallis and Futuna Islander", "area": 142.0, "timezones": [ "UTC+12:00" ], "nativeName": "Wallis et Futuna", "numericCode": "876", "flags": { "svg": "https://flagcdn.com/wf.svg", "png": "https://flagcdn.com/w320/wf.png" }, "currencies": [ { "code": "XPF", "name": "CFP franc", "symbol": "Fr" } ], "languages": [ { "iso639_1": "fr", "iso639_2": "fra", "name": "French", "nativeName": "français" } ], "translations": { "br": "Wallis ha Futuna", "pt": "Wallis e Futuna", "nl": "Wallis en Futuna", "hr": "Wallis i Fortuna", "fa": "والیس و فوتونا", "de": "Wallis und Futuna", "es": "Wallis y Futuna", "fr": "Wallis-et-Futuna", "ja": "ウォリス・フツナ", "it": "Wallis e Futuna", "hu": "Wallis és Futuna" }, "flag": "https://flagcdn.com/wf.svg", "independent": false }, { "name": "Western Sahara", "topLevelDomain": [ ".eh" ], "alpha2Code": "EH", "alpha3Code": "ESH", "callingCodes": [ "212" ], "capital": "El Aaiún", "altSpellings": [ "EH", "Taneẓroft Tutrimt" ], "subregion": "Northern Africa", "region": "Africa", "population": 510713, "latlng": [ 24.5, -13.0 ], "demonym": "Sahrawi", "area": 266000.0, "timezones": [ "UTC+00:00" ], "borders": [ "DZA", "MRT", "MAR" ], "nativeName": "الصحراء الغربية", "numericCode": "732", "flags": { "svg": "https://flagcdn.com/eh.svg", "png": "https://flagcdn.com/w320/eh.png" }, "currencies": [ { "code": "MAD", "name": "Moroccan dirham", "symbol": "د.م." }, { "code": "DZD", "name": "Algerian dinar", "symbol": "د.ج" } ], "languages": [ { "iso639_1": "es", "iso639_2": "spa", "name": "Spanish", "nativeName": "Español" } ], "translations": { "br": "Sahara ar C'hornôg", "pt": "Saara Ocidental", "nl": "Westelijke Sahara", "hr": "Zapadna Sahara", "fa": "جمهوری دموکراتیک عربی صحرا", "de": "Westsahara", "es": "Sahara Occidental", "fr": "Sahara Occidental", "ja": "西サハラ", "it": "Sahara Occidentale", "hu": "Nyugat-Szahara" }, "flag": "https://flagcdn.com/eh.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "independent": false }, { "name": "Yemen", "topLevelDomain": [ ".ye" ], "alpha2Code": "YE", "alpha3Code": "YEM", "callingCodes": [ "967" ], "capital": "Sana'a", "altSpellings": [ "YE", "Yemeni Republic", "al-Jumhūriyyah al-Yamaniyyah" ], "subregion": "Western Asia", "region": "Asia", "population": 29825968, "latlng": [ 15.0, 48.0 ], "demonym": "Yemeni", "area": 527968.0, "gini": 36.7, "timezones": [ "UTC+03:00" ], "borders": [ "OMN", "SAU" ], "nativeName": "اليَمَن", "numericCode": "887", "flags": { "svg": "https://flagcdn.com/ye.svg", "png": "https://flagcdn.com/w320/ye.png" }, "currencies": [ { "code": "YER", "name": "Yemeni rial", "symbol": "﷼" } ], "languages": [ { "iso639_1": "ar", "iso639_2": "ara", "name": "Arabic", "nativeName": "العربية" } ], "translations": { "br": "Yemen", "pt": "Iémen", "nl": "Jemen", "hr": "Jemen", "fa": "یمن", "de": "Jemen", "es": "Yemen", "fr": "Yémen", "ja": "イエメン", "it": "Yemen", "hu": "Jemen" }, "flag": "https://flagcdn.com/ye.svg", "regionalBlocs": [ { "acronym": "AL", "name": "Arab League", "otherNames": [ "جامعة الدول العربية", "Jāmiʻat ad-Duwal al-ʻArabīyah", "League of Arab States" ] } ], "cioc": "YEM", "independent": true }, { "name": "Zambia", "topLevelDomain": [ ".zm" ], "alpha2Code": "ZM", "alpha3Code": "ZMB", "callingCodes": [ "260" ], "capital": "Lusaka", "altSpellings": [ "ZM", "Republic of Zambia" ], "subregion": "Eastern Africa", "region": "Africa", "population": 18383956, "latlng": [ -15.0, 30.0 ], "demonym": "Zambian", "area": 752618.0, "gini": 57.1, "timezones": [ "UTC+02:00" ], "borders": [ "AGO", "BWA", "COD", "MWI", "MOZ", "NAM", "TZA", "ZWE" ], "nativeName": "Zambia", "numericCode": "894", "flags": { "svg": "https://flagcdn.com/zm.svg", "png": "https://flagcdn.com/w320/zm.png" }, "currencies": [ { "code": "ZMW", "name": "Zambian kwacha", "symbol": "ZK" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" } ], "translations": { "br": "Zambia", "pt": "Zâmbia", "nl": "Zambia", "hr": "Zambija", "fa": "زامبیا", "de": "Sambia", "es": "Zambia", "fr": "Zambie", "ja": "ザンビア", "it": "Zambia", "hu": "Zambia" }, "flag": "https://flagcdn.com/zm.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "ZAM", "independent": true }, { "name": "Zimbabwe", "topLevelDomain": [ ".zw" ], "alpha2Code": "ZW", "alpha3Code": "ZWE", "callingCodes": [ "263" ], "capital": "Harare", "altSpellings": [ "ZW", "Republic of Zimbabwe" ], "subregion": "Southern Africa", "region": "Africa", "population": 14862927, "latlng": [ -20.0, 30.0 ], "demonym": "Zimbabwean", "area": 390757.0, "gini": 50.3, "timezones": [ "UTC+02:00" ], "borders": [ "BWA", "MOZ", "ZAF", "ZMB" ], "nativeName": "Zimbabwe", "numericCode": "716", "flags": { "svg": "https://flagcdn.com/zw.svg", "png": "https://flagcdn.com/w320/zw.png" }, "currencies": [ { "code": "ZMW", "name": "Zambian kwacha", "symbol": "K" } ], "languages": [ { "iso639_1": "en", "iso639_2": "eng", "name": "English", "nativeName": "English" }, { "iso639_1": "sn", "iso639_2": "sna", "name": "Shona", "nativeName": "chiShona" }, { "iso639_1": "nd", "iso639_2": "nde", "name": "Northern Ndebele", "nativeName": "isiNdebele" } ], "translations": { "br": "Zimbabwe", "pt": "Zimbabué", "nl": "Zimbabwe", "hr": "Zimbabve", "fa": "زیمباوه", "de": "Simbabwe", "es": "Zimbabue", "fr": "Zimbabwe", "ja": "ジンバブエ", "it": "Zimbabwe", "hu": "Zimbabwe" }, "flag": "https://flagcdn.com/zw.svg", "regionalBlocs": [ { "acronym": "AU", "name": "African Union", "otherNames": [ "الاتحاد الأفريقي", "Union africaine", "União Africana", "Unión Africana", "Umoja wa Afrika" ] } ], "cioc": "ZIM", "independent": true } ] ================================================ FILE: data/donald_speech.txt ================================================ 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. ================================================ FILE: data/email_exchanges.txt ================================================ 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. ================================================ FILE: data/email_exchanges_big.txt ================================================ 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. ================================================ FILE: data/fortune1000_final.csv ================================================ rank,title,Previous Rank,Revenues ($M),Revenue Change,Profits ($M),Profit Change,Assets ($M),Mkt Value as of 3/29/18 ($M),Employees,CEO,CEO Title,Sector,Industry,Years on Fortune 500 List,City,State,Latitude,Longitude 1,Walmart,1,"$500,343 ",3.00%,"$9,862.00 ",-27.70%,"$204,522 ","$263,563 ","2,300,000",C. Douglas McMillon,"President, Chief Executive Officer & Director",Retailing,General Merchandisers,24,Bentonville,AR,36.3728538,-94.2088172 2,Exxon Mobil,4,"$244,363 ",17.40%,"$19,710.00 ",151.40%,"$348,691 ","$316,157 ","71,200",Darren W. Woods,Chairman & Chief Executive Officer,Energy,Petroleum Refining,24,Irving,TX,32.8140177,-96.9488945 3,Berkshire Hathaway,2,"$242,137 ",8.30%,"$44,940.00 ",86.70%,"$702,095 ","$492,008 ","377,000",Warren E. Buffett,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Stock),24,Omaha,NE,41.2565369,-95.9345034 4,Apple,3,"$229,234 ",6.30%,"$48,351.00 ",5.80%,"$375,319 ","$851,318 ","123,000",Timothy D. Cook,Chairman & Chief Executive Officer,Technology,"Computers, Office Equipment",24,Cupertino,CA,37.3229978,-122.0321823 5,UnitedHealth Group,6,"$201,159 ",8.80%,"$10,558.00 ",50.50%,"$139,058 ","$207,080 ","260,000",David S. Wichmann,Chairman & Chief Executive Officer,Health Care,Health Care: Insurance and Managed Care,24,Minnetonka,MN,44.9211836,-93.4687489 6,McKesson,5,"$198,533 ",3.10%,"$5,070.00 ",124.50%,"$60,969 ","$29,067 ","64,500",John H. Hammergren,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Health Care,24,SF,CA,37.7749295,-122.4194155 7,CVS Health,7,"$184,765 ",4.10%,"$6,622.00 ",24.50%,"$95,131 ","$63,114 ","203,000",Larry J. Merlo,"President, Chief Executive Officer & Director",Health Care,Health Care: Pharmacy and Other Services,24,Woonsocket,RI,42.0028761,-71.5147839 8,Amazon.com,12,"$177,866 ",30.80%,"$3,033.00 ",27.90%,"$131,310 ","$700,668 ","566,000",Jeffrey P. Bezos,"Chairman, President & Chief Executive Officer",Retailing,Internet Services and Retailing,17,Seattle,WA,47.6062095,-122.3320708 9,AT&T,9,"$160,546 ",-2.00%,"$29,450.00 ",127.00%,"$444,097 ","$218,946 ","254,000",Randall L. Stephenson,"Chairman, President & Chief Executive Officer",Telecommunications,Telecommunications,24,Dallas,TX,32.7766642,-96.7969879 10,General Motors,8,"$157,311 ",-5.50%,"($3,864.00)",-141.00%,"$212,482 ","$50,972 ","180,000",Mary T. Barra,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,24,Detroit,MI,42.331427,-83.0457538 11,Ford Motor,10,"$156,776 ",3.30%,"$7,602.00 ",65.40%,"$257,808 ","$44,244 ","202,000",James P. Hackett,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,24,Dearborn,MI,42.3222599,-83.1763145 12,AmerisourceBergen,11,"$153,144 ",4.30%,$364.50 ,-74.50%,"$35,317 ","$18,938 ","19,500",Steven H. Collis,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Health Care,24,Chesterbrook,PA,40.0756627,-75.4590816 13,Chevron,19,"$134,533 ",25.10%,"$9,195.00 ",-,"$253,806 ","$217,845 ","51,900",Michael K. Wirth,Chairman & Chief Executive Officer,Energy,Petroleum Refining,24,San Ramon,CA,37.7799273,-121.9780153 14,Cardinal Health,15,"$129,976 ",6.90%,"$1,288.00 ",-9.70%,"$40,112 ","$19,726 ","40,400",Michael C. Kaufmann,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Health Care,24,Dublin,OH,40.0992294,-83.1140771 15,Costco,16,"$129,025 ",8.70%,"$2,679.00 ",14.00%,"$36,347 ","$82,687 ","182,000",W. Craig Jelinek,"President, Chief Executive Officer & Director",Retailing,General Merchandisers,24,Issaquah,WA,47.5301011,-122.0326191 16,Verizon,14,"$126,034 ",0.00%,"$30,101.00 ",129.30%,"$257,143 ","$197,497 ","155,400",Lowell C. McAdam,Chairman & Chief Executive Officer,Telecommunications,Telecommunications,24,New York,NY,40.7127753,-74.0059728 17,Kroger,18,"$122,662 ",6.40%,"$1,907.00 ",-3.40%,"$37,197 ","$20,828 ","449,000",W. Rodney McMullen,Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,24,Cincinnati,OH,39.1031182,-84.5120196 18,General Electric,13,"$122,274 ",-3.50%,"($5,786.00)",-165.50%,"$377,945 ","$117,054 ","313,000",John L. Flannery Jr.,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,24,Boston,MA,42.3600825,-71.0588801 19,Walgreens Boots Alliance,17,"$118,214 ",0.70%,"$4,078.00 ",-2.30%,"$66,009 ","$64,924 ","290,000",Stefano Pessina,Vice Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,24,Deerfield,IL,42.1711365,-87.8445119 20,JPMorgan Chase,21,"$113,899 ",8.00%,"$24,441.00 ",-1.20%,"$2,533,600 ","$375,043 ","252,539",James Dimon,Chairman & Chief Executive Officer,Financials,Commercial Banks,24,New York,NY,40.7127753,-74.0059728 21,Fannie Mae,20,"$112,394 ",4.90%,"$2,463.00 ",-80.00%,"$3,345,529 ","$1,633 ","7,200",Timothy J. Mayopoulos,"President, Chief Executive Officer & Director",Financials,Diversified Financials,21,Leavenworth,WA,47.7510741,-120.7401385 22,Alphabet,27,"$110,855 ",22.80%,"$12,662.00 ",-35.00%,"$197,295 ","$719,124 ","80,110",Larry Page,Chief Executive Officer & Director,Technology,Internet Services and Retailing,13,Mountain View,CA,37.3860517,-122.0838511 23,Home Depot,23,"$100,904 ",6.70%,"$8,630.00 ",8.50%,"$44,529 ","$206,272 ","413,000",Craig A. Menear,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Other,24,Atlanta,GA,33.7489954,-84.3879824 24,Bank of America Corp.,26,"$100,264 ",7.00%,"$18,232.00 ",1.80%,"$2,281,234 ","$306,618 ","209,376",Brian T. Moynihan,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,24,Charlotte,NC,35.2270869,-80.8431267 25,Express Scripts Holding,22,"$100,065 ",-0.20%,"$4,517.40 ",32.70%,"$54,256 ","$38,791 ","26,600",Timothy C. Wentworth,"President, Chief Executive Officer & Director",Health Care,Health Care: Pharmacy and Other Services,19,St. Louis,MO,38.6270025,-90.1994042 26,Wells Fargo,25,"$97,741 ",3.80%,"$22,183.00 ",1.10%,"$1,951,757 ","$255,556 ","262,700",Timothy J. Sloan,"President, Chief Executive Officer & Director",Financials,Commercial Banks,24,SF,CA,37.7749295,-122.4194155 27,Boeing,24,"$93,392 ",-1.20%,"$8,197.00 ",67.50%,"$92,333 ","$192,539 ","140,800",Dennis A. Muilenburg,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,24,Chicago,IL,41.8781136,-87.6297982 28,Phillips 66,34,"$91,568 ",26.50%,"$5,106.00 ",228.40%,"$54,371 ","$44,730 ","14,600",Greg C. Garland,Chairman & Chief Executive Officer,Energy,Petroleum Refining,6,Houston,TX,29.7604267,-95.3698028 29,Anthem,29,"$90,040 ",6.10%,"$3,842.80 ",55.60%,"$70,540 ","$56,182 ","56,000",Gail K. Boudreaux,"President, Chief Executive Officer & Director",Health Care,Health Care: Insurance and Managed Care,24,Indianapolis,IN,39.768403,-86.158068 30,Microsoft,28,"$89,950 ",5.40%,"$21,204.00 ",26.20%,"$241,086 ","$702,760 ","124,000",Satya Nadella,Chief Executive Officer & Director,Technology,Computer Software,24,Redmond,WA,47.6739881,-122.121512 31,Valero Energy,37,"$88,407 ",26.00%,"$4,065.00 ",77.60%,"$50,158 ","$39,977 ","10,015",Joseph W. Gorder,"Chairman, President & Chief Executive Officer",Energy,Petroleum Refining,20,San Antonio,TX,29.4241219,-98.4936282 32,Citigroup,30,"$87,966 ",6.80%,"($6,798.00)",-145.60%,"$1,842,465 ","$172,822 ","209,000",Michael L. Corbat,Chairman & Chief Executive Officer,Financials,Commercial Banks,24,New York,NY,40.7127753,-74.0059728 33,Comcast,31,"$84,526 ",5.10%,"$22,714.00 ",161.20%,"$186,949 ","$158,703 ","164,000",Brian L. Roberts,"Chairman, President & Chief Executive Officer",Telecommunications,Telecommunications,23,Philadelphia,PA,39.9525839,-75.1652215 34,IBM,32,"$79,139 ",-1.00%,"$5,753.00 ",-51.50%,"$125,356 ","$141,335 ","397,800",Virginia M. Rometty,"Chairman, President & Chief Executive Officer",Technology,Information Technology Services,24,Armonk,NY,41.1264849,-73.7140195 35,Dell Technologies,41,"$78,660 ",21.40%,"($3,728.00)",-,"$122,281 ",-,"145,000",Michael S. Dell,Chairman & Chief Executive Officer,Technology,"Computers, Office Equipment",21,Round Rock,TX,30.5082551,-97.678896 36,State Farm Insurance Cos.,33,"$78,331 ",2.90%,"$2,206.50 ",529.90%,"$272,345 ",-,"65,664",Michael L. Tipsord,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Mutual),24,Bloomington,IL,40.4842027,-88.9936873 37,Johnson & Johnson,35,"$76,450 ",6.30%,"$1,300.00 ",-92.10%,"$157,303 ","$343,780 ","134,000",Alex Gorsky,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,24,New Brunswick,NJ,40.4862157,-74.4518188 38,Freddie Mac,39,"$74,676 ",13.70%,"$5,625.00 ",-28.00%,"$2,049,776 ",$878 ,"6,165",Donald H. Layton,Chairman & Chief Executive Officer,Financials,Diversified Financials,21,McLean,VA,38.9338676,-77.1772604 39,Target,38,"$71,879 ",3.40%,"$2,934.00 ",7.20%,"$38,999 ","$37,409 ","345,000",Brian C. Cornell,Chairman & Chief Executive Officer,Retailing,General Merchandisers,24,Minneapolis,MN,44.977753,-93.2650108 40,Lowes,40,"$68,619 ",5.50%,"$3,447.00 ",11.40%,"$35,291 ","$72,812 ","255,000",Robert A. Niblock,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Other,24,Mooresville,NC,35.5848596,-80.8100724 41,Marathon Petroleum,51,"$67,610 ",21.00%,"$3,432.00 ",192.30%,"$49,047 ","$34,683 ","43,800",Gary R. Heminger,Chairman & Chief Executive Officer,Energy,Petroleum Refining,7,Findlay,OH,41.04422,-83.6499321 42,Procter & Gamble,36,"$66,217 ",-7.70%,"$15,326.00 ",45.90%,"$120,406 ","$199,865 ","95,000",David S. Taylor,"Chairman, President & Chief Executive Officer",Household Products,Household and Personal Products,24,Cincinnati,OH,39.1031182,-84.5120196 43,MetLife,42,"$66,153 ",4.20%,"$4,010.00 ",401.30%,"$719,892 ","$47,572 ","49,000",Steven A. Kandarian,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",24,New York,NY,40.7127753,-74.0059728 44,UPS,46,"$65,872 ",8.20%,"$4,910.00 ",43.10%,"$45,403 ","$90,156 ","346,415",David P. Abney,Chairman & Chief Executive Officer,Transportation,"Mail, Package, and Freight Delivery",24,Atlanta,GA,33.7489954,-84.3879824 45,PepsiCo,44,"$63,525 ",1.20%,"$4,857.00 ",-23.30%,"$79,804 ","$154,933 ","263,000",Indra K. Nooyi,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,24,Harrison,NY,41.0400135,-73.7144477 46,Intel,47,"$62,761 ",5.70%,"$9,601.00 ",-6.90%,"$123,249 ","$243,109 ","102,700",Robert H. Swan,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,24,Santa Clara,CA,37.3541079,-121.9552356 47,DowDuPont,62,"$62,683 ",30.20%,"$1,460.00 ",-66.20%,"$192,164 ","$148,186 ",98000,Edward D. Breen,Chief Executive Officer,Chemicals,Chemicals,24,Midland,Michigan,43.623574,-84.232105 48,Archer Daniels Midland,45,"$60,828 ",-2.40%,"$1,595.00 ",24.70%,"$39,963 ","$24,238 ","31,300",Juan R. Luciano,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Production,24,Chicago,IL,41.8781136,-87.6297982 49,Aetna,43,"$60,535 ",-4.10%,"$1,904.00 ",-16.20%,"$55,151 ","$55,229 ","47,950",Mark T. Bertolini,Chairman & Chief Executive Officer,Health Care,Health Care: Insurance and Managed Care,18,Hartford,CT,41.7658043,-72.6733723 50,FedEx,58,"$60,319 ",19.80%,"$2,997.00 ",64.70%,"$48,552 ","$64,161 ","357,000",Frederick W. Smith,Chairman & Chief Executive Officer,Transportation,"Mail, Package, and Freight Delivery",24,Memphis,TN,35.1495343,-90.0489801 51,United Technologies,50,"$59,837 ",4.50%,"$4,552.00 ",-10.00%,"$96,920 ","$100,667 ","204,700",Gregory J. Hayes,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,24,Farmington,CT,41.7360305,-72.795027 52,Prudential Financial,48,"$59,689 ",1.50%,"$7,863.00 ",80.00%,"$831,921 ","$43,686 ","49,705",John R. Strangfeld,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",24,Newark,NJ,40.735657,-74.1723667 53,Albertsons Cos.,49,"$59,678 ",1.60%,($373.30),-,"$23,755 ",-,"273,000",Robert G. Miller,Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,14,Boise,ID,43.6150186,-116.2023137 54,Sysco,57,"$55,371 ",9.90%,"$1,142.50 ",20.30%,"$17,757 ","$31,294 ","66,500",Thomas L. Ben�,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Food and Grocery,24,Houston,TX,29.7604267,-95.3698028 55,Disney,52,"$55,137 ",-0.90%,"$8,980.00 ",-4.40%,"$95,789 ","$151,029 ","199,000",Robert A. Iger,Chairman & Chief Executive Officer,Media,Entertainment,24,Burbank,CA,34.1808392,-118.3089661 56,Humana,53,"$53,767 ",-1.10%,"$2,448.00 ",298.70%,"$27,178 ","$37,122 ","45,900",Bruce D. Broussard,"President, Chief Executive Officer & Director",Health Care,Health Care: Insurance and Managed Care,24,Louisville,KY,38.2526647,-85.7584557 57,Pfizer,54,"$52,546 ",-0.50%,"$21,308.00 ",195.30%,"$171,797 ","$211,115 ","90,200",Ian C. Read,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,24,New York,NY,40.7127753,-74.0059728 58,HP,61,"$52,056 ",7.90%,"$2,526.00 ",1.20%,"$32,913 ","$35,893 ","49,000",Dion J. Weisler,"President, Chief Executive Officer & Director",Technology,"Computers, Office Equipment",24,Palo Alto,CA,37.4418834,-122.1430195 59,Lockheed Martin,56,"$51,048 ",0.80%,"$2,002.00 ",-62.20%,"$46,521 ","$96,589 ","100,000",Marillyn A. Hewson,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,24,Bethesda,MD,38.984652,-77.0947092 60,AIG,55,"$49,520 ",-5.40%,"($6,084.00)",-,"$498,301 ","$49,145 ","49,800",Brian Duperreault,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),24,New York,NY,40.7127753,-74.0059728 61,Centene,66,"$48,572 ",19.30%,$828.00 ,47.30%,"$21,855 ","$18,704 ","33,700",Michael F. Neidorff,Chairman & Chief Executive Officer,Health Care,Health Care: Insurance and Managed Care,9,St. Louis,MO,38.6270025,-90.1994042 62,Cisco Systems,60,"$48,005 ",-2.50%,"$9,609.00 ",-10.50%,"$129,818 ","$206,623 ","72,900",Charles H. Robbins,Chairman & Chief Executive Officer,Technology,Network and Other Communications Equipment,22,San Jose,CA,37.3382082,-121.8863286 63,HCA Healthcare,63,"$47,653 ",6.50%,"$2,216.00 ",-23.30%,"$36,593 ","$34,165 ",221491,R. Milton Johnson,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,24,Nashville,TN,36.1626638,-86.7816016 64,Energy Transfer Equity,79,"$47,487 ",26.60%,$954.00 ,-4.10%,"$86,246 ","$15,335 ","29,486",John W. McReynolds,President & Director,Energy,Pipelines,12,Dallas,TX,32.7766642,-96.7969879 65,Caterpillar,74,"$45,462 ",18.00%,$754.00 ,-,"$76,962 ","$88,078 ","98,400",D. James Umpleby III,Chairman & Chief Executive Officer,Industrials,Construction and Farm Machinery,24,Deerfield,IL,42.1711365,-87.8445119 66,Nationwide,68,"$43,940 ",9.60%,$246.50 ,-26.20%,"$221,257 ",-,"33,135",Stephen S. Rasmussen,Chief Executive Officer,Financials,Insurance: Property and Casualty (Mutual),24,Columbus,OH,39.9611755,-82.9987942 67,Morgan Stanley,76,"$43,642 ",15.00%,"$6,111.00 ",2.20%,"$851,733 ","$96,688 ","57,633",James P. Gorman,Chairman & Chief Executive Officer,Financials,Commercial Banks,24,New York,NY,40.7127753,-74.0059728 68,Liberty Mutual Insurance Group,75,"$42,687 ",11.40%,$17.00 ,-98.30%,"$142,502 ",-,"50,000",David H. Long,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Stock),24,Boston,MA,42.3600825,-71.0588801 69,New York Life Insurance,65,"$42,296 ",3.70%,"$1,866.90 ",71.60%,"$303,183 ",-,"11,114",Theodore A. Mathas,Chairman & Chief Executive Officer,Financials,"Insurance: Life, Health (Mutual)",24,New York,NY,40.7127753,-74.0059728 70,Goldman Sachs Group,78,"$42,254 ",12.00%,"$4,286.00 ",-42.10%,"$916,776 ","$95,463 ","36,600",Lloyd C. Blankfein,Chairman & Chief Executive Officer,Financials,Commercial Banks,19,New York,NY,40.7127753,-74.0059728 71,American Airlines Group,67,"$42,207 ",5.00%,"$1,919.00 ",-28.30%,"$51,396 ","$24,584 ","126,600",W. Douglas Parker,Chairman & Chief Executive Officer,Transportation,Airlines,24,Fort Worth,TX,32.7554883,-97.3307658 72,Best Buy,72,"$42,151 ",7.00%,"$1,000.00 ",-18.60%,"$13,049 ","$20,460 ","125,000",Hubert B. Joly,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,24,Richfield,MN,44.8832982,-93.2830021 73,Cigna,70,"$41,616 ",4.90%,"$2,237.00 ",19.80%,"$61,753 ","$40,735 ","46,000",David M. Cordani,"President, Chief Executive Officer & Director",Health Care,Health Care: Insurance and Managed Care,24,Bloomfield,CT,41.826488,-72.7300945 74,Charter Communications,96,"$41,581 ",43.40%,"$9,895.00 ",180.90%,"$146,623 ","$80,954 ","94,800",Thomas M. Rutledge,Chairman & Chief Executive Officer,Telecommunications,Telecommunications,18,Stamford,CT,41.0534302,-73.5387341 75,Delta Air Lines,71,"$41,244 ",4.00%,"$3,577.00 ",-18.20%,"$53,292 ","$38,746 ","86,564",Edward H. Bastian,Chairman & Chief Executive Officer,Transportation,Airlines,24,Atlanta,GA,33.7489954,-84.3879824 76,Facebook,98,"$40,653 ",47.10%,"$15,934.00 ",56.00%,"$84,524 ","$464,190 ","25,105",Mark Zuckerberg,Chairman & Chief Executive Officer,Technology,Internet Services and Retailing,6,Menlo Park,CA,37.4529598,-122.1817252 77,Honeywell International,73,"$40,534 ",3.10%,"$1,655.00 ",-65.60%,"$59,387 ","$108,149 ","131,000",Darius Adamczyk,"President, Chief Executive Officer & Director",Industrials,"Electronics, Electrical Equip.",24,Morris Plains,NJ,40.8395922,-74.4818698 78,Merck,69,"$40,122 ",0.80%,"$2,394.00 ",-38.90%,"$87,872 ","$146,862 ","69,000",Kenneth C. Frazier,"Chairman, President & Chief Executive Officer",Health Care,Pharmaceuticals,24,Kenilworth,NJ,40.6764911,-74.2907032 79,Allstate,84,"$38,524 ",5.40%,"$3,189.00 ",69.90%,"$112,422 ","$33,478 ","42,680",Thomas J. Wilson,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Stock),23,Northbrook,IL,42.1275267,-87.8289548 80,Tyson Foods,82,"$38,260 ",3.70%,"$1,774.00 ",0.30%,"$28,066 ","$29,233 ","122,000",Thomas P. Hayes,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Production,24,Springdale,AR,36.1867442,-94.1288141 81,United Continental Holdings,83,"$37,736 ",3.20%,"$2,131.00 ",-5.80%,"$42,326 ","$19,778 ","89,800",Oscar Munoz,Chairman & Chief Executive Officer,Transportation,Airlines,24,Chicago,IL,41.8781136,-87.6297982 82,Oracle,81,"$37,728 ",1.80%,"$9,335.00 ",4.90%,"$134,991 ","$186,766 ","138,000",Safra A. Catz/Mark V. Hurd,Co-Chief Executive Officer & Director,Technology,Computer Software,23,Redwood City,CA,37.4852152,-122.2363548 83,Tech Data,107,"$36,775 ",40.20%,$116.60 ,-40.20%,"$12,653 ","$3,249 ","14,000",Richard T. Hume,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Electronics and Office Equipment,24,Clearwater,FL,27.9658533,-82.8001026 84,TIAA,80,"$36,025 ",-2.90%,"$1,049.70 ",-29.70%,"$583,632 ",-,"16,829",Roger W. Ferguson Jr.,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (Mutual)",21,New York,NY,40.7127753,-74.0059728 85,TJX,87,"$35,865 ",8.10%,"$2,607.90 ",13.50%,"$14,058 ","$51,571 ","249,000",Ernie L. Herrman,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Apparel,24,Framingham,MA,42.279286,-71.4161565 86,American Express,86,"$35,583 ",5.20%,"$2,736.00 ",-49.40%,"$181,159 ","$80,234 ","55,000",Stephen J. Squeri,Chairman & Chief Executive Officer,Financials,Diversified Financials,24,New York,NY,40.7127753,-74.0059728 87,Coca-Cola,64,"$35,410 ",-15.40%,"$1,248.00 ",-80.90%,"$87,896 ","$185,207 ","61,800",James R. Quincey,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Beverages,24,Atlanta,GA,33.7489954,-84.3879824 88,Publix Super Markets,85,"$34,837 ",1.60%,"$2,291.90 ",13.10%,"$18,184 ",-,"193,000",Randall T. Jones Sr.,"President, Chief Executive Officer & Director",Food & Drug Stores,Food and Drug Stores,24,Lakeland,FL,28.0394654,-81.9498042 89,Nike,88,"$34,350 ",6.10%,"$4,240.00 ",12.80%,"$23,259 ","$108,094 ","74,400",Mark G. Parker,"Chairman, President & Chief Executive Officer",Apparel,Apparel,24,Beaverton,OR,45.4887993,-122.8013332 90,Andeavor,117,"$34,204 ",42.50%,"$1,528 ",108.20%,"$28,573 ","$15,386 ",14300,Gregory J. Goff,"Chairman, President & Chief Executive Officer",Energy,Petroleum Refining,19,San Antonio,TX,29.4241219,-98.4936282 91,World Fuel Services,103,"$33,696 ",24.70%,($170.20),-234.50%,"$5,588 ","$1,661 ","5,000",Michael J. Kasbar,Chairman & Chief Executive Officer,Energy,Energy,14,Miami,FL,25.7616798,-80.1917902 92,Exelon,89,"$33,531 ",6.90%,"$3,770.00 ",232.50%,"$116,700 ","$37,644 ","34,621",Christopher M. Crane,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,24,Chicago,IL,41.8781136,-87.6297982 93,Massachusetts Mutual Life Insurance,77,"$33,495 ",-11.40%,$513.00 ,-59.70%,"$288,855 ",-,"11,811",Roger W. Crandall,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (Mutual)",24,Springfield,MA,42.1014831,-72.589811 94,Rite Aid,91,"$32,845 ",6.90%,$4.10 ,-97.60%,"$11,594 ","$1,793 ","70,430",John T. Standley,Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,24,Camp Hill,PA,40.2398118,-76.9199742 95,ConocoPhillips,115,"$32,584 ",33.80%,($855.00),-,"$73,362 ","$69,641 ","11,400",Ryan M. Lance,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",24,Houston,TX,29.7604267,-95.3698028 96,CHS,93,"$31,935 ",5.20%,$127.90 ,-69.90%,"$15,974 ",-,"11,626",Jay D. Debertin,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Production,19,Inver Grove Heights,MN,44.8480218,-93.0427153 97,3M,94,"$31,657 ",5.10%,"$4,858.00 ",-3.80%,"$37,987 ","$130,550 ","91,536",Inge G. Thulin,"Chairman, President & Chief Executive Officer",Industrials,Miscellaneous,24,St Paul,MN,44.9537029,-93.0899578 98,Time Warner,95,"$31,271 ",6.70%,"$5,247.00 ",33.60%,"$69,209 ","$73,758 ","26,000",John Stankey,Chairman & Chief Executive Officer,Media,Entertainment,19,New York,NY,40.7127753,-74.0059728 99,General Dynamics,90,"$30,973 ",-1.20%,"$2,912.00 ",-1.50%,"$35,046 ","$65,845 ","98,600",Phebe N. Novakovic,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,24,Falls Church,VA,38.882334,-77.1710914 100,USAA,102,"$30,016 ",10.60%,"$2,421.90 ",36.10%,"$155,391 ",-,"32,705",Stuart Parker,Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),24,San Antonio,TX,29.4241219,-98.4936282 101,Capital One Financial,100,"$29,999 ",9.00%,"$1,982.00 ",-47.20%,"$365,693 ","$46,584 ","49,300",Richard D. Fairbank,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,19,McLean,VA,38.9338676,-77.1772604 102,Deere,105,"$29,738 ",11.60%,"$2,159.10 ",41.70%,"$65,786 ","$50,291 ","60,476",Samuel R. Allen,"Chairman, President & Chief Executive Officer",Industrials,Construction and Farm Machinery,24,Moline,IL,41.5067003,-90.5151342 103,INTL FCStone,189,"$29,424 ",99.40%,$6.40 ,-88.30%,"$6,243 ",$804 ,"1,607",Sean M. O'Connor,"President, Chief Executive Officer & Director",Financials,Diversified Financials,10,New York,NY,40.7127753,-74.0059728 104,Northwestern Mutual,97,"$29,331 ",1.80%,"$1,017.00 ",24.30%,"$265,049 ",-,"5,437",John E. Schlifske,Chairman & Chief Executive Officer,Financials,"Insurance: Life, Health (Mutual)",24,Milwaukee,WI,43.0389025,-87.9064736 105,Enterprise Products Partners,122,"$29,242 ",27.00%,"$2,799.30 ",11.40%,"$54,418 ","$52,904 ","7,000",A. James Teague,Chairman & Chief Executive Officer,Energy,Pipelines,13,Houston,TX,29.7604267,-95.3698028 106,Travelers Cos.,99,"$28,902 ",4.60%,"$2,056.00 ",-31.80%,"$103,483 ","$37,691 ","30,800",Alan D. Schnitzer,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),24,New York,NY,40.7127753,-74.0059728 107,Hewlett Packard Enterprise,59,"$28,871 ",-42.40%,$344.00 ,-89.10%,"$61,406 ","$27,243 ","66,000",Antonio Neri,"President, Chief Executive Officer & Director",Technology,"Computers, Office Equipment",2,Palo Alto,CA,37.4418834,-122.1430195 108,Philip Morris International,104,"$28,748 ",7.70%,"$6,035.00 ",-13.40%,"$42,968 ","$154,514 ","80,600",Andr� Calantzopoulos,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Tobacco,10,New York,NY,40.7127753,-74.0059728 109,Twenty-First Century Fox,101,"$28,500 ",4.30%,"$2,952.00 ",7.20%,"$50,724 ","$67,969 ","21,700",James R. Murdoch,Chief Executive Officer & Director,Media,Entertainment,14,New York,NY,40.7127753,-74.0059728 110,AbbVie,111,"$28,216 ",10.10%,"$5,309.00 ",-10.80%,"$70,786 ","$150,180 ","29,000",Richard A. Gonzalez,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,5,North Chicago,IL,42.325578,-87.8411818 111,Abbott Laboratories,135,"$27,390 ",31.30%,$477.00 ,-65.90%,"$76,250 ","$104,640 ","99,000",Miles D. White,Chairman & Chief Executive Officer,Health Care,Medical Products and Equipment,24,Lake Bluff,IL,42.304505,-87.8960712 112,Progressive,120,"$26,839 ",14.50%,"$1,592.20 ",54.40%,"$38,701 ","$35,478 ","33,656",Susan Patricia Griffith,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),24,Mayfield,OH,41.5519952,-81.4392828 113,Arrow Electronics,118,"$26,813 ",12.50%,$402.00 ,-23.10%,"$16,463 ","$6,750 ","18,800",Michael J. Long,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Electronics and Office Equipment,24,Centennial,CO,39.5807452,-104.8771726 114,Kraft Heinz,106,"$26,232 ",-1.00%,"$10,999.00 ",202.80%,"$120,232 ","$75,920 ","39,000",Bernardo Hees,Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,24,Pittsburgh,PA,40.4406248,-79.9958864 115,Plains GP Holdings,141,"$26,223 ",29.90%,($731.00),-877.70%,"$26,753 ","$6,328 ","4,850",Greg L. Armstrong,Chairman & Chief Executive Officer,Energy,Pipelines,5,Houston,TX,29.7604267,-95.3698028 116,Gilead Sciences,92,"$26,107 ",-14.10%,"$4,628.00 ",-65.70%,"$70,283 ","$98,298 ","10,000",John F. Milligan IV,"President, Chief Executive Officer & Director",Health Care,Pharmaceuticals,10,San Mateo,CA,37.5585465,-122.2710788 117,Mondelez International,109,"$25,896 ",-0.10%,"$2,922.00 ",76.10%,"$63,109 ","$62,066 ","83,000",Dirk Van de Put,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,11,Deerfield,IL,42.1711365,-87.8445119 118,Northrop Grumman,114,"$25,803 ",5.30%,"$2,015.00 ",-8.40%,"$34,917 ","$60,778 ","70,000",Wesley G. Bush,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,24,Falls Church,VA,38.882334,-77.1710914 119,Raytheon,116,"$25,348 ",5.30%,"$2,024.00 ",-8.50%,"$30,860 ","$62,265 ","64,000",Thomas A. Kennedy,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,24,Waltham,MA,42.3764852,-71.2356113 120,Macys,110,"$24,837 ",-3.70%,"$1,547.00 ",149.90%,"$19,381 ","$9,065 ","130,000",Jeffrey Gennette,Chairman & Chief Executive Officer,Retailing,General Merchandisers,24,Cincinnati,OH,39.1031182,-84.5120196 121,US Foods Holding,124,"$24,147 ",5.40%,$444.30 ,111.80%,"$9,037 ","$7,065 ","25,204",Pietro Satriano,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Food and Grocery,7,Rosemont,IL,41.9867507,-87.8721602 122,U.S. Bancorp,125,"$23,996 ",5.50%,"$6,218.00 ",5.60%,"$462,040 ","$83,367 ","72,402",Andrew J. Cecere,"President, Chief Executive Officer & Director",Financials,Commercial Banks,20,Minneapolis,MN,44.977753,-93.2650108 123,Dollar General,128,"$23,471 ",6.80%,"$1,539.00 ",23.00%,"$12,517 ","$25,141 ","129,000",Todd J. Vasos,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,20,Goodlettsville,TN,36.3231066,-86.7133302 124,International Paper,133,"$23,302 ",10.50%,"$2,144.00 ",137.20%,"$33,903 ","$22,063 ","56,000",Mark S. Sutton,Chairman & Chief Executive Officer,Materials,"Packaging, Containers",24,Memphis,TN,35.1495343,-90.0489801 125,Duke Energy,121,"$23,189 ",-0.80%,"$3,059.00 ",42.10%,"$137,914 ","$54,276 ","29,060",Lynn J. Good,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Charlotte,NC,35.2270869,-80.8431267 126,Southern,145,"$23,031 ",15.80%,$842.00 ,-65.60%,"$111,005 ","$45,024 ","31,344",Thomas A. Fanning,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Atlanta,GA,33.7489954,-84.3879824 127,Marriott International,163,"$22,894 ",34.10%,"$1,372.00 ",75.90%,"$23,948 ","$48,531 ","177,000",Arne M. Sorenson,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",20,Bethesda,MD,38.984652,-77.0947092 128,Avnet,108,"$22,872 ",-12.80%,$525.30 ,3.70%,"$9,700 ","$5,009 ","15,700",William J. Amelio,Chief Executive Officer & Director,Wholesalers,Wholesalers: Electronics and Office Equipment,24,Phoenix,AZ,33.4483771,-112.0740373 129,Eli Lilly,132,"$22,871 ",7.80%,($204.10),-107.50%,"$44,981 ","$84,542 ","40,655",David A. Ricks,"Chairman, President & Chief Executive Officer",Health Care,Pharmaceuticals,24,Indianapolis,IN,39.768403,-86.158068 130,Amgen,123,"$22,849 ",-0.60%,"$1,979.00 ",-74.40%,"$79,954 ","$122,842 ","20,800",Robert A. Bradway,"Chairman, President & Chief Executive Officer",Health Care,Pharmaceuticals,19,Thousand Oaks,CA,34.1705609,-118.8375937 131,McDonalds,112,"$22,820 ",-7.30%,"$5,192.30 ",10.80%,"$33,804 ","$124,244 ","235,000",Stephen J. Easterbrook,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,24,Oak Brook,IL,41.8397865,-87.9535534 132,Starbucks,131,"$22,387 ",5.00%,"$2,884.70 ",2.40%,"$14,366 ","$81,370 ","277,000",Keven R. Johnson,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,16,Seattle,WA,47.6062095,-122.3320708 133,Qualcomm,119,"$22,291 ",-5.40%,"$2,466.00 ",-56.80%,"$65,486 ","$82,027 ","33,800",Steven M. Mollenkopf,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,19,San Diego,CA,32.715738,-117.1610838 134,Dollar Tree,136,"$22,246 ",7.40%,"$1,714.30 ",91.30%,"$16,333 ","$22,523 ","116,200",Gary M. Philbin,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,10,Chesapeake,VA,36.7682088,-76.2874927 135,PBF Energy,172,"$21,787 ",36.80%,$415.50 ,143.30%,"$8,118 ","$3,752 ","3,165",Thomas J. Nimbley,Chairman & Chief Executive Officer,Energy,Petroleum Refining,6,Parsippany-Troy Hills,NJ,40.8652865,-74.4173877 136,Icahn Enterprises,168,"$21,744 ",33.00%,"$2,430.00 ",-,"$31,801 ","$9,901 ","89,034",Keith Cozza,"President, Chief Executive Officer & Director",Financials,Diversified Financials,10,New York,NY,40.7127753,-74.0059728 137,Aflac,126,"$21,667 ",-4.00%,"$4,604.00 ",73.10%,"$137,217 ","$34,038 ","11,318",Daniel P. Amos,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",24,Columbus,GA,32.4609764,-84.9877094 138,AutoNation,129,"$21,535 ",-0.30%,$434.60 ,1.00%,"$10,272 ","$4,296 ","26,000",Michael J. Jackson,"Chairman, President & Chief Executive Officer",Retailing,"Automotive Retailing, Services",21,Fort Lauderdale,FL,26.1224386,-80.1373174 139,Penske Automotive Group,142,"$21,389 ",6.20%,$613.30 ,78.90%,"$10,541 ","$3,817 ","26,000",Roger S. Penske,Chairman & Chief Executive Officer,Retailing,"Automotive Retailing, Services",20,Bloomfield Hills,MI,42.583645,-83.2454883 140,Whirlpool,137,"$21,253 ",2.60%,$350.00 ,-60.60%,"$20,038 ","$10,824 ","92,000",Marc R. Bitzer,"President, Chief Executive Officer & Director",Industrials,"Electronics, Electrical Equip.",24,Benton Harbor,MI,42.1167065,-86.4541894 141,Union Pacific,143,"$21,240 ",6.50%,"$10,712.00 ",153.10%,"$57,806 ","$104,261 ","41,992",Lance M. Fritz,"Chairman, President & Chief Executive Officer",Transportation,Railroads,24,Omaha,NE,41.2565369,-95.9345034 142,Southwest Airlines,138,"$21,171 ",3.70%,"$3,488.00 ",55.40%,"$25,110 ","$33,678 ","56,110",Gary C. Kelly,Chairman & Chief Executive Officer,Transportation,Airlines,24,Dallas,TX,32.7766642,-96.7969879 143,ManpowerGroup,146,"$21,034 ",7.00%,$545.40 ,22.90%,"$8,884 ","$7,614 ","29,000",Jonas Prising,Chairman & Chief Executive Officer,Business Services,Temporary Help,24,Milwaukee,WI,43.0389025,-87.9064736 144,Thermo Fisher Scientific,154,"$20,918 ",14.50%,"$2,225.00 ",10.10%,"$56,669 ","$82,952 ","66,100",Marc N. Casper,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",16,Waltham,MA,42.3764852,-71.2356113 145,Bristol-Myers Squibb,147,"$20,776 ",6.90%,"$1,007.00 ",-77.40%,"$33,551 ","$103,415 ","23,700",Giovanni Caforio,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,24,New York,NY,40.7127753,-74.0059728 146,Halliburton,173,"$20,620 ",29.80%,($463.00),-,"$25,085 ","$41,068 ","55,000",Jeffrey A. Miller,"President, Chief Executive Officer & Director",Energy,"Oil and Gas Equipment, Services",24,Houston,TX,29.7604267,-95.3698028 147,Tenet Healthcare,134,"$20,613 ",-2.20%,($704.00),-,"$23,385 ","$2,452 ","111,980",Ronald A. Rittenmeyer,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,24,Dallas,TX,32.7766642,-96.7969879 148,Lear,151,"$20,467 ",10.30%,"$1,313.40 ",34.70%,"$11,946 ","$12,453 ","165,000",Raymond E. Scott,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,24,Southfield,MI,42.4733688,-83.2218731 149,Cummins,159,"$20,428 ",16.70%,$999.00 ,-28.30%,"$18,075 ","$26,757 ","58,600",N. Thomas Linebarger,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,24,Columbus,IN,39.2014404,-85.9213796 150,Micron Technology,226,"$20,322 ",63.90%,"$5,089.00 ",-,"$35,336 ","$60,470 ","34,100",Sanjay Mehrotra,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,21,Boise,ID,43.6150186,-116.2023137 151,Nucor,169,"$20,252 ",25.00%,"$1,318.70 ",65.60%,"$15,841 ","$19,432 ","25,100",John J. Ferriola,"Chairman, President & Chief Executive Officer",Materials,Metals,24,Charlotte,NC,35.2270869,-80.8431267 152,Molina Healthcare,156,"$19,883 ",11.80%,($512.00),-1084.60%,"$8,471 ","$4,867 ","20,000",Joseph M. Zubretsky,"President, Chief Executive Officer & Director",Health Care,Health Care: Insurance and Managed Care,7,Long Beach,CA,33.7700504,-118.1937395 153,Fluor,149,"$19,521 ",2.50%,$191.40 ,-32.00%,"$9,328 ","$8,006 ","56,706",David T. Seaton,Chairman & Chief Executive Officer,Engineering & Construction,"Engineering, Construction",17,Irving,TX,32.8140177,-96.9488945 154,Altria Group,148,"$19,494 ",0.80%,"$10,222.00 ",-28.20%,"$43,202 ","$118,436 ","8,300",Howard A. Willard III,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Tobacco,24,Richmond,VA,37.5407246,-77.4360481 155,Paccar,164,"$19,456 ",14.20%,"$1,675.20 ",221.10%,"$23,440 ","$23,298 ","25,000",Ronald E. Armstrong,Chairman & Chief Executive Officer,Industrials,Construction and Farm Machinery,24,Bellevue,WA,47.6101497,-122.2015159 156,Hartford Financial Services,153,"$19,228 ",5.10%,"($3,131.00)",-449.40%,"$225,260 ","$18,392 ","16,400",Christopher J. Swift,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),23,Hartford,CT,41.7658043,-72.6733723 157,Kohls,150,"$19,095 ",2.20%,$859.00 ,54.50%,"$13,340 ","$11,021 ","85,000",Michelle D. Gass,Chairman & Chief Executive Officer,Retailing,General Merchandisers,21,Menomonee Falls,WI,43.1788967,-88.1173132 158,Western Digital,217,"$19,093 ",46.90%,$397.00 ,64.00%,"$29,860 ","$27,456 ","67,629",Stephen D. Milligan,Chairman & Chief Executive Officer,Technology,"Computers, Office Equipment",15,San Jose,CA,37.3382082,-121.8863286 159,Jabil,152,"$19,063.10 ",3.90%,$129.10 ,-49.20%,"$11,096 ","$5,035 ",170000,Mark T. Mondello,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,17,St. Petersburg,FL,27.7676008,-82.6402915 160,Community Health Systems,130,"$18,477 ",-13.60%,"($2,459.00)",-,"$17,450 ",$454 ,"86,000",Wayne T. Smith,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,12,Franklin,TN,35.9250637,-86.8688899 161,Visa,187,"$18,358 ",21.70%,"$6,699.00 ",11.80%,"$67,977 ","$270,222 ","15,000",Alfred F. Kelly Jr.,Chairman & Chief Executive Officer,Business Services,Financial Data Services,10,SF,CA,37.7749295,-122.4194155 162,Danaher,144,"$18,330 ",-7.90%,"$2,492.10 ",-2.40%,"$46,649 ","$68,385 ","67,000",Thomas P. Joyce Jr.,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,20,Leavenworth,WA,47.7510741,-120.7401385 163,Kimberly-Clark,155,"$18,259 ",0.30%,"$2,278.00 ",5.20%,"$15,151 ","$38,553 ","42,000",Thomas J. Falk,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,24,Irving,TX,32.8140177,-96.9488945 164,AECOM,161,"$18,203 ",4.60%,$339.40 ,253.10%,"$14,397 ","$5,671 ","87,000",Michael S. Burke,Chairman & Chief Executive Officer,Engineering & Construction,"Engineering, Construction",10,Los Angeles,CA,34.0522342,-118.2436849 165,PNC Financial Services,166,"$18,035 ",9.80%,"$5,338.00 ",36.80%,"$380,768 ","$71,323 ","51,632",William S. Demchak,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,24,Pittsburgh,PA,40.4406248,-79.9958864 166,CenturyLink,160,"$17,656 ",1.10%,"$1,389.00 ",121.90%,"$75,611 ","$17,578 ","51,000",Jeffrey K. Storey,"President, Chief Executive Officer & Director",Telecommunications,Telecommunications,9,Monroe,LA,32.5093109,-92.1193012 167,NextEra Energy,170,"$17,195 ",6.40%,"$5,378.00 ",84.70%,"$97,827 ","$76,895 ","14,000",James L. Robo,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,North Palm Beach,FL,26.8797819,-80.0533743 168,PG& E Corp.,157,"$17,135 ",-3.00%,"$1,646.00 ",18.20%,"$68,012 ","$22,664 ","23,000",Geisha J. Williams,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,24,SF,CA,37.7749295,-122.4194155 169,Synnex,198,"$17,046 ",21.20%,$301.20 ,28.20%,"$7,699 ","$4,702 ","113,600",Dennis Polk,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Electronics and Office Equipment,12,Fremont,CA,37.5482697,-121.9885719 170,WellCare Health Plans,195,"$17,007 ",19.50%,$373.70 ,54.40%,"$8,365 ","$8,622 ","8,900",Kenneth A. Burdick,Chairman & Chief Executive Officer,Health Care,Health Care: Insurance and Managed Care,10,Tampa,FL,27.950575,-82.4571776 171,Performance Food Group,171,"$16,762 ",4.10%,$96.30 ,41.00%,"$3,804 ","$3,104 ","14,000",George L. Holm,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Food and Grocery,10,Richmond,VA,37.5407246,-77.4360481 172,Sears Holdings,127,"$16,702 ",-24.60%,($383.00),-,"$7,262 ",$288 ,"89,000",Edward S. Lampert,Chairman & Chief Executive Officer,Retailing,General Merchandisers,24,Hoffman Estates,IL,42.0629915,-88.1227199 173,Synchrony Financial,185,"$16,695 ",10.40%,"$1,935.00 ",-14.00%,"$95,808 ","$25,490 ","16,000",Margaret M. Keane,"President, Chief Executive Officer & Director",Financials,Diversified Financials,2,Stamford,CT,41.0534302,-73.5387341 174,CarMax,174,"$16,637 ",5.10%,$627.00 ,0.60%,"$16,279 ","$11,202 ","24,344",William D. Nash,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",15,Richmond,VA,37.5407246,-77.4360481 175,Bank of New York Mellon,177,"$16,621 ",6.00%,"$4,090.00 ",15.30%,"$371,758 ","$51,919 ",52500,Charles W. Scharf,Chairman & Chief Executive Officer,Financials,Commercial Banks,24,New York City,NY,40.7127753,-74.0059728 176,Freeport-McMoRan,175,"$16,416 ",4.00%,"$1,817.00 ",-,"$37,302 ","$25,439 ","25,200",Richard C. Adkerson,"Vice Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",13,Phoenix,AZ,33.4483771,-112.0740373 177,Genuine Parts,180,"$16,309 ",6.30%,$616.80 ,-10.30%,"$12,412 ","$13,183 ","48,000",Paul D. Donahue,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,24,Atlanta,GA,33.7489954,-84.3879824 178,Emerson Electric,139,"$16,301 ",-19.60%,"$1,518.00 ",-7.20%,"$19,589 ","$43,359 ","76,500",David N. Farr,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,24,St. Louis,MO,38.6270025,-90.1994042 179,DaVita,181,"$16,038 ",5.50%,$663.60 ,-24.60%,"$18,948 ","$12,001 ","74,500",Kent J. Thiry,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,12,Denver,CO,39.7392358,-104.990251 180,Supervalu,158,"$16,009 ",-8.70%,$650.00 ,265.20%,"$3,580 ",$585 ,"29,000",Mark Gross,"President, Chief Executive Officer & Director",Food & Drug Stores,Food and Drug Stores,24,Eden Prairie,MN,44.8546856,-93.470786 181,Gap,178,"$15,855 ",2.20%,$848.00 ,25.40%,"$7,989 ","$12,147 ","135,000",Arthur L. Peck,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Apparel,24,SF,CA,37.7749295,-122.4194155 182,General Mills,165,"$15,620 ",-5.70%,"$1,657.50 ",-2.40%,"$21,813 ","$26,716 ","38,000",Jeffrey L. Harmening,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,24,Minneapolis,MN,44.977753,-93.2650108 183,Nordstrom,188,"$15,478 ",4.90%,$437.00 ,23.40%,"$8,115 ","$8,123 ","76,000",Blake W. Nordstrom,Co-President & Director,Retailing,General Merchandisers,24,Seattle,WA,47.6062095,-122.3320708 184,Colgate-Palmolive,182,"$15,454 ",1.70%,"$2,024.00 ",-17.10%,"$12,676 ","$62,607 ","35,900",Ian M. Cook,"Chairman, President & Chief Executive Officer",Household Products,Household and Personal Products,24,New York,NY,40.7127753,-74.0059728 185,American Electric Power,167,"$15,425 ",-5.80%,"$1,912.60 ",213.10%,"$64,729 ","$33,766 ","17,666",Nicholas K. Akins,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Columbus,OH,39.9611755,-82.9987942 186,XPO Logistics,191,"$15,381 ",5.20%,$340.20 ,393.00%,"$12,602 ","$12,210 ","95,000",Bradley S. Jacobs,Chairman & Chief Executive Officer,Transportation,Transportation and Logistics,3,Greenwich,CT,41.0262417,-73.6281964 187,Goodyear Tire & Rubber,184,"$15,377 ",1.40%,$346.00 ,-72.60%,"$17,064 ","$6,392 ","64,000",Richard J. Kramer,"Chairman, President & Chief Executive Officer",Motor Vehicles & Parts,Motor Vehicles and Parts,24,Akron,OH,41.0814447,-81.5190053 188,Omnicom Group,179,"$15,274 ",-0.90%,"$1,088.40 ",-5.20%,"$24,931 ","$16,734 ","77,300",John D. Wren,"President, Chief Executive Officer & Director",Business Services,"Advertising, marketing",22,New York,NY,40.7127753,-74.0059728 189,CDW,199,"$15,192 ",8.70%,$523.00 ,23.20%,"$6,957 ","$10,717 ","8,726",Thomas E. Richards,"Chairman, President & Chief Executive Officer",Technology,Information Technology Services,14,Lincolnshire,IL,42.1900249,-87.9084039 190,Sherwin-Williams,236,"$14,984 ",26.40%,"$1,772.30 ",56.50%,"$19,958 ","$36,899 ","52,695",John G. Morikis,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,24,Cleveland,OH,41.49932,-81.6943605 191,PPG Industries,183,"$14,967 ",-1.40%,"$1,591.00 ",81.40%,"$16,538 ","$27,824 ","47,200",Michael H. McGarry,Chairman & Chief Executive Officer,Chemicals,Chemicals,24,Pittsburgh,PA,40.4406248,-79.9958864 192,Texas Instruments,206,"$14,961 ",11.90%,"$3,682.00 ",2.40%,"$17,642 ","$102,135 ","29,714",Brian T. Crutcher,"Chairman, President & Chief Executive Officer",Technology,Semiconductors and Other Electronic Components,24,Dallas,TX,32.7766642,-96.7969879 193,C.H. Robinson Worldwide,212,"$14,869 ",13.10%,$504.90 ,-1.70%,"$4,236 ","$13,153 ","15,074",John P. Wiehoff,"Chairman, President & Chief Executive Officer",Transportation,Transportation and Logistics,17,Eden Prairie,MN,44.8546856,-93.470786 194,WestRock,190,"$14,860 ",1.00%,$708.20 ,-,"$25,089 ","$16,372 ","44,800",Steven C. Voorhees,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",7,Atlanta,GA,33.7489954,-84.3879824 195,Cognizant Technology Solutions,205,"$14,810 ",9.80%,"$1,504.00 ",-3.20%,"$15,221 ","$47,338 ","260,000",Francisco D'Souza,Chairman & Chief Executive Officer,Technology,Information Technology Services,8,Teaneck,NJ,40.8932469,-74.0116536 196,Newell Brands,208,"$14,742 ",11.10%,"$2,748.80 ",420.80%,"$33,136 ","$12,363 ","49,000",Michael B. Polk,Chairman & Chief Executive Officer,Household Products,"Home Equipment, Furnishings",23,Hoboken,NJ,40.7439905,-74.0323626 197,CBS,193,"$14,710 ",2.30%,$357.00 ,-71.70%,"$20,843 ","$19,668 ","14,715",Leslie Moonves,"Chairman, President & Chief Executive Officer",Media,Entertainment,24,New York,NY,40.7127753,-74.0059728 198,Envision Healthcare,538,"$14,701 ",220.40%,($228.00),-,"$16,573 ","$4,647 ","57,750",Christopher A. Holden,"President, Chief Executive Officer & Director",Health Care,Health Care: Pharmacy and Other Services,1,Nashville,TN,36.1626638,-86.7816016 199,Monsanto,204,"$14,640 ",8.40%,"$2,260.00 ",69.20%,"$21,333 ","$51,444 ","21,900",Hugh Grant,Chairman & Chief Executive Officer,Chemicals,Chemicals,15,St. Louis,MO,38.6270025,-90.1994042 200,Aramark,192,"$14,604 ",1.30%,$373.90 ,29.90%,"$11,006 ","$9,725 ","215,000",Eric J. Foss,"Chairman, President & Chief Executive Officer",Business Services,Diversified Outsourcing Services,24,Philadelphia,PA,39.9525839,-75.1652215 201,Applied Materials,265,"$14,537 ",34.30%,"$3,434.00 ",99.50%,"$19,419 ","$58,429 ","18,400",Gary E. Dickerson,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,23,Santa Clara,CA,37.3541079,-121.9552356 202,Waste Management,201,"$14,485 ",6.40%,"$1,949.00 ",64.90%,"$21,829 ","$36,372 ","42,300",James C. Fish Jr.,"President, Chief Executive Officer & Director",Business Services,Waste Management,20,Houston,TX,29.7604267,-95.3698028 203,DISH Network,186,"$14,391 ",-4.70%,"$2,098.70 ",44.80%,"$29,774 ","$17,682 ","17,000",W. Erik Carlson,"President, Chief Executive Officer & Director",Telecommunications,Telecommunications,17,Englewood,CO,39.6477653,-104.9877597 204,Illinois Tool Works,202,"$14,314 ",5.30%,"$1,687.00 ",-17.10%,"$16,780 ","$53,142 ","50,000",E. Scott Santi,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,24,Glenview,IL,42.0697509,-87.7878408 205,Lincoln National,207,"$14,257 ",7.00%,"$2,079.00 ",74.40%,"$281,763 ","$15,946 ","9,047",Dennis R. Glass,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",24,Wayne,PA,40.0462208,-75.3599105 206,HollyFrontier,274,"$14,251 ",35.30%,$805.40 ,-,"$10,692 ","$8,650 ","3,522",George J. Damiris,"President, Chief Executive Officer & Director",Energy,Petroleum Refining,11,Dallas,TX,32.7766642,-96.7969879 207,CBRE Group,214,"$14,210 ",8.70%,$691.50 ,20.90%,"$11,484 ","$16,042 ","80,000",Robert E. Sulentic,"President, Chief Executive Officer & Director",Financials,Real estate,11,Los Angeles,CA,34.0522342,-118.2436849 208,Textron,200,"$14,198 ",3.00%,$307.00 ,-68.10%,"$15,340 ","$15,293 ","37,000",Scott C. Donnelly,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,24,Providence,RI,41.8239891,-71.4128343 209,Ross Stores,219,"$14,135 ",9.90%,"$1,362.80 ",21.90%,"$5,722 ","$29,800 ","82,700",Barbara Rentler,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,16,Dublin,CA,37.7021521,-121.9357918 210,Principal Financial,227,"$14,093 ",13.70%,"$2,310.40 ",75.50%,"$253,941 ","$17,643 ","15,378",Daniel J. Houston,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",24,Des Moines,IA,41.6005448,-93.6091064 211,D.R. Horton,232,"$14,091 ",15.90%,"$1,038.40 ",17.20%,"$12,185 ","$16,480 ","7,735",David V. Auld,"President, Chief Executive Officer & Director",Engineering & Construction,Homebuilders,16,Arlington,TX,32.735687,-97.1080656 212,Marsh & McLennan,210,"$14,024 ",6.20%,"$1,492.00 ",-15.60%,"$20,429 ","$41,924 ","64,000",Daniel S. Glaser,"President, Chief Executive Officer & Director",Financials,Diversified Financials,24,New York,NY,40.7127753,-74.0059728 213,Devon Energy,231,"$13,949 ",14.40%,$898.00 ,-,"$30,241 ","$16,725 ","3,414",David A. Hager,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",17,Oklahoma City,OK,35.4675602,-97.5164276 214,AES,194,"$13,850 ",-3.10%,"($1,161.00)",-,"$33,112 ","$7,510 ","10,500",Andr�s R. Gluski,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,18,Arlington,VA,38.8816208,-77.0909809 215,Ecolab,211,"$13,838 ",5.20%,"$1,508.40 ",22.70%,"$19,962 ","$39,524 ","48,400",Douglas M. Baker Jr.,Chairman & Chief Executive Officer,Chemicals,Chemicals,16,St Paul,MN,44.9537029,-93.0899578 216,Land O'Lakes,209,"$13,740 ",3.80%,$314.20 ,28.30%,"$9,509 ",-,"10,000",Christopher J. Policinski,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,16,Arden Hills,MN,45.0502435,-93.1566112 217,Loews,213,"$13,735 ",4.80%,"$1,164.00 ",78.00%,"$79,586 ","$16,134 ","18,100",James S. Tisch,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),24,New York,NY,40.7127753,-74.0059728 218,Kinder Morgan,215,"$13,705 ",5.00%,$183.00 ,-74.20%,"$79,055 ","$33,223 ","10,897",Steven J. Kean,"President, Chief Executive Officer & Director",Energy,Pipelines,15,Houston,TX,29.7604267,-95.3698028 219,FirstEnergy,196,"$13,627 ",-3.70%,"($1,724.00)",-,"$42,257 ","$16,175 ","15,617",Charles E. Jones,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,23,Akron,OH,41.0814447,-81.5190053 220,Occidental Petroleum,278,"$13,274 ",27.70%,"$1,311.00 ",-,"$42,026 ","$49,738 ","11,000",Vicki A. Hollub,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",24,Houston,TX,29.7604267,-95.3698028 221,Viacom,224,"$13,263 ",6.20%,"$1,874.00 ",30.30%,"$23,698 ","$12,919 ","11,200",Robert M. Bakish,"President, Chief Executive Officer & Director",Media,Entertainment,13,New York,NY,40.7127753,-74.0059728 222,PayPal Holdings,264,"$13,094 ",20.80%,"$1,795.00 ",28.10%,"$40,774 ","$91,056 ","18,700",Daniel H. Schulman,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,3,San Jose,CA,37.3382082,-121.8863286 223,NGL Energy Partners,237,"$13,022 ",10.90%,$137.00 ,-,"$6,320 ","$1,332 ","2,700",H. Michael Krimbill,Chief Executive Officer & Director,Energy,Energy,4,Tulsa,OK,36.1539816,-95.992775 224,Celgene,254,"$13,003 ",15.80%,"$2,940.00 ",47.10%,"$30,141 ","$67,102 ","7,467",Mark J. Alles,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,7,Summit,NJ,40.7146376,-74.3646122 225,Arconic,228,"$12,960 ",4.60%,($74.00),-,"$18,718 ","$11,124 ","41,500",Charles P. Blankenship,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,24,New York,NY,40.7127753,-74.0059728 226,Kellogg,216,"$12,923 ",-0.70%,"$1,269.00 ",82.90%,"$16,350 ","$22,532 ","32,944",Steven A. Cahillane,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Consumer Products,24,Battle Creek,MI,42.3211522,-85.1797142 227,Las Vegas Sands,249,"$12,882 ",12.90%,"$2,806.00 ",68.00%,"$20,687 ","$56,721 ","50,500",Sheldon G. Adelson,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",9,Las Vegas,NV,36.1699412,-115.1398296 228,Stanley Black & Decker,250,"$12,747 ",11.70%,"$1,226.00 ",27.00%,"$19,080 ","$23,610 ","57,765",James M. Loree,"President, Chief Executive Officer & Director",Household Products,"Home Equipment, Furnishings",11,New Britain,CT,41.6612104,-72.7795419 229,Booking Holdings,268,"$12,681 ",18.00%,"$2,340.80 ",9.60%,"$25,451 ","$100,459 ","22,900",Glenn D. Fogel,"President, Chief Executive Officer & Director",Technology,Internet Services and Retailing,6,Norwalk,CT,41.117744,-73.4081575 230,Lennar,260,"$12,646 ",15.50%,$810.50 ,-11.10%,"$18,745 ","$18,738 ","9,111",Richard Beckwitt,Chief Executive Officer & Director,Engineering & Construction,Homebuilders,14,Miami,FL,25.7616798,-80.1917902 231,L Brands,220,"$12,632 ",0.50%,$983.00 ,-15.10%,"$8,149 ","$10,655 ","59,200",Leslie H. Wexner,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Apparel,24,Columbus,OH,39.9611755,-82.9987942 232,DTE Energy,272,"$12,607 ",18.60%,"$1,134.00 ",30.60%,"$33,767 ","$18,760 ","10,200",Gerard M. Anderson,Chairman & Chief Executive Officer,Energy,Utilities: Gas and Electric,24,Detroit,MI,42.331427,-83.0457538 233,Dominion Energy,238,"$12,586 ",7.20%,"$2,999.00 ",41.30%,"$76,585 ","$45,344 ",16200,Thomas F. Farrell II,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Richmond,VA,37.5407246,-77.4360481 234,Reinsurance Group of America,246,"$12,516 ",8.60%,"$1,822.20 ",159.80%,"$60,515 ","$9,930 ","2,640",Anna Manning,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",9,Chesterfield,MO,38.6631083,-90.5770675 235,J.C. Penney,221,"$12,506 ",-0.30%,($116.00),-11700.00%,"$8,413 ",$943 ,"98,000",Jeffrey A. Davis/Joseph M. McFarland/Therace M. Risch,Chairman & Chief Executive Officer,Retailing,General Merchandisers,24,Plano,TX,33.0198431,-96.6988856 236,Mastercard,267,"$12,497 ",16.00%,"$3,915.00 ",-3.50%,"$21,329 ","$184,161 ","13,400",Ajay Banga,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,10,Harrison,NY,41.0400135,-73.7144477 237,BlackRock,255,"$12,491 ",12.00%,"$4,970.00 ",56.70%,"$220,217 ","$87,065 ","13,900",Laurence D. Fink,Chairman & Chief Executive Officer,Financials,Securities,11,New York,NY,40.7127753,-74.0059728 238,Henry Schein,243,"$12,462 ",7.70%,$406.30 ,-19.80%,"$7,811 ","$10,330 ","22,000",Stanley M. Bergman,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Health Care,15,Melville,NY,40.7934322,-73.4151214 239,Guardian Life Ins. Co. of America,218,"$12,455 ",-3.60%,$455.30 ,72.50%,"$75,038 ",-,"9,283",Deanna M. Mulligan,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (Mutual)",24,New York,NY,40.7127753,-74.0059728 240,Stryker,252,"$12,444 ",9.90%,"$1,020.00 ",-38.10%,"$22,197 ","$60,041 ","33,000",Kevin A. Lobo,Chairman & Chief Executive Officer,Health Care,Medical Products and Equipment,16,Kalamazoo,MI,42.2917069,-85.5872286 241,Jefferies Financial Group,262,"$12,408 ",14.10%,$171.70 ,32.10%,"$47,169 ","$8,098 ","12,700",Richard B. Handler,Chairman & Chief Executive Officer,Financials,Diversified Financials,6,New York,NY,40.7127753,-74.0059728 242,VF,230,"$12,400 ",1.60%,$614.90 ,-42.80%,"$9,959 ","$29,403 ","69,000",Steven E. Rendle,"Chairman, President & Chief Executive Officer",Apparel,Apparel,24,Greensboro,NC,36.0726354,-79.7919754 243,ADP,240,"$12,380 ",6.10%,"$1,733.40 ",16.10%,"$37,180 ","$50,302 ","58,000",Carlos A. Rodriguez,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,24,Roseland,NJ,40.8206555,-74.2937594 244,Edison International,235,"$12,320 ",3.80%,$565.00 ,-56.90%,"$52,580 ","$20,741 ","12,521",Pedro J. Pizarro,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,24,Rosemead,CA,34.0805651,-118.072846 245,Biogen,248,"$12,274 ",7.20%,"$2,539.10 ",-31.40%,"$23,653 ","$57,930 ","7,300",Michel Vounatsos,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,9,Cambridge,MA,42.3736158,-71.1097335 246,United States Steel,279,"$12,250 ",19.40%,$387.00 ,-,"$9,862 ","$6,200 ","29,200",David B. Burritt,"President, Chief Executive Officer & Director",Materials,Metals,16,Pittsburgh,PA,40.4406248,-79.9958864 247,Core-Mark Holding,247,"$12,225 ",6.20%,$33.50 ,-38.20%,"$1,783 ",$981 ,"8,413",Thomas B. Perkins,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Food and Grocery,9,South San Francisco,CA,37.654656,-122.4077498 248,Bed Bath & Beyond,233,"$12,216 ",0.90%,$685.10 ,-18.60%,"$6,846 ","$2,989 ","65,000",Steven H. Temares,Chief Executive Officer & Director,Retailing,Specialty Retailers: Other,15,Union,NJ,40.6975898,-74.2631635 249,Oneok,312,"$12,174 ",36.50%,$387.80 ,10.20%,"$16,846 ","$23,373 ","2,470",Terry K. Spencer,"President, Chief Executive Officer & Director",Energy,Pipelines,16,Tulsa,OK,36.1539816,-95.992775 250,BB& T Corp.,245,"$12,156 ",5.40%,"$2,394.00 ",-1.30%,"$221,642 ","$40,454 ","36,484",Kelly S. King,Chairman & Chief Executive Officer,Financials,Commercial Banks,20,Winston-Salem,NC,36.0998596,-80.244216 251,Becton Dickinson,225,"$12,093 ",-3.10%,"$1,100.00 ",12.70%,"$37,734 ","$57,695 ","41,933",Vincent A. Forlenza,Chairman & Chief Executive Officer,Health Care,Medical Products and Equipment,24,Franklin Lakes,NJ,41.0167639,-74.2057011 252,Ameriprise Financial,239,"$12,075 ",2.90%,"$1,480.00 ",12.60%,"$147,470 ","$21,613 ","13,312",James M. Cracchiolo,Chairman & Chief Executive Officer,Financials,Diversified Financials,12,Minneapolis,MN,44.977753,-93.2650108 253,Farmers Insurance Exchange,222,"$12,072 ",-3.50%,($65.40),-,"$16,165 ",-,"13,015",Jeffrey J. Dailey,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Mutual),4,Los Angeles,CA,34.165357,-118.6089752 254,First Data,242,"$12,052 ",4.00%,"$1,465.00 ",248.80%,"$48,269 ","$14,865 ","22,000",Frank J. Bisignano,Chairman & Chief Executive Officer,Business Services,Financial Data Services,24,New York,NY,40.7127753,-74.0059728 255,Consolidated Edison,234,"$12,033 ",-0.30%,"$1,525.00 ",22.50%,"$48,111 ","$24,192 ","15,591",John McAvoy,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,New York,NY,40.7127753,-74.0059728 256,Parker-Hannifin,251,"$12,029 ",5.90%,$983.40 ,21.90%,"$15,490 ","$22,755 ","56,690",Thomas L. Williams,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,24,Cleveland,OH,41.49932,-81.6943605 257,Anadarko Petroleum,344,"$11,908 ",51.30%,($456.00),-,"$42,086 ","$31,131 ","4,400",R. A. Walker,"Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",18,The Woodlands,TX,30.1658207,-95.4612625 258,Estee Lauder,253,"$11,824 ",5.00%,"$1,249.00 ",12.10%,"$11,568 ","$55,064 ","46,000",Fabrizio Freda,"President, Chief Executive Officer & Director",Household Products,Household and Personal Products,23,New York,NY,40.7127753,-74.0059728 259,State Street Corp.,271,"$11,774 ",10.70%,"$2,177.00 ",1.60%,"$238,425 ","$36,688 ","36,643",Joseph L. Hooley,Chairman & Chief Executive Officer,Financials,Commercial Banks,23,Boston,MA,42.3600825,-71.0588801 260,Tesla,383,"$11,759 ",68.00%,"($1,961.40)",-,"$28,655 ","$44,955 ","37,543",Elon Musk,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,2,Palo Alto,CA,37.4418834,-122.1430195 261,Netflix,314,"$11,693 ",32.40%,$558.90 ,199.40%,"$19,013 ","$128,167 ","5,100",Reed Hastings,"Chairman, President & Chief Executive Officer",Technology,Internet Services and Retailing,4,Los Gatos,CA,37.2358078,-121.9623751 262,Alcoa,300,"$11,652 ",25.00%,$217.00 ,-,"$17,447 ","$8,372 ","14,600",Roy C. Harvey,"President, Chief Executive Officer & Director",Materials,Metals,2,Pittsburgh,PA,40.4406248,-79.9958864 263,Discover Financial Services,277,"$11,545 ",10.00%,"$2,099.00 ",-12.30%,"$100,087 ","$25,431 ","16,500",David W. Nelms,Chairman & Chief Executive Officer,Financials,Commercial Banks,10,Riverwoods,IL,42.1675254,-87.897014 264,Praxair,275,"$11,437 ",8.60%,"$1,247.00 ",-16.90%,"$20,436 ","$41,434 ","26,461",Stephen F. Angel,Chairman & Chief Executive Officer,Chemicals,Chemicals,24,Danbury,CT,41.394817,-73.4540111 265,CSX,257,"$11,408 ",3.10%,"$5,471.00 ",219.20%,"$35,739 ","$49,428 ","24,006",James M. Foote,"President, Chief Executive Officer & Director",Transportation,Railroads,24,Jacksonville,FL,30.3321838,-81.655651 266,Xcel Energy,256,"$11,404 ",2.70%,"$1,148.00 ",2.20%,"$43,030 ","$23,107 ","11,105",Benjamin G.S. Fowke III,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,22,Minneapolis,MN,44.977753,-93.2650108 267,Unum Group,258,"$11,287 ",2.20%,$994.20 ,6.70%,"$64,013 ","$10,530 ","9,400",Richard P. McKenney,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",23,Chattanooga,TN,35.0456297,-85.3096801 268,Universal Health Services,276,"$11,279 ",7.30%,$752.30 ,7.10%,"$10,762 ","$11,163 ","72,300",Alan B. Miller,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,15,King of Prussia,PA,40.1012856,-75.3835525 269,NRG Energy,229,"$11,275 ",-8.70%,"($2,153.00)",-,"$23,318 ","$9,698 ","5,940",Mauricio Gutierrez,"President, Chief Executive Officer & Director",Energy,Energy,12,Princeton,NJ,40.3572976,-74.6672226 270,EOG Resources,356,"$11,208 ",46.50%,"$2,582.60 ",-,"$29,833 ","$60,913 ","2,664",William R. Thomas,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",10,Houston,TX,29.7604267,-95.3698028 271,Sempra Energy,280,"$11,207 ",10.10%,$256.00 ,-81.30%,"$50,454 ","$29,351 ","16,046",J. Walker Martin,Chairman & Chief Executive Officer,Energy,Utilities: Gas and Electric,20,San Diego,CA,32.715738,-117.1610838 272,Toys 'R' Us,244,"$11,146 ",-3.40%,($612.00),-,"$7,262 ",-,"65,000",David A. Brandon,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,24,Wayne,NJ,40.9253725,-74.2765441 273,Group 1 Automotive,261,"$11,124 ",2.20%,$213.40 ,45.10%,"$4,871 ","$1,366 ","14,108",Earl J. Hesterberg,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",18,Houston,TX,29.7604267,-95.3698028 274,Entergy,263,"$11,075 ",2.10%,$411.60 ,-,"$46,707 ","$14,298 ","13,504",Leo P. Denault,Chairman & Chief Executive Officer,Energy,Utilities: Gas and Electric,24,New Orleans,LA,29.9510658,-90.0715323 275,Molson Coors Brewing,522,"$11,003 ",125.20%,"$1,414.20 ",-28.40%,"$30,247 ","$16,238 ","17,200",Mark R. Hunter,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Beverages,8,Denver,CO,39.7392358,-104.990251 276,L3 Technologies,273,"$11,002 ",3.80%,$677.00 ,-4.60%,"$12,729 ","$16,283 ","38,000",Christopher E. Kubasik,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,16,New York,NY,40.7127753,-74.0059728 277,Ball,306,"$10,983 ",21.20%,$374.00 ,42.20%,"$17,169 ","$13,920 ","18,300",John A. Hayes,"Chairman, President & Chief Executive Officer",Materials,"Packaging, Containers",22,Broomfield,CO,39.9205411,-105.0866504 278,AutoZone,270,"$10,889 ",2.40%,"$1,280.90 ",3.20%,"$9,260 ","$17,450 ","70,035",William C. Rhodes III,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Other,20,Memphis,TN,35.1495343,-90.0489801 279,Murphy USA,291,"$10,853 ",12.70%,$245.30 ,10.70%,"$2,331 ","$2,440 ","6,900",R. Andrew Clyde,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,5,El Dorado,AR,33.20763,-92.6662674 280,MGM Resorts International,297,"$10,774 ",13.90%,"$1,960.30 ",78.00%,"$29,159 ","$19,844 ","68,500",James J. Murren,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",18,Las Vegas,NV,36.1699412,-115.1398296 281,Office Depot,203,"$10,752 ",-20.90%,$181.00 ,-65.80%,"$6,323 ","$1,195 ","45,000",Gerry P. Smith,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,24,Boca Raton,FL,26.3683064,-80.1289321 282,Huntsman,289,"$10,592 ",9.70%,$636.00 ,95.10%,"$10,244 ","$7,090 ","10,000",Peter R. Huntsman,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,13,The Woodlands,TX,30.1658207,-95.4612625 283,Baxter International,281,"$10,561 ",3.90%,$717.00 ,-85.60%,"$17,111 ","$34,979 ","47,000",Jos� E. Almeida,"Chairman, President & Chief Executive Officer",Health Care,Medical Products and Equipment,24,Deerfield,IL,42.1711365,-87.8445119 284,Norfolk Southern,284,"$10,551 ",6.70%,"$5,404.00 ",224.00%,"$35,711 ","$41,226 ","27,110",James A. Squires,"Chairman, President & Chief Executive Officer",Transportation,Railroads,24,Norfolk,VA,36.8507689,-76.2858726 285,salesforce.com,326,"$10,480 ",24.90%,$127.50 ,-29.00%,"$21,010 ","$85,074 ","29,000",Marc R. Benioff,Chairman & Chief Executive Officer,Technology,Computer Software,4,SF,CA,37.7749295,-122.4194155 286,Laboratory Corp. of America,290,"$10,441 ",8.30%,"$1,268.20 ",73.20%,"$16,568 ","$16,482 ","60,000",David P. King,"Chairman, President & Chief Executive Officer",Health Care,Health Care: Pharmacy and Other Services,9,Burlington,NC,36.0956918,-79.4377991 287,W.W. Grainger,282,"$10,425 ",2.80%,$585.70 ,-3.30%,"$5,804 ","$15,823 ","25,050",Donald G. MacPherson,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,24,Lake Forest,IL,42.2586342,-87.840625 288,Qurate Retail,269,"$10,404 ",-2.30%,"$2,441.00 ",97.70%,"$24,122 ","$12,587 ","28,255",Gregory B. Maffei,Chairman,Retailing,Internet Services and Retailing,14,Englewood,CO,39.6477653,-104.9877597 289,Autoliv,283,"$10,383 ",3.10%,$427.10 ,-24.70%,"$8,550 ","$12,710 ","67,352",Jan Carlson,"Chairman, President & Chief Executive Officer",Motor Vehicles & Parts,Motor Vehicles and Parts,20,Auburn Hills,MI,42.6875323,-83.2341028 290,Live Nation Entertainment,330,"$10,337 ",23.70%,($6.00),-304.50%,"$7,504 ","$8,772 ","15,050",Michael Rapino,"President, Chief Executive Officer & Director",Media,Entertainment,9,Beverly Hills,CA,34.0736204,-118.4003563 291,Xerox,162,"$10,265 ",-40.10%,$195.00 ,-,"$15,946 ","$7,330 ","36,100",John Visentin,Chairman & Chief Executive Officer,Technology,"Computers, Office Equipment",24,Norwalk,CT,41.117744,-73.4081575 292,Leidos Holdings,381,"$10,170 ",44.40%,$366.00 ,50.00%,"$8,990 ","$9,918 ","31,000",Roger A. Krone,Chairman & Chief Executive Officer,Technology,Information Technology Services,18,Reston,VA,38.9586307,-77.3570028 293,Corning,298,"$10,116 ",7.70%,($497.00),-113.50%,"$27,494 ","$23,677 ","46,200",Wendell P. Weeks,"Chairman, President & Chief Executive Officer",Industrials,"Electronics, Electrical Equip.",23,Corning,NY,42.1428521,-77.0546903 294,Lithia Motors,318,"$10,087 ",16.20%,$245.20 ,24.40%,"$4,683 ","$2,515 ","12,899",Bryan B. DeBoer,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",4,Medford,OR,42.3265152,-122.8755949 295,Expedia Group,317,"$10,060 ",14.70%,$378.00 ,34.10%,"$18,516 ","$16,764 ","22,615",Mark D. Okerstrom,"President, Chief Executive Officer & Director",Retailing,Internet Services and Retailing,4,Bellevue,WA,47.6101497,-122.2015159 296,Republic Services,299,"$10,042 ",7.00%,"$1,278.40 ",108.70%,"$21,147 ","$21,832 ","35,000",Donald W. Slager,"President, Chief Executive Officer & Director",Business Services,Waste Management,9,Phoenix,AZ,33.4483771,-112.0740373 297,Jacobs Engineering Group,259,"$10,023 ",-8.60%,$293.70 ,39.60%,"$7,381 ","$8,380 ","49,750",Steven J. Demetriou,"Chairman, President & Chief Executive Officer",Engineering & Construction,"Engineering, Construction",18,Dallas,TX,32.7766642,-96.7969879 298,Sonic Automotive,287,"$9,867 ",1.40%,$93.00 ,-0.20%,"$3,819 ",$804 ,"9,750",B. Scott Smith,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",19,Charlotte,NC,35.2270869,-80.8431267 299,Ally Financial,286,"$9,866 ",0.30%,$929.00 ,-12.90%,"$167,148 ","$11,767 ","7,900",Jeffrey J. Brown,Chairman & Chief Executive Officer,Financials,Diversified Financials,11,Detroit,MI,42.331427,-83.0457538 300,LKQ,304,"$9,848 ",8.40%,$533.70 ,15.00%,"$9,367 ","$11,750 ","43,000",Dominick P. Zarcone,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,5,Chicago,IL,41.8781136,-87.6297982 301,BorgWarner,305,"$9,799 ",8.00%,$439.90 ,271.20%,"$9,788 ","$10,586 ","29,000",James R. Verrier,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,12,Auburn Hills,MI,42.6875323,-83.2341028 302,Fidelity National Financial,293,"$9,769 ",2.30%,$771.00 ,18.60%,"$9,151 ","$10,983 ","24,525",Raymond R. Quirk,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),11,Jacksonville,FL,30.3321838,-81.655651 303,SunTrust Banks,303,"$9,741 ",6.30%,"$2,273.00 ",21.00%,"$205,962 ","$31,863 ","23,785",William H. Rogers Jr.,Chairman & Chief Executive Officer,Financials,Commercial Banks,24,Atlanta,GA,33.7489954,-84.3879824 304,IQVIA Holdings,390,"$9,739 ",41.60%,"$1,309.00 ",1038.30%,"$22,742 ","$20,433 ",55000,Ari Bousbib,"Chairman, President & Chief Executive Officer",Health Care,Health Care: Pharmacy and Other Services,5,Durham,NC,35.980513,-78.90511 305,Reliance Steel & Aluminum,320,"$9,721 ",12.90%,$613.40 ,101.60%,"$7,751 ","$6,244 ","14,900",Gregg J. Mollins,"President, Chief Executive Officer & Director",Materials,Metals,12,Los Angeles,CA,34.0522342,-118.2436849 306,Nvidia,387,"$9,714 ",40.60%,"$3,047.00 ",82.90%,"$11,241 ","$140,112 ","11,528",Jen-Hsun Huang,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,2,Santa Clara,CA,37.3541079,-121.9552356 307,Voya Financial,266,"$9,660 ",-10.40%,"($2,992.00)",-,"$222,532 ","$8,686 ","6,300",Rodney O. Martin Jr.,Chairman & Chief Executive Officer,Financials,Diversified Financials,4,New York,NY,40.7127753,-74.0059728 308,CenterPoint Energy,362,"$9,614 ",27.70%,"$1,792.00 ",314.80%,"$22,736 ","$11,822 ","7,977",Scott M. Prochazka,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,24,Houston,TX,29.7604267,-95.3698028 309,eBay,310,"$9,567 ",6.50%,"($1,016.00)",-114.00%,"$25,981 ","$40,726 ","14,100",Devin N. Wenig,"President, Chief Executive Officer & Director",Technology,Internet Services and Retailing,13,San Jose,CA,37.3382082,-121.8863286 310,Eastman Chemical,309,"$9,549 ",6.00%,"$1,384.00 ",62.10%,"$15,999 ","$15,073 ","14,000",Mark J. Costa,Chairman & Chief Executive Officer,Chemicals,Chemicals,24,Kingsport,TN,36.548434,-82.5618186 311,American Family Insurance Group,315,"$9,545 ",8.10%,$155.60 ,-52.20%,"$24,233 ",-,"11,307",Jack C. Salzwedel,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),22,Madison,WI,43.0730517,-89.4012302 312,Steel Dynamics,347,"$9,539 ",22.70%,$812.70 ,112.70%,"$6,856 ","$10,444 ","7,635",Mark D. Millett,"President, Chief Executive Officer & Director",Materials,Metals,9,Fort Wayne,IN,41.079273,-85.1393513 313,Pacific Life,302,"$9,510 ",3.70%,"$1,365.00 ",65.70%,"$157,877 ",-,"3,578",James T. Morris,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",22,Newport Beach,CA,33.6188829,-117.9298493 314,Chesapeake Energy,343,"$9,496 ",20.60%,$949.00 ,-,"$12,425 ","$2,746 ","3,200",Robert D. Lawler,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",13,Oklahoma City,OK,35.4675602,-97.5164276 315,Mohawk Industries,311,"$9,491 ",5.90%,$971.60 ,4.40%,"$12,095 ","$17,283 ","38,800",Jeffrey S. Lorberbaum,Chairman & Chief Executive Officer,Household Products,"Home Equipment, Furnishings",19,Calhoun,GA,34.502587,-84.9510542 316,Quanta Services,355,"$9,467 ",23.70%,$315.00 ,58.80%,"$6,480 ","$5,281 ","32,800",Earl C. Austin Jr.,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",6,Houston,TX,29.7604267,-95.3698028 317,Advance Auto Parts,292,"$9,374 ",-2.00%,$475.50 ,3.50%,"$8,482 ","$8,770 ","55,500",Thomas R. Greco,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,16,Roanoke,VA,37.2709704,-79.9414266 318,Owens & Minor,288,"$9,318 ",-4.20%,$72.80 ,-33.10%,"$3,376 ",$961 ,"8,600",P. Cody Phipps,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Health Care,24,Mechanicsville,VA,37.6087561,-77.3733139 319,United Natural Foods,325,"$9,275 ",9.50%,$130.20 ,3.50%,"$2,887 ","$2,165 ","9,700",Steven L. Spinner,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Food and Grocery,6,Providence,RI,41.8239891,-71.4128343 320,Tenneco,322,"$9,274 ",7.80%,$207.00 ,-41.90%,"$4,842 ","$2,822 ","32,000",Brian J. Kesseler,Chief Executive Officer & Director,Motor Vehicles & Parts,Motor Vehicles and Parts,24,Lake Forest,IL,42.2586342,-87.840625 321,Conagra Brands,197,"$9,235 ",-34.70%,$639.30 ,-,"$10,096 ","$14,776 ","12,600",Sean M. Connolly,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,24,Chicago,IL,41.8781136,-87.6297982 322,GameStop,321,"$9,225 ",7.20%,$34.70 ,-90.20%,"$5,042 ","$1,279 ","39,500",Shane S. Kim,Interim Chief Executive Officer,Retailing,Specialty Retailers: Other,12,Grapevine,TX,32.9342919,-97.0780654 323,Hormel Foods,295,"$9,168 ",-3.70%,$846.70 ,-4.90%,"$6,976 ","$18,174 ","20,200",James P. Snee,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Consumer Products,24,Austin,MN,43.6666296,-92.9746367 324,Hilton Worldwide Holdings,241,"$9,140 ",-21.60%,"$1,259.00 ",261.80%,"$14,308 ","$24,957 ","163,000",Christopher J. Nassetta,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",15,McLean,VA,38.9338676,-77.1772604 325,Frontier Communications,313,"$9,128 ",2.60%,"($1,804.00)",-,"$24,884 ",$582 ,"22,736",Daniel J. McCarthy,"President, Chief Executive Officer & Director",Telecommunications,Telecommunications,5,Norwalk,CT,41.117744,-73.4081575 326,Fidelity National Information Services,301,"$9,123 ",-1.30%,"$1,319.00 ",132.20%,"$24,517 ","$31,893 ","53,000",Gary A. Norcross,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,9,Jacksonville,FL,30.3321838,-81.655651 327,Public Service Enterprise Group,306,"$9,084 ",0.30%,"$1,574.00 ",77.50%,"$42,716 ","$25,359 ","12,945",Ralph Izzo,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Newark,NJ,40.735657,-74.1723667 328,Boston Scientific,327,"$9,048 ",7.90%,$104.00 ,-70.00%,"$19,042 ","$37,688 ","29,000",Michael F. Mahoney,"Chairman, President & Chief Executive Officer",Health Care,Medical Products and Equipment,15,Marlboro,MA,42.3459271,-71.5522874 329,OReilly Automotive,323,"$8,978 ",4.50%,"$1,133.80 ",9.30%,"$7,572 ","$20,607 ","60,365",Gregory D. Johnson,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,9,Springfield,MO,37.2089572,-93.2922989 330,Charles Schwab,357,"$8,960 ",17.20%,"$2,354.00 ",24.60%,"$243,274 ","$70,313 ","17,600",Walter W. Bettinger II,"President, Chief Executive Officer & Director",Financials,Securities,20,SF,CA,37.7749295,-122.4194155 331,Global Partners,334,"$8,921 ",8.30%,$58.80 ,-,"$2,320 ",$522 ,"2,000",Eric Slifka,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,12,Waltham,MA,42.3764852,-71.2356113 332,PVH,335,"$8,915 ",8.70%,$537.80 ,-2.00%,"$11,886 ","$11,649 ","28,050",Emanuel Chirico,Chairman & Chief Executive Officer,Apparel,Apparel,8,New York,NY,40.7127753,-74.0059728 333,Avis Budget Group,319,"$8,848 ",2.20%,$361.00 ,121.50%,"$17,699 ","$3,792 ","26,300",Larry D. De Shon,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",21,Parsippany-Troy Hills,NJ,40.8652865,-74.4173877 334,Targa Resources,402,"$8,815 ",31.70%,$54.00 ,-,"$14,389 ","$9,629 ","2,130",Joe Bob Perkins,Chairman & Chief Executive Officer,Energy,Pipelines,10,Houston,TX,29.7604267,-95.3698028 335,Hertz Global Holdings,296,"$8,803 ",-7.10%,$327.00 ,-,"$20,058 ","$1,662 ","37,000",Kathryn V. Marinello,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",11,Estero,FL,26.438136,-81.8067523 336,Calpine,400,"$8,752 ",30.30%,($339.00),-468.50%,"$16,453 ",-,"2,290",John B. Hill III,"President, Chief Executive Officer & Director",Energy,Energy,17,Houston,TX,29.7604267,-95.3698028 337,Mutual of Omaha Insurance,342,"$8,732 ",10.60%,$862.60 ,141.90%,"$42,429 ",-,"5,896",James T. Blackledge,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",22,Omaha,NE,41.2565369,-95.9345034 338,Crown Holdings,333,"$8,698 ",5.00%,$323.00 ,-34.90%,"$10,663 ","$6,816 ","24,342",Timothy J. Donahue,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",24,Philadelphia,PA,39.9525839,-75.1652215 339,Peter Kiewit Sons,324,"$8,678 ",1.20%,$371.00 ,-6.30%,"$5,710 ",-,"22,000",Bruce E. Grewcock,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",19,Omaha,NE,41.2565369,-95.9345034 340,Dicks Sporting Goods,340,"$8,591 ",8.40%,$323.40 ,12.50%,"$4,204 ","$3,765 ","30,300",Edward W. Stack,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,9,Coraopolis,PA,40.5184013,-80.1667247 341,PulteGroup,353,"$8,573 ",11.80%,$447.20 ,-25.80%,"$9,687 ","$8,439 ","4,810",Ryan R. Marshall,"President, Chief Executive Officer & Director",Engineering & Construction,Homebuilders,16,Atlanta,GA,33.7489954,-84.3879824 342,Navistar International,337,"$8,570 ",5.70%,$30.00 ,-,"$6,135 ","$3,451 ","11,400",Troy A. Clarke,"Chairman, President & Chief Executive Officer",Industrials,Construction and Farm Machinery,22,Lisle,IL,41.801141,-88.0747875 343,Thrivent Financial for Lutherans,316,"$8,528 ",-2.80%,$558.40 ,-5.00%,"$95,001 ",-,"3,622",Bradford L. Hewitt,Chief Executive Officer & Director,Financials,"Insurance: Life, Health (Mutual)",24,Minneapolis,MN,44.977753,-93.2650108 344,DCP Midstream,,"$8,462 ",465.30%,$229.00 ,-26.60%,"$13,878 ","$5,033 ","2,650",Wouter T. van Kempen,"Chairman, President & Chief Executive Officer",Energy,Pipelines,1,Denver,CO,39.7392358,-104.990251 345,Air Products & Chemicals,294,"$8,442 ",-11.40%,"$3,000.40 ",375.40%,"$18,467 ","$34,818 ","15,150",Seifi Ghasemi,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,24,Allentown,PA,40.6022939,-75.4714098 346,Veritiv,331,"$8,365 ",0.50%,($13.30),-163.30%,"$2,708 ",$617 ,"8,900",Mary A. Laschinger,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,3,Atlanta,GA,33.7489954,-84.3879824 347,AGCO,370,"$8,307 ",12.10%,$186.40 ,16.40%,"$7,972 ","$5,157 ","20,462",Martin H. Richenhagen,"Chairman, President & Chief Executive Officer",Industrials,Construction and Farm Machinery,17,Duluth,GA,34.0028786,-84.1446376 348,Genworth Financial,329,"$8,295 ",-0.90%,$817.00 ,-,"$105,297 ","$1,413 ","3,500",Thomas J. McInerney,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",13,Richmond,VA,37.5407246,-77.4360481 349,Univar,338,"$8,254 ",2.20%,$119.80 ,-,"$5,733 ","$3,920 ","8,600",David C. Jukes,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,3,Downers Grove,IL,41.8089191,-88.0111746 350,News Corp.,332,"$8,139 ",-2.20%,($738.00),-512.30%,"$14,552 ","$9,272 ","26,000",Robert J. Thomson,Chairman & Chief Executive Officer,Media,"Publishing, Printing",4,New York,NY,40.7127753,-74.0059728 351,SpartanNash,350,"$8,128 ",5.10%,($52.80),-193.00%,"$2,056 ",$620 ,"11,950",David M. Staples,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Food and Grocery,8,Byron Center,MI,42.8122508,-85.7228061 352,Westlake Chemical,507,"$8,041 ",58.40%,"$1,304.00 ",226.90%,"$12,076 ","$14,385 ","8,799",Albert Yuan Chao,"President, Chief Executive Officer & Director",Chemicals,Chemicals,1,Houston,TX,29.7604267,-95.3698028 353,Williams,367,"$8,031 ",7.10%,"$2,174.00 ",-,"$46,352 ","$20,567 ","5,425",Alan S. Armstrong,"President, Chief Executive Officer & Director",Energy,Energy,24,Tulsa,OK,36.1539816,-95.992775 354,Lam Research,440,"$8,014 ",36.10%,"$1,697.80 ",85.70%,"$12,123 ","$33,105 ","9,400",Martin B. Anstice,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,3,Fremont,CA,37.5482697,-121.9885719 355,Alaska Air Group,438,"$7,933 ",33.80%,"$1,034.00 ",27.00%,"$10,740 ","$7,646 ","23,156",Bradley D. Tilden,"Chairman, President & Chief Executive Officer",Transportation,Airlines,5,Seattle,WA,47.6062095,-122.3320708 356,Jones Lang LaSalle,391,"$7,932 ",16.60%,$254.20 ,-20.10%,"$8,015 ","$7,930 ","81,900",Christian Ulbrich,"President, Chief Executive Officer & Director",Financials,Real estate,4,Chicago,IL,41.8781136,-87.6297982 357,Anixter International,359,"$7,927 ",4.00%,$109.00 ,-9.50%,"$4,252 ","$2,522 ","8,900",Robert J. Eck,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Electronics and Office Equipment,16,Glenview,IL,42.0697509,-87.7878408 358,Campbell Soup,339,"$7,890 ",-0.90%,$887.00 ,57.50%,"$7,726 ","$13,021 ","18,000",Denise M. Morrison,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,24,Camden,NJ,39.9259463,-75.1196199 359,Interpublic Group,345,"$7,882 ",0.50%,$579.00 ,-4.80%,"$12,695 ","$8,854 ","50,200",Michael I. Roth,Chairman & Chief Executive Officer,Business Services,"Advertising, marketing",21,New York,NY,40.7127753,-74.0059728 360,Dover,392,"$7,830 ",15.20%,$811.70 ,59.50%,"$10,658 ","$15,183 ","29,000",Richard J. Tobin,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,24,Downers Grove,IL,41.8089191,-88.0111746 361,Zimmer Biomet Holdings,352,"$7,824 ",1.80%,"$1,813.80 ",492.90%,"$25,965 ","$22,151 ","18,200",Bryan C. Hanson,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,3,Warsaw,IN,41.2381,-85.8530469 362,Dean Foods,351,"$7,795 ",1.10%,$61.60 ,-48.60%,"$2,504 ",$787 ,"16,000",Ralph P. Scozzafava,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,20,Dallas,TX,32.7766642,-96.7969879 363,Foot Locker,348,"$7,782 ",0.20%,$284.00 ,-57.20%,"$3,961 ","$5,379 ","32,175",Richard A. Johnson,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Apparel,24,New York,NY,40.7127753,-74.0059728 364,Eversource Energy,358,"$7,752 ",1.50%,$988.00 ,4.80%,"$36,220 ","$18,671 ","8,084",James J. Judge,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,23,Springfield,MA,42.1014831,-72.589811 365,Alliance Data Systems,378,"$7,719 ",8.10%,$788.70 ,52.90%,"$30,685 ","$11,806 ","20,000",Edward J. Heffernan,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,4,Plano,TX,33.0198431,-96.6988856 366,Fifth Third Bancorp,389,"$7,713 ",12.00%,"$2,194.00 ",40.30%,"$142,193 ","$21,812 ","18,125",Greg D. Carmichael,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,19,Cincinnati,OH,39.1031182,-84.5120196 367,Quest Diagnostics,366,"$7,709 ",2.60%,$772.00 ,19.70%,"$10,503 ","$13,619 ","45,000",Stephen H. Rusckowski,"Chairman, President & Chief Executive Officer",Health Care,Health Care: Pharmacy and Other Services,18,Secaucus,NJ,40.7895453,-74.0565298 368,EMCOR Group,360,"$7,688 ",1.80%,$227.20 ,24.90%,"$3,966 ","$4,549 ","32,000",Anthony J. Guzzi,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",18,Norwalk,CT,41.117744,-73.4081575 369,W.R. Berkley,354,"$7,685 ",0.40%,$549.10 ,-8.80%,"$24,300 ","$8,836 ","7,722",W. Robert Berkley Jr.,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),15,Greenwich,CT,41.0262417,-73.6281964 370,WESCO International,373,"$7,679 ",4.70%,$163.50 ,60.90%,"$4,736 ","$2,920 ","9,100",John J. Engel,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Diversified,20,Pittsburgh,PA,40.4406248,-79.9958864 371,Coty,558,"$7,650 ",75.90%,($422.20),-369.10%,"$22,548 ","$13,723 ","22,000",Camillo Pane,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,1,New York,NY,40.7127753,-74.0059728 372,WEC Energy Group,368,"$7,649 ",2.40%,"$1,203.70 ",28.20%,"$31,591 ","$19,784 ","8,129",Gale E. Klappa,Chairman & Chief Executive Officer,Energy,Utilities: Gas and Electric,9,Milwaukee,WI,43.0389025,-87.9064736 373,Masco,372,"$7,644 ",3.90%,$533.00 ,8.60%,"$5,488 ","$12,590 ","26,000",Keith J. Allman,"President, Chief Executive Officer & Director",Household Products,"Home Equipment, Furnishings",24,Livonia,MI,42.36837,-83.3527097 374,DXC Technology,,"$7,607 ",7.10%,($123.00),-149.00%,"$8,663 ","$28,720 ","60,000",J. Michael Lawrie,"Chairman, President & Chief Executive Officer",Technology,Information Technology Services,1,Tysons,VA,38.9187222,-77.2310925 375,Auto-Owners Insurance,398,"$7,604 ",12.20%,$645.70 ,-8.60%,"$23,694 ",-,"5,227",Jeffrey S. Tagsold,Chief Executive Officer & Director,Financials,Insurance: Property and Casualty (Mutual),16,Lansing,MI,42.732535,-84.5555347 376,Jones Financial (Edward Jones),403,"$7,597 ",14.60%,$872.00 ,16.90%,"$17,176 ",-,45000,James D. Weddle,Chief Executive Officer & Managing Partner,Financials,Securities,6,Des Peres,MO,38.59722,-90.448126 377,Liberty Media,491,"$7,594 ",43.90%,"$1,354.00 ",99.10%,"$41,996 ","$13,816 ","4,393",Gregory B. Maffei,"President, Chief Executive Officer & Director",Media,Entertainment,2,Englewood,CO,39.6477653,-104.9877597 378,Erie Insurance Group,382,"$7,535 ",7.40%,$857.50 ,15.60%,"$20,670 ",-,"5,260",Timothy G. NeCastro,Chief Executive Officer,Financials,Insurance: Property and Casualty (Mutual),15,Erie,PA,42.1292241,-80.085059 379,Hershey,369,"$7,515 ",1.00%,$783.00 ,8.70%,"$5,554 ","$20,774 ","16,135",Michele G. Buck,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,24,Hershey,PA,40.2859239,-76.6502468 380,PPL,365,"$7,447 ",-0.90%,"$1,128.00 ",-40.70%,"$41,479 ","$19,635 ","12,512",William H. Spence,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,24,Allentown,PA,40.6022939,-75.4714098 381,Huntington Ingalls Industries,380,"$7,441 ",5.30%,$479.00 ,-16.40%,"$6,374 ","$11,539 ","38,000",C. Michael Petters,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,6,Newport News,VA,37.0870821,-76.4730122 382,Mosaic,377,"$7,409 ",3.40%,($107.20),-136.00%,"$18,633 ","$9,358 ","8,500",James C. O'Rourke,"President, Chief Executive Officer & Director",Chemicals,Chemicals,13,Plymouth,MN,45.0105194,-93.4555093 383,J.M. Smucker,346,"$7,392 ",-5.40%,$592.30 ,-14.00%,"$15,640 ","$14,087 ","7,140",Mark T. Smucker,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,8,Orrville,OH,40.8436663,-81.7640212 384,Delek US Holdings,480,"$7,350 ",35.70%,$288.80 ,-,"$5,935 ","$3,416 ","3,941",Ezra Uzi Yemin,"Chairman, President & Chief Executive Officer",Energy,Petroleum Refining,4,Brentwood,TN,36.0331164,-86.7827772 385,Newmont Mining,328,"$7,348 ",-12.30%,($98.00),-,"$20,563 ","$20,853 ","12,569",Gary J. Goldberg,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",15,Greenwood Village,CO,39.6172101,-104.9508141 386,Constellation Brands,408,"$7,332 ",12.00%,"$1,535.10 ",45.50%,"$18,602 ","$44,379 ","8,700",Robert S. Sands,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Beverages,6,Victor,NY,42.9825633,-77.4088794 387,Ryder System,394,"$7,330 ",8.00%,$790.60 ,201.20%,"$11,452 ","$3,867 ","36,100",Robert E. Sanchez,"Chairman, President & Chief Executive Officer",Transportation,"Trucking, Truck Leasing",24,Miami,FL,25.7616798,-80.1917902 388,National Oilwell Varco,375,"$7,304 ",0.70%,($237.00),-,"$20,206 ","$13,993 ","31,605",Clay C. Williams,"Chairman, President & Chief Executive Officer",Energy,"Oil and Gas Equipment, Services",13,Houston,TX,29.7604267,-95.3698028 389,Adobe Systems,443,"$7,302 ",24.70%,"$1,694.00 ",44.90%,"$14,536 ","$106,413 ","17,973",Shantanu Narayen,"Chairman, President & Chief Executive Officer",Technology,Computer Software,2,San Jose,CA,37.3382082,-121.8863286 390,LifePoint Health,374,"$7,263 ",-0.10%,$102.40 ,-16.00%,"$6,286 ","$1,832 ","42,000",William F. Carpenter III,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,4,Brentwood,TN,36.0331164,-86.7827772 391,Tractor Supply,396,"$7,256 ",7.00%,$422.60 ,-3.30%,"$2,869 ","$7,807 ","21,000",Gregory A. Sandfort,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,5,Brentwood,TN,36.0331164,-86.7827772 392,Thor Industries,540,"$7,247 ",58.20%,$374.30 ,45.90%,"$2,558 ","$6,069 ","17,800",Robert W. Martin,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,1,Elkhart,IN,41.6819935,-85.9766671 393,Dana,447,"$7,209 ",23.70%,$111.00 ,-82.70%,"$5,644 ","$3,741 ","30,100",James K. Kamsickas,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,24,Maumee,OH,41.5628294,-83.6538244 394,Weyerhaeuser,341,"$7,196 ",-8.90%,$582.00 ,-43.30%,"$18,059 ","$26,463 ","9,300",Doyle R. Simons,"President, Chief Executive Officer & Director",Materials,Forest and Paper Products,24,Seattle,WA,47.6062095,-122.3320708 395,J.B. Hunt Transport Services,407,"$7,190 ",9.70%,$686.30 ,58.80%,"$4,465 ","$12,858 ","24,681",John N. Roberts III,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",6,Lowell,AR,36.2553543,-94.1307587 396,Darden Restaurants,385,"$7,170 ",3.40%,$479.10 ,27.80%,"$5,504 ","$10,531 ","178,729",Eugene I. Lee Jr.,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,22,Orlando,FL,28.5383355,-81.3792365 397,Yum China Holdings,399,"$7,144 ",5.80%,$403.00 ,-19.70%,"$4,263 ","$16,009 ","450,000",Joey Wat,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure",Food Services,2,Plano,TX,33.0198431,-96.6988856 398,Blackstone Group,503,"$7,119 ",38.90%,"$1,470.80 ",41.50%,"$34,429 ","$21,058 ","2,360",Stephen A. Schwarzman,Chairman & Chief Executive Officer,Financials,Diversified Financials,3,New York,NY,40.7127753,-74.0059728 399,Berry Global Group,413,"$7,095 ",9.30%,$340.00 ,44.10%,"$8,476 ","$7,191 ","23,000",Thomas E. Salmon,Chairman & Chief Executive Officer,Materials,"Packaging, Containers",2,Evansville,IN,37.9715592,-87.5710898 400,Builders FirstSource,421,"$7,034 ",10.50%,$38.80 ,-73.10%,"$3,006 ","$2,264 ","15,000",M. Chad Crow,"President, Chief Executive Officer & Director",Materials,"Building Materials, Glass",2,Dallas,TX,32.7766642,-96.7969879 401,Activision Blizzard,406,"$7,017 ",6.20%,$273.00 ,-71.70%,"$18,668 ","$51,177 ","9,800",Robert A. Kotick,Chairman & Chief Executive Officer,Technology,Entertainment,2,Santa Monica,CA,34.0194543,-118.4911912 402,JetBlue Airways,403,"$7,015 ",5.80%,"$1,147.00 ",51.10%,"$9,781 ","$6,540 ","17,424",Robin Hayes,"President, Chief Executive Officer & Director",Transportation,Airlines,6,,NY,40.744679,-73.9485424 403,Amphenol,424,"$7,011 ",11.50%,$650.50 ,-21.00%,"$10,004 ","$26,311 ","70,000",R. Adam Norwitt,"President, Chief Executive Officer & Director",Technology,Network and Other Communications Equipment,4,Wallingford,CT,41.4570108,-72.8230736 404,A-Mark Precious Metals,395,"$6,990 ",3.00%,$7.10 ,-23.60%,$479 ,$86 ,126,Gregory N. Roberts,Chairman & Chief Executive Officer,Materials,Miscellaneous,4,El Segundo,CA,33.9191799,-118.4164652 405,Spirit AeroSystems Holdings,393,"$6,983 ",2.80%,$354.90 ,-24.40%,"$5,268 ","$9,595 ","15,500",Thomas C. Gentile III,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,4,Wichita,KS,37.6871761,-97.330053 406,R.R. Donnelley & Sons,388,"$6,940 ",0.60%,($34.40),-,"$3,905 ",$612 ,"42,700",Daniel L. Knotts,"President, Chief Executive Officer & Director",Media,"Publishing, Printing",24,Chicago,IL,41.8781136,-87.6297982 407,Harris,363,"$6,939 ",-7.80%,$553.00 ,70.70%,"$10,090 ","$19,149 ","17,000",William M. Brown,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,14,Melbourne,FL,28.0836269,-80.6081089 408,Expeditors Intl. of Washington,429,"$6,921 ",13.50%,$489.30 ,13.60%,"$3,117 ","$11,087 ","16,500",Jeffrey S. Musser,"President, Chief Executive Officer & Director",Transportation,Transportation and Logistics,11,Seattle,WA,47.6062095,-122.3320708 409,Discovery,412,"$6,873 ",5.80%,($337.00),-128.20%,"$22,555 ","$11,156 ","7,000",David M. Zaslav,"President, Chief Executive Officer & Director",Media,Entertainment,5,Silver Spring,MD,38.9906657,-77.026088 410,Owens-Illinois,401,"$6,869 ",2.50%,$180.00 ,-13.90%,"$9,756 ","$3,538 ","26,500",Andres A. Lopez,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",24,Perrysburg,OH,41.556996,-83.627157 411,Sanmina,414,"$6,869 ",6.00%,$138.80 ,-26.10%,"$3,847 ","$1,863 ","41,250",Robert K. Eulau,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,18,San Jose,CA,37.3382082,-121.8863286 412,KeyCorp,479,"$6,868 ",26.70%,"$1,296.00 ",63.80%,"$137,698 ","$20,570 ","18,415",Beth E. Mooney,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,20,Cleveland,OH,41.49932,-81.6943605 413,American Financial Group,411,"$6,865 ",5.60%,$475.00 ,-26.80%,"$60,658 ","$9,923 ","7,600",Carl H. Lindner lll/S. Craig Lindner,"President, Co-Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),19,Cincinnati,OH,39.1031182,-84.5120196 414,Oshkosh,425,"$6,830 ",8.80%,$285.60 ,32.00%,"$5,099 ","$5,768 ","14,000",Wilson R. Jones,"President, Chief Executive Officer & Director",Industrials,Construction and Farm Machinery,11,Oshkosh,WI,44.0247062,-88.5426136 415,Rockwell Collins,492,"$6,822 ",29.70%,$705.00 ,-3.20%,"$17,997 ","$22,108 ","29,000",Robert K. Ortberg,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,7,Cedar Rapids,IA,41.9778795,-91.6656232 416,Kindred Healthcare,376,"$6,768 ",-6.40%,($698.40),-,"$5,233 ",$836 ,"64,200",Benjamin A. Breier,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,15,Louisville,KY,38.2526647,-85.7584557 417,Insight Enterprises,473,"$6,704 ",22.20%,$90.70 ,7.10%,"$2,686 ","$1,252 ","6,697",Kenneth T. Lamneck,"President, Chief Executive Officer & Director",Technology,Information Technology Services,10,Tempe,AZ,33.4255104,-111.9400054 418,Dr Pepper Snapple Group,416,"$6,690 ",3.90%,"$1,076.00 ",27.00%,"$10,022 ","$21,278 ","21,000",Larry D. Young,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Beverages,10,Plano,TX,33.0198431,-96.6988856 419,American Tower,449,"$6,664 ",15.20%,"$1,238.90 ",29.50%,"$33,214 ","$64,073 ","4,752",James D. Taiclet Jr.,"Chairman, President & Chief Executive Officer",Financials,Real estate,2,Boston,MA,42.3600825,-71.0588801 420,Fortive,,"$6,656 ",-,"$1,044.50 ",-,"$10,501 ","$26,979 ","26,000",James A. Lico,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,1,Everett,WA,47.9789848,-122.2020795 421,Ralph Lauren,371,"$6,653 ",-10.20%,($99.30),-125.10%,"$5,652 ","$9,088 ","18,250",Patrice Louvet,"President, Chief Executive Officer & Director",Apparel,Apparel,10,New York,NY,40.7127753,-74.0059728 422,HRG Group,418,"$6,650 ",3.90%,$106.00 ,-,"$35,850 ","$3,328 ","17,113",Joseph S. Steinberg,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,5,New York,NY,40.7127753,-74.0059728 423,Ascena Retail Group,384,"$6,650 ",-4.90%,"($1,067.30)",-,"$3,872 ",$394 ,"40,000",David R. Jaffe,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,2,Mahwah,NJ,41.0886216,-74.1435843 424,United Rentals,452,"$6,641 ",15.30%,"$1,346.00 ",137.80%,"$15,030 ","$14,537 ","14,800",Michael J. Kneeland,Chairman & Chief Executive Officer,Business Services,Miscellaneous,5,Stamford,CT,41.0534302,-73.5387341 425,Caseys General Stores,423,"$6,641 ",5.30%,$177.50 ,-21.50%,"$3,020 ","$4,120 ","25,463",Terry W. Handley,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,8,Ankeny,IA,41.7317884,-93.6001278 426,Graybar Electric,420,"$6,631 ",3.90%,$71.60 ,-23.10%,"$2,261 ",-,"8,500",Kathleen M. Mazzarella,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Diversified,24,St. Louis,MO,38.6270025,-90.1994042 427,Avery Dennison,430,"$6,614 ",8.70%,$281.80 ,-12.10%,"$5,137 ","$9,361 ","30,000",Mitchell R. Butier,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",24,Glendale,CA,34.1425078,-118.255075 428,MasTec,502,"$6,607 ",28.70%,$347.20 ,164.50%,"$4,067 ","$3,874 ","17,300",Jose R. Mas,Chief Executive Officer,Engineering & Construction,"Engineering, Construction",1,Coral Gables,FL,25.72149,-80.2683838 429,CMS Energy,419,"$6,583 ",2.90%,$460.00 ,-16.50%,"$23,050 ","$12,793 ","7,887",Patricia K. Poppe,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,24,Jackson,MI,42.245869,-84.4013462 430,HD Supply Holdings,364,"$6,534 ",-13.20%,$970.00 ,394.90%,"$4,318 ","$7,040 ","11,000",Joseph J. DeAngelo,"Chairman, President & Chief Executive Officer",Wholesalers,Wholesalers: Diversified,6,Atlanta,GA,33.7489954,-84.3879824 431,Raymond James Financial,469,"$6,525 ",18.20%,$636.20 ,20.20%,"$34,884 ","$13,019 ","12,700",Paul C. Reilly,Chairman & Chief Executive Officer,Financials,Securities,3,St. Petersburg,FL,27.7676008,-82.6402915 432,NCR,409,"$6,516 ",-0.40%,$232.00 ,-14.10%,"$7,654 ","$3,737 ","34,000",Michael D. Hayford,Chief Executive Officer & Director,Technology,"Computers, Office Equipment",21,Atlanta,GA,33.7489954,-84.3879824 433,Hanesbrands,432,"$6,478 ",6.90%,$61.90 ,-88.50%,"$6,895 ","$6,638 ","67,200",Gerald W. Evans Jr.,Chairman & Chief Executive Officer,Apparel,Apparel,4,Winston-Salem,NC,36.0998596,-80.244216 434,Asbury Automotive Group,410,"$6,457 ",-1.10%,$139.10 ,-16.80%,"$2,357 ","$1,412 ","8,000",David W. Hult,"President, Chief Executive Officer & Director",Retailing,"Automotive Retailing, Services",12,Duluth,GA,34.0028786,-84.1446376 435,Citizens Financial Group,451,"$6,454 ",12.00%,"$1,652.00 ",58.10%,"$152,336 ","$20,474 ","17,594",Bruce W. Van Saun,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,3,Providence,RI,41.8239891,-71.4128343 436,Packaging Corp. of America,450,"$6,445 ",11.50%,$668.60 ,48.70%,"$6,198 ","$10,633 ","14,600",Mark W. Kowlzan,Chairman & Chief Executive Officer,Materials,"Packaging, Containers",4,Lake Forest,IL,42.2586342,-87.840625 437,Alleghany,428,"$6,425 ",4.80%,$90.10 ,-80.30%,"$25,384 ","$9,460 ","4,402",Weston M. Hicks,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),4,New York,NY,40.7127753,-74.0059728 438,Apache,488,"$6,423 ",20.00%,"$1,304.00 ",-,"$21,922 ","$14,678 ","3,356",John J. Christmann IV,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",15,Houston,TX,29.7604267,-95.3698028 439,Dillards,417,"$6,423 ",0.10%,$221.30 ,30.80%,"$3,673 ","$2,289 ","31,400",William T. Dillard II,Chairman & Chief Executive Officer,Retailing,General Merchandisers,24,Little Rock,AR,34.7464809,-92.2895948 440,Assurant,361,"$6,415 ",-14.80%,$519.60 ,-8.10%,"$31,843 ","$4,803 ","14,175",Alan B. Colberg,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),14,New York,NY,40.7127753,-74.0059728 441,Franklin Resources,405,"$6,392 ",-3.40%,"$1,696.70 ",-1.70%,"$17,534 ","$19,133 ","9,386",Gregory E. Johnson,Chairman & Chief Executive Officer,Financials,Securities,13,San Mateo,CA,37.5629917,-122.3255254 442,Owens Corning,458,"$6,384 ",12.50%,$289.00 ,-26.50%,"$8,632 ","$8,982 ","17,000",Michael H. Thaman,"Chairman, President & Chief Executive Officer",Materials,"Building Materials, Glass",24,Toledo,OH,41.6528052,-83.5378674 443,Motorola Solutions,433,"$6,380 ",5.70%,($155.00),-127.70%,"$8,208 ","$17,027 ","15,000",Gregory Q. Brown,Chairman & Chief Executive Officer,Technology,Network and Other Communications Equipment,24,Chicago,IL,41.8781136,-87.6297982 444,NVR,446,"$6,322 ",8.40%,$537.50 ,26.40%,"$2,989 ","$10,262 ","5,200",Paul C. Saville,"President, Chief Executive Officer & Director",Engineering & Construction,Homebuilders,9,Reston,VA,38.9586307,-77.3570028 445,Rockwell Automation,442,"$6,311 ",7.30%,$825.70 ,13.20%,"$7,162 ","$22,260 ","22,000",Blake D. Moret,"Chairman, President & Chief Executive Officer",Industrials,"Electronics, Electrical Equip.",24,Milwaukee,WI,43.0389025,-87.9064736 446,TreeHouse Foods,427,"$6,307 ",2.10%,($286.20),-,"$5,779 ","$2,159 ","13,489",Steven Oakland,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,2,Oak Brook,IL,41.8397865,-87.9535534 447,Wynn Resorts,548,"$6,306 ",41.20%,$747.20 ,208.80%,"$12,682 ","$19,778 ","25,200",Matthew O. Maddox,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",5,Las Vegas,NV,36.1699412,-115.1398296 448,Olin,467,"$6,268 ",12.90%,$549.50 ,-,"$9,218 ","$5,081 ","6,400",John E. Fischer,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,5,Clayton,MO,38.6425518,-90.3237263 449,American Axle & Manufacturing,593,"$6,266 ",58.70%,$337.10 ,40.00%,"$7,883 ","$1,699 ","25,000",David C. Dauch,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,4,Detroit,MI,42.331427,-83.0457538 450,Old Republic International,439,"$6,263 ",6.10%,$560.50 ,20.00%,"$19,404 ","$5,778 ","8,700",Aldo C. Zucaro,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),7,Chicago,IL,41.8781136,-87.6297982 451,Chemours,482,"$6,183 ",14.50%,$746.00 ,10557.10%,"$7,293 ","$8,840 ","7,000",Mark P. Vergnano,"President, Chief Executive Officer & Director",Chemicals,Chemicals,2,Wilmington,DE,39.7390721,-75.5397878 452,iHeartMedia,426,"$6,178 ",-1.50%,($704.40),-,"$12,257 ",$39 ,"18,700",Robert W. Pittman,Chairman & Chief Executive Officer,Media,Entertainment,18,San Antonio,TX,29.4241219,-98.4936282 453,Ameren,431,"$6,177 ",1.70%,$523.00 ,-19.90%,"$25,945 ","$13,740 ","8,615",Warner L. Baxter,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,21,St. Louis,MO,38.6270025,-90.1994042 454,Arthur J. Gallagher,462,"$6,160 ",10.10%,$463.10 ,11.80%,"$12,897 ","$12,512 ","26,783",J. Patrick Gallagher Jr.,"Chairman, President & Chief Executive Officer",Financials,Diversified Financials,3,Rolling Meadows,IL,42.0841936,-88.0131275 455,Celanese,484,"$6,140 ",13.90%,$843.00 ,-6.30%,"$9,538 ","$13,611 ","7,592",Mark C. Rohr,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,13,Irving,TX,32.8140177,-96.9488945 456,Sealed Air,397,"$6,131 ",-9.60%,$814.90 ,67.50%,"$5,280 ","$7,162 ","15,000",Edward L. Doheny II,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",21,Charlotte,NC,35.2270869,-80.8431267 457,UGI,457,"$6,121 ",7.70%,$436.60 ,19.70%,"$11,582 ","$7,685 ","13,000",John L. Walsh,"President, Chief Executive Officer & Director",Energy,Energy,14,King of Prussia,PA,40.1012856,-75.3835525 458,Realogy Holdings,448,"$6,114 ",5.20%,$431.00 ,102.30%,"$7,337 ","$3,568 ","11,800",Ryan M. Schneider,"President, Chief Executive Officer & Director",Financials,Real estate,8,Madison,NJ,40.7598227,-74.417097 459,Burlington Stores,463,"$6,110 ",9.30%,$384.90 ,78.30%,"$2,813 ","$9,018 ","40,000",Thomas A. Kingsbury,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Apparel,3,Burlington,NJ,40.071222,-74.8648873 460,Regions Financial,436,"$6,093 ",2.10%,"$1,263.00 ",8.60%,"$124,294 ","$20,861 ","21,714",O.B. Grayson Hall Jr.,Chairman & Chief Executive Officer,Financials,Commercial Banks,20,Birmingham,AL,33.5206608,-86.80249 461,AK Steel Holding,441,"$6,081 ",3.40%,$6.20 ,-,"$4,296 ","$1,428 ","9,200",Roger K. Newport,Chairman & Chief Executive Officer,Materials,Metals,18,Beckett Ridge,OH,39.3321262,-84.4172666 462,Securian Financial Group,532,"$6,067 ",27.00%,$418.90 ,68.70%,"$51,232 ",-,"5,000",Christopher M. Hilger,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",1,St Paul,MN,44.9537029,-93.0899578 463,S& P Global,459,"$6,063 ",7.10%,"$1,496.00 ",-29.00%,"$9,425 ","$47,643 ","20,400",Douglas L. Peterson,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,24,New York,NY,40.7127753,-74.0059728 464,Markel,460,"$6,062 ",8.00%,$395.30 ,-13.30%,"$32,805 ","$16,264 ","15,600",Thomas S. Gayner/Richard R. Whitt III,Co-Chief Executive Officer & Director,Financials,Insurance: Property and Casualty (Stock),3,Glen Allen,VA,37.665978,-77.5063739 465,TravelCenters of America,470,"$6,052 ",9.80%,$9.30 ,-,"$1,618 ",$144 ,"19,611",Andrew J. Rebholz,Chief Executive Officer & Director,Retailing,Specialty Retailers: Other,11,Westlake,OH,41.4553232,-81.9179173 466,Conduent,,"$6,022 ",-,$181.00 ,-,"$7,548 ","$3,923 ","90,000",Ashok Vemuri,Chairman & Chief Executive Officer,Business Services,Diversified Outsourcing Services,1,Florham Park,NJ,40.787878,-74.3882072 467,M& T Bank Corp.,455,"$6,019 ",5.20%,"$1,408.30 ",7.10%,"$118,594 ","$27,379 ","16,354",Ren� F. Jones,Chairman & Chief Executive Officer,Financials,Commercial Banks,3,Buffalo,NY,42.8864468,-78.8783689 468,Clorox,453,"$5,973 ",3.70%,$701.00 ,8.20%,"$4,573 ","$17,225 ","8,100",Benno O. Dorer,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,19,Oakland,CA,37.8043637,-122.2711137 469,AmTrust Financial Services,475,"$5,959 ",9.30%,($348.90),-184.90%,"$25,219 ","$2,416 ","9,300",Barry D. Zyskind,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Stock),2,New York,NY,40.7127753,-74.0059728 470,KKR,656,"$5,930 ",71.40%,"$1,018.30 ",229.20%,"$45,835 ","$9,882 ","1,184",Henry R. Kravis/George R. Roberts,Co-Chairman & Co-Chief Executive Officer,Financials,Securities,6,New York,NY,40.7127753,-74.0059728 471,Ulta Beauty,524,"$5,885 ",21.20%,$555.20 ,35.50%,"$2,909 ","$12,459 ","24,200",Mary N. Dillon,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,1,Bolingbrook,IL,41.6986416,-88.0683955 472,Yum Brands,422,"$5,878 ",-7.70%,"$1,340.00 ",-17.20%,"$5,311 ","$28,307 ","60,000",Greg Creed,Chief Executive Officer & Director,"Hotels, Restaurants & Leisure",Food Services,20,Louisville,KY,38.2526647,-85.7584557 473,Regeneron Pharmaceuticals,523,"$5,872 ",20.80%,"$1,198.50 ",33.80%,"$8,764 ","$37,087 ","6,200",Leonard S. Schleifer,"President, Chief Executive Officer & Director",Health Care,Pharmaceuticals,1,Tarrytown,NY,41.0762077,-73.8587461 474,Windstream Holdings,485,"$5,853 ",8.60%,"($2,116.60)",-,"$11,084 ",$289 ,"12,979",Anthony W. Thomas,"President, Chief Executive Officer & Director",Telecommunications,Telecommunications,6,Little Rock,AR,34.7464809,-92.2895948 475,Magellan Health,526,"$5,838 ",20.70%,$110.20 ,41.50%,"$2,957 ","$2,605 ","10,700",Barry M. Smith,Chairman & Chief Executive Officer,Health Care,Health Care: Insurance and Managed Care,1,Scottsdale,AZ,33.4941704,-111.9260519 476,Western & Southern Financial,483,"$5,836 ",8.10%,$310.40 ,28.70%,"$46,395 ",-,"2,226",John F. Barrett,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (Mutual)",14,Cincinnati,OH,39.1031182,-84.5120196 477,Intercontinental Exchange,437,"$5,834 ",-2.10%,"$2,514.00 ",76.80%,"$78,264 ","$42,132 ","4,952",Jeffrey C. Sprecher,Chairman & Chief Executive Officer,Financials,Securities,2,Atlanta,GA,33.7489954,-84.3879824 478,Ingredion,456,"$5,832 ",2.30%,$519.00 ,7.00%,"$6,080 ","$9,313 ","11,000",James P. Zallie,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Production,7,Westchester,IL,41.8498339,-87.8806738 479,Wyndham Destinations,461,"$5,821 ",4.00%,$871.00 ,42.60%,"$10,403 ","$11,411 ","39,200",Michael D. Brown,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",5,Parsippany-Troy Hills,NJ,40.8652865,-74.4173877 480,Toll Brothers,497,"$5,815 ",12.50%,$535.50 ,40.10%,"$9,445 ","$6,566 ","4,500",Douglas C. Yearley Jr.,Chairman & Chief Executive Officer,Engineering & Construction,Homebuilders,6,Horsham,PA,40.1784422,-75.1285061 481,Seaboard,486,"$5,809 ",8.00%,$247.00 ,-20.80%,"$5,161 ","$4,992 ","11,800",Steven J. Bresky,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Production,8,Merriam,KS,39.0236165,-94.6935701 482,Booz Allen Hamilton,481,"$5,804 ",7.40%,$252.50 ,-14.10%,"$3,373 ","$5,617 ","23,300",Horacio D. Rozanski,"President, Chief Executive Officer & Director",Technology,Information Technology Services,8,McLean,VA,38.9338676,-77.1772604 483,First American Financial,464,"$5,772 ",3.50%,$423.00 ,23.30%,"$9,573 ","$6,511 ","18,705",Dennis J. Gilmore,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),4,Santa Ana,CA,33.7454725,-117.867653 484,Cincinnati Financial,476,"$5,732 ",5.20%,"$1,045.00 ",76.90%,"$21,843 ","$12,185 ","4,925",Steven J. Johnston,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),4,Fairfield,OH,39.3454673,-84.5603187 485,Avon Products,444,"$5,716 ",-2.30%,$22.00 ,-,"$3,698 ","$1,251 ","25,000",Jan Zijderveld,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,24,Rye,NY,40.9806535,-73.6837399 486,Northern Trust,501,"$5,716 ",11.10%,"$1,199.00 ",16.10%,"$138,591 ","$23,264 ","18,100",Michael G. O'Grady,"President, Chief Executive Officer & Director",Financials,Commercial Banks,7,Chicago,IL,41.8781136,-87.6297982 487,Fiserv,471,"$5,696 ",3.50%,"$1,246.00 ",34.00%,"$10,289 ","$29,466 ","24,000",Jeffery W. Yabuki,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,8,Brookfield,WI,43.0605671,-88.1064787 488,Harley-Davidson,435,"$5,647 ",-5.80%,$521.80 ,-24.60%,"$9,973 ","$7,198 ","5,800",Matthew S. Levatich,"President, Chief Executive Officer & Director",Transportation,Transportation Equipment,17,Milwaukee,WI,43.0389025,-87.9064736 489,Cheniere Energy,,"$5,601 ",336.50%,($393.00),-,"$27,906 ","$12,703 ","1,230",Jack A. Fusco,"President, Chief Executive Officer & Director",Energy,Energy,1,Houston,TX,29.7604267,-95.3698028 490,Patterson,466,"$5,593 ",0.70%,$170.90 ,-8.70%,"$3,508 ","$2,104 ","7,500",Mark S. Walchirk,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Health Care,2,St Paul,MN,44.9537029,-93.0899578 491,Peabody Energy,533,"$5,579 ",18.30%,-,-,"$8,181 ","$4,649 ","7,100",Glenn L. Kellow,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",13,St. Louis,MO,38.6270025,-90.1994042 492,ON Semiconductor,598,"$5,543 ",41.90%,$810.70 ,345.20%,"$7,195 ","$10,406 ","34,000",Keith D. Jackson,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,1,Phoenix,AZ,33.4483771,-112.0740373 493,Simon Property Group,477,"$5,539 ",1.90%,"$1,948.00 ",5.90%,"$32,258 ","$47,861 ","4,150",David E. Simon,Chairman & Chief Executive Officer,Financials,Real estate,5,Indianapolis,IN,39.768403,-86.158068 494,Western Union,478,"$5,524 ",1.90%,($557.10),-320.00%,"$9,231 ","$8,857 ","11,500",Hikmet Ersek,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,12,Englewood,CO,39.6477653,-104.9877597 495,NetApp,468,"$5,519 ",-0.50%,$509.00 ,122.30%,"$9,493 ","$16,528 ","10,100",George Kurian,"President, Chief Executive Officer & Director",Technology,"Computers, Office Equipment",7,Sunnyvale,CA,37.36883,-122.0363496 496,Polaris Industries,537,"$5,505 ",19.80%,$172.50 ,-19.00%,"$3,090 ","$7,224 ","11,000",Scott W. Wine,Chairman & Chief Executive Officer,Transportation,Transportation Equipment,1,Medina,MN,45.0352411,-93.5824586 497,Pioneer Natural Resources,606,"$5,455 ",42.70%,$833.00 ,-,"$17,003 ","$29,254 ","3,836",Timothy L. Dove,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",2,Irving,TX,32.8140177,-96.9488945 498,ABM Industries,500,"$5,454 ",6.00%,$3.80 ,-93.40%,"$3,813 ","$2,200 ","140,000",Scott B. Salmirs,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,3,New York,NY,40.7127753,-74.0059728 499,Vistra Energy,499,"$5,430 ",5.20%,($254.00),-,"$14,600 ","$8,925 ","4,150",Curtis A. Morgan,"President, Chief Executive Officer & Director",Energy,Energy,2,Irving,TX,32.8140177,-96.9488945 500,Cintas,520,"$5,429 ",10.70%,$480.70 ,-30.70%,"$6,844 ","$18,165 ","42,000",Scott D. Farmer,Chairman & Chief Executive Officer,Business Services,Diversified Outsourcing Services,1,Cincinnati,OH,39.1031182,-84.5120196 501,Hess,525,"$5,405 ",11.60%,"($4,074.00)",-,"$23,112 ","$15,948 ","2,075",John B. Hess,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",-,New York,NY,40.7127753,-74.0059728 502,Host Hotels & Resorts,472,"$5,387 ",-1.80%,$564.00 ,-26.00%,"$11,693 ","$13,822 ",205,James F. Risoleo,"President, Chief Executive Officer & Director",Financials,Real estate,-,Bethesda,MD,38.984652,-77.0947092 503,Kelly Services,490,"$5,374 ",1.80%,$71.60 ,-40.70%,"$2,378 ","$1,116 ","7,800",George S. Corona,"President, Chief Executive Officer & Director",Business Services,Temporary Help,-,Troy,MI,42.6064095,-83.1497751 504,Genesis Healthcare,454,"$5,374 ",-6.30%,($579.00),-,"$4,788 ",$241 ,"68,700",George V. Hager Jr.,Chief Executive Officer & Director,Health Care,Health Care: Medical Facilities,-,Kennett Square,PA,39.8467767,-75.7116032 505,Michaels Cos.,496,"$5,362 ",3.20%,$390.50 ,3.30%,"$2,300 ","$3,586 ","30,500",Carl S. Rubin,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Irving,TX,32.8140177,-96.9488945 506,Advanced Micro Devices,565,"$5,329 ",24.70%,$43.00 ,-,"$3,540 ","$9,740 ","8,900",Lisa T. Su,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Santa Clara,CA,37.3541079,-121.9552356 507,Zoetis,521,"$5,307 ",8.60%,$864.00 ,5.20%,"$8,586 ","$40,524 ","9,200",Juan Ram�n Alaix,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,-,Parsippany-Troy Hills,NJ,40.8652865,-74.4173877 508,Williams-Sonoma,506,"$5,292 ",4.10%,$259.50 ,-15.00%,"$2,786 ","$4,441 ","19,350",Laura J. Alber,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,-,SF,CA,37.7749295,-122.4194155 509,Fortune Brands Home & Security,511,"$5,283 ",6.00%,$472.60 ,14.40%,"$5,511 ","$8,717 ","23,870",Christopher J. Klein,Chairman & Chief Executive Officer,Household Products,"Home Equipment, Furnishings",-,Deerfield,IL,42.1711365,-87.8445119 510,Big Lots,495,"$5,271 ",1.40%,$189.80 ,24.20%,"$1,652 ","$1,830 ","22,900",Lisa M. Bachmann,Executive V.P.-Principal Executive Officer,Retailing,Specialty Retailers: Other,-,Columbus,OH,39.9611755,-82.9987942 511,Robert Half International,493,"$5,267 ",0.30%,$290.60 ,-15.40%,"$1,868 ","$7,194 ","17,200",Harold M. Messmer Jr.,Chairman & Chief Executive Officer,Business Services,Temporary Help,-,Menlo Park,CA,37.4529598,-122.1817252 512,Post Holdings,508,"$5,226 ",4.00%,$48.30 ,-,"$11,877 ","$4,968 ","11,410",Robert V. Vitale,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,-,St. Louis,MO,38.6270025,-90.1994042 513,Hasbro,509,"$5,210 ",3.80%,$396.60 ,-28.10%,"$5,290 ","$10,468 ","5,400",Brian D. Goldner,Chairman & Chief Executive Officer,Household Products,"Toys, Sporting Goods",-,Pawtucket,RI,41.878711,-71.3825558 514,Hanover Insurance Group,517,"$5,184 ",4.80%,$186.20 ,20.10%,"$15,470 ","$5,017 ","4,600",John C. Roche,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),-,Worcester,MA,42.2625932,-71.8022934 515,Navient,514,"$5,179 ",4.30%,$292.00 ,-57.10%,"$114,991 ","$3,456 ","6,700",John F. Remondi,"President, Chief Executive Officer & Director",Financials,Diversified Financials,-,Wilmington,DE,39.7390721,-75.5397878 516,Intuit,527,"$5,177 ",7.20%,$971.00 ,-0.80%,"$4,068 ","$44,397 ","8,200",Brad D. Smith,"Chairman, President & Chief Executive Officer",Technology,Computer Software,-,Mountain View,CA,37.3860517,-122.0838511 517,Domtar,505,"$5,157 ",1.20%,($258.00),-301.60%,"$5,212 ","$2,667 ","10,000",John D. Williams,"President, Chief Executive Officer & Director",Materials,Forest and Paper Products,-,Fort Mill,SC,35.0073697,-80.9450759 518,Marathon Oil,536,"$5,153 ",10.80%,"($5,723.00)",-,"$22,012 ","$13,707 ","2,300",Lee M. Tillman,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",-,Houston,TX,29.7604267,-95.3698028 519,Cerner,530,"$5,142 ",7.20%,$867.00 ,36.20%,"$6,469 ","$19,291 ","26,000",D. Brent Shafer,Chairman & Chief Executive Officer,Health Care,Health Care: Pharmacy and Other Services,-,North Kansas City,MO,39.1429081,-94.5729781 520,Analog Devices,660,"$5,108 ",49.30%,$727.30 ,-15.60%,"$21,141 ","$33,700 ","15,300",Vincent T. Roche,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Norwood,MA,42.1943909,-71.1989695 521,Telephone & Data Systems,504,"$5,044 ",-1.20%,$153.00 ,255.80%,"$9,295 ","$3,115 ","9,900",LeRoy T. Carlson Jr.,"President, Chief Executive Officer & Director",Telecommunications,Telecommunications,-,Chicago,IL,41.8781136,-87.6297982 522,Essendant,487,"$5,037 ",-6.20%,($267.00),-518.10%,"$1,774 ",$294 ,"6,400",Richard D. Phillips,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Electronics and Office Equipment,-,Deerfield,IL,42.1711365,-87.8445119 523,Sonoco Products,531,"$5,037 ",5.30%,$175.30 ,-38.80%,"$4,558 ","$4,829 ","21,000",Robert C. Tiede,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Hartsville,SC,34.3740431,-80.0734005 524,Juniper Networks,510,"$5,027 ",0.70%,$306.20 ,-48.30%,"$9,834 ","$8,364 ","9,381",Rami Rahim,Chairman & Chief Executive Officer,Technology,Network and Other Communications Equipment,-,Sunnyvale,CA,37.36883,-122.0363496 525,Commercial Metals,535,"$4,999 ",7.50%,$46.30 ,-15.40%,"$2,975 ","$2,394 ","8,797",Barbara R. Smith,"Chairman, President & Chief Executive Officer",Materials,Metals,-,Irving,TX,32.8140177,-96.9488945 526,CSRA,570,"$4,993 ",17.50%,$304.00 ,248.80%,"$4,888 ","$6,759 ","18,500",Lawrence B. Prior III,Chief Executive Officer & Director,Technology,Information Technology Services,-,Falls Church,VA,38.882334,-77.1710914 527,Under Armour,528,"$4,977 ",3.10%,($48.30),-118.80%,"$4,006 ","$6,756 ","11,350",Kevin A. Plank,Chairman & Chief Executive Officer,Apparel,Apparel,-,Baltimore,MD,39.2903848,-76.6121893 528,RPM International,529,"$4,958 ",3.00%,$181.80 ,-48.70%,"$5,090 ","$6,372 ","14,318",Frank C. Sullivan,Chairman & Chief Executive Officer,Chemicals,Chemicals,-,Medina,OH,41.143245,-81.8552196 529,Total System Services,579,"$4,928 ",18.20%,$586.20 ,83.40%,"$6,332 ","$15,676 ","11,800",M. Troy Woods,"Chairman, President & Chief Executive Officer",Business Services,Financial Data Services,-,Columbus,GA,32.4609764,-84.9877094 530,Levi Strauss,542,"$4,904 ",7.70%,$281.40 ,-3.30%,"$3,355 ",$0 ,"13,800",Charles V. Bergh,"President, Chief Executive Officer & Director",Apparel,Apparel,-,SF,CA,37.7749295,-122.4194155 531,Brunswick,547,"$4,898 ",9.10%,$146.40 ,-47.00%,"$3,358 ","$5,188 ","15,116",Mark D. Schwabero,Chairman & Chief Executive Officer,Transportation,Transportation Equipment,-,Libertyville,IL,42.2333571,-87.9259058 532,YRC Worldwide,534,"$4,891 ",4.10%,($10.80),-150.20%,"$1,586 ",$299 ,"32,000",Darren D. Hawkins,Chief Executive Officer,Transportation,"Trucking, Truck Leasing",-,Overland Park,KS,38.9822282,-94.6707917 533,Mattel,474,"$4,882 ",-10.50%,"($1,053.80)",-431.40%,"$6,239 ","$4,523 ","28,000",Ynon Kreiz,Chief Executive Officer,Household Products,"Toys, Sporting Goods",-,El Segundo,CA,33.9191799,-118.4164652 534,FM Global,557,"$4,875 ",11.50%,$254.10 ,-68.10%,"$23,247 ",-,"5,441",Thomas A. Lawson,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Stock),-,Johnston,RI,41.8205199,-71.512617 535,NiSource,545,"$4,875 ",8.50%,$128.50 ,-61.20%,"$19,962 ","$8,068 ","8,175",Joseph Hamrock,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Merrillville,IN,41.4828144,-87.3328139 536,Caesars Entertainment,541,"$4,852 ",6.50%,($375.00),-,"$25,512 ","$7,838 ","65,000",Mark P. Frissora,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Las Vegas,NV,36.1699412,-115.1398296 537,Electronic Arts,556,"$4,845 ",10.20%,$967.00 ,-16.30%,"$7,718 ","$37,188 ","8,800",Andrew Wilson,Chief Executive Officer & Director,Technology,Entertainment,-,Redwood City,CA,37.4852152,-122.2363548 538,Dynegy,561,"$4,842 ",12.10%,$76.00 ,-,"$11,771 ","$1,952 ","2,489",Curtis A. Morgan,CEO-Vistra Energy,Energy,Energy,-,Houston,TX,29.7604267,-95.3698028 539,McCormick,553,"$4,834 ",9.60%,$477.40 ,1.10%,"$10,386 ","$13,964 ","11,700",Lawrence E. Kurzius,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Consumer Products,-,Sparks Glencoe,MD,39.5309389,-76.6458043 540,T. Rowe Price,573,"$4,793 ",13.50%,"$1,497.80 ",23.30%,"$7,535 ","$26,409 ","6,881",William J. Stromberg,"President, Chief Executive Officer & Director",Financials,Securities,-,Baltimore,MD,39.2903848,-76.6121893 541,Orbital ATK,549,"$4,764 ",6.90%,$310.00 ,5.80%,"$5,666 ","$7,665 ","13,900",Blake Larson,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,-,Sterling,VA,38.9624899,-77.4380485 542,Tutor Perini,513,"$4,757 ",-4.30%,$148.40 ,54.90%,"$4,264 ","$1,098 ","10,061",Ronald N. Tutor,Chairman & Chief Executive Officer,Engineering & Construction,"Engineering, Construction",-,Los Angeles,CA,34.3058279,-118.4571974 543,Brookdale Senior Living,512,"$4,747 ",-4.60%,($571.40),-,"$7,675 ","$1,252 ","62,550",Lucinda M. Baier,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,-,Brentwood,TN,36.0331164,-86.7827772 544,Huntington Bancshares,610,"$4,740 ",25.30%,"$1,186.00 ",66.60%,"$104,185 ","$16,209 ","15,770",Stephen D. Steinour,"Chairman, President & Chief Executive Officer",Financials,Commercial Banks,-,Columbus,OH,39.9611755,-82.9987942 545,Wayfair,666,"$4,721 ",39.70%,($244.60),-,"$1,213 ","$5,977 ","7,751",Niraj S. Shah,"Co-Chairman, President & Chief Executive Officer",Technology,Internet Services and Retailing,-,Boston,MA,42.3600825,-71.0588801 546,Rush Enterprises,575,"$4,714 ",11.80%,$172.10 ,324.20%,"$2,890 ","$1,609 ","6,825",W. M. Rush,"Chairman, President & Chief Executive Officer",Retailing,"Automotive Retailing, Services",-,New Braunfels,TX,29.7030024,-98.1244531 547,Xylem,611,"$4,707 ",24.80%,$331.00 ,27.30%,"$6,860 ","$13,839 ","16,200",Patrick K. Decker,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Rye Brook,NY,41.0192641,-73.6834621 548,Neiman Marcus Group,515,"$4,706 ",-4.90%,($531.80),-,"$7,704 ",-,"13,700",Geoffroy van Raemdonck,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Dallas,TX,32.7766642,-96.7969879 549,Hyatt Hotels,552,"$4,685 ",5.80%,$249.00 ,22.10%,"$7,672 ","$9,054 ","45,000",Mark S. Hoplamazian,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Chicago,IL,41.8781136,-87.6297982 550,Sprouts Farmers Market,585,"$4,665 ",15.30%,$158.40 ,27.50%,"$1,582 ","$3,122 ","27,000",Amin N. Maredia,Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,-,Phoenix,AZ,33.4483771,-112.0740373 551,Diebold Nixdorf,672,"$4,609 ",38.00%,($233.10),-,"$5,250 ","$1,170 ","23,000",Gerrard B. Schmid,"President, Chief Executive Officer & Director",Technology,"Computers, Office Equipment",-,North Canton,OH,40.875891,-81.4023356 552,Roper Technologies,609,"$4,608 ",21.60%,$971.80 ,47.50%,"$14,316 ","$28,862 ","14,236",Brian D. Jellison,"Chairman, President & Chief Executive Officer",Technology,"Scientific,Photographic and Control Equipment",-,Sarasota,FL,27.3364347,-82.5306527 553,Smart & Final Stores,559,"$4,571 ",5.30%,($138.90),-1172.90%,"$1,810 ",$412 ,"7,570",David G. Hirz,"President, Chief Executive Officer & Director",Food & Drug Stores,Food and Drug Stores,-,Commerce,CA,34.0005691,-118.1597929 554,CommScope Holding,518,"$4,561 ",-7.40%,$193.80 ,-13.00%,"$7,042 ","$7,670 ","20,000",Marvin S. Edwards Jr.,"President, Chief Executive Officer & Director",Technology,Network and Other Communications Equipment,-,Newton,NC,35.7344538,-81.3444573 555,Tapestry,546,"$4,488.30 ",-0.10%,$591.00 ,28.30%,"$5,831.60 ","$14,988 ",12450,Victor Luis,Chairman & Chief Executive Officer,Apparel,Apparel,-,New York City,NY,40.7127753,-74.0059728 556,Diplomat Pharmacy,554,"$4,485 ",1.70%,$15.50 ,-45.10%,"$1,940 ","$1,493 ","2,298",Brian Griffin,Interim Chief Executive Officer & Director,Health Care,Health Care: Pharmacy and Other Services,-,Flint,MI,43.0125274,-83.6874562 557,Chipotle Mexican Grill,599,"$4,476 ",14.70%,$176.30 ,668.40%,"$2,046 ","$9,025 ","68,890",Brian R. Niccol,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure",Food Services,-,Denver,CO,39.7392358,-104.990251 558,Agilent Technologies,576,"$4,472 ",6.40%,$684.00 ,48.10%,"$8,426 ","$21,574 ","13,500",Michael R. McMullen,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",-,Santa Clara,CA,37.3541079,-121.9552356 559,Science Applications International,551,"$4,454 ",0.30%,$179.00 ,25.20%,"$2,073 ","$3,332 ","15,391",Anthony J. Moraco,Chairman & Chief Executive Officer,Technology,Information Technology Services,-,Reston,VA,38.9586307,-77.3570028 560,MDU Resources Group,569,"$4,444 ",4.50%,$281.20 ,336.40%,"$6,335 ","$5,500 ","10,140",David L. Goodin,"President, Chief Executive Officer & Director",Energy,Energy,-,Bismarck,ND,46.8083268,-100.7837392 561,Select Medical Holdings,563,"$4,444 ",3.70%,$177.20 ,53.50%,"$5,127 ","$2,313 ","36,050",David S. Chernow,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,-,Mechanicsburg,PA,40.2142565,-77.0085876 562,Boise Cascade,597,"$4,432 ",13.30%,$83.00 ,116.90%,"$1,607 ","$1,500 ","6,370",Thomas K. Corrick,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,-,Boise,ID,43.6150186,-116.2023137 563,National General Holdings,643,"$4,431 ",24.70%,$105.80 ,-39.80%,"$8,440 ","$2,598 ","7,570",Barry Karfunkel,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),-,New York,NY,40.7127753,-74.0059728 564,SCANA,572,"$4,407 ",4.30%,($119.00),-120.00%,"$18,739 ","$5,356 ","5,228",Jimmy E. Addison,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Cayce,SC,33.9657091,-81.0739827 565,Graphic Packaging Holding,562,"$4,404 ",2.50%,$300.20 ,31.70%,"$4,863 ","$4,754 ","13,000",Michael P. Doss,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Atlanta,GA,33.7489954,-84.3879824 566,Fastenal,591,"$4,391 ",10.80%,$578.60 ,15.80%,"$2,911 ","$15,703 ","20,565",Daniel L. Florness,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Winona,MN,44.0553908,-91.6663523 567,Schneider National,,"$4,384 ",8.40%,$389.90 ,148.60%,"$3,331 ","$4,610 ","19,600",Christopher B. Lofgren,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",-,Green Bay,WI,44.5133188,-88.0132958 568,Laureate Education,571,"$4,378 ",3.20%,$91.50 ,-75.40%,"$7,392 ","$2,578 ","54,500",Eilif Serck-Hanssen,Chairman & Chief Executive Officer,Business Services,Education,-,Baltimore,MD,39.2903848,-76.6121893 569,Beacon Roofing Supply,582,"$4,377 ",6.00%,$100.90 ,12.20%,"$3,450 ","$3,609 ","5,406",Paul M. Isabella,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Herndon,VA,38.9695545,-77.3860976 570,KB Home,634,"$4,369 ",21.50%,$180.60 ,71.00%,"$5,042 ","$2,468 ","1,915",Jeffrey T. Mezger,"Chairman, President & Chief Executive Officer",Engineering & Construction,Homebuilders,-,Los Angeles,CA,34.0522342,-118.2436849 571,Equinix,624,"$4,368 ",19.30%,$233.00 ,83.70%,"$18,692 ","$33,128 ","7,273",Peter F. Van Camp,"Chairman, President & Interim Chief Executive Officer",Financials,Real estate,-,Redwood City,CA,37.4852152,-122.2363548 572,Terex,445,"$4,363 ",-25.30%,$128.70 ,-,"$3,463 ","$3,030 ","10,700",John L. Garrison Jr.,"President, Chief Executive Officer & Director",Industrials,Construction and Farm Machinery,-,Westport,CT,41.1414717,-73.3579049 573,Crown Castle International,596,"$4,356 ",11.10%,$444.60 ,24.50%,"$32,230 ","$45,452 ","4,500",Jay A. Brown,"President, Chief Executive Officer & Director",Financials,Real estate,-,Houston,TX,29.7604267,-95.3698028 574,CACI International,615,"$4,355 ",16.30%,$163.70 ,14.60%,"$3,911 ","$3,727 ","18,600",Kenneth Asbury,"President, Chief Executive Officer & Director",Technology,Information Technology Services,-,Arlington,VA,38.8816208,-77.0909809 575,Watsco,574,"$4,342 ",2.90%,$208.20 ,13.90%,"$2,047 ","$6,752 ","5,200",Albert H. Nahmad,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,-,Miami,FL,25.7616798,-80.1917902 576,Coca-Cola Bottling,701,"$4,324 ",37.00%,$96.50 ,92.50%,"$3,073 ","$1,615 ","15,500",J. Frank Harrison III,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Beverages,-,Charlotte,NC,35.2270869,-80.8431267 577,Welltower,564,"$4,317 ",0.80%,$522.80 ,-51.50%,"$27,944 ","$20,246 ",392,Thomas J. DeRosa,Chairman & Chief Executive Officer,Financials,Real estate,-,Toledo,OH,41.6528052,-83.5378674 578,ADT,,"$4,316 ",46.30%,$342.60 ,-,"$17,015 ","$5,941 ","18,000",Timothy J. Whall,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Boca Raton,FL,26.3683064,-80.1289321 579,Ametek,604,"$4,300 ",12.00%,$681.50 ,33.10%,"$7,796 ","$17,590 ","16,900",David A. Zapico,Chairman & Chief Executive Officer,Technology,"Scientific,Photographic and Control Equipment",-,Berwyn,PA,40.045824,-75.4395931 580,CNO Financial Group,590,"$4,297 ",7.80%,$175.60 ,-51.00%,"$33,110 ","$3,630 ","3,300",Gary C. Bhojwani,Chairman & Chief Executive Officer,Financials,"Insurance: Life, Health (stock)",-,Carmel,IN,39.978371,-86.1180435 581,Camping World Holdings,648,"$4,285 ",21.80%,$28.40 ,-85.20%,"$2,562 ","$3,084 ","10,227",Marcus A. Lemonis,Chairman & Chief Executive Officer,Retailing,"Automotive Retailing, Services",-,Lincolnshire,IL,42.1900249,-87.9084039 582,LPL Financial Holdings,584,"$4,282 ",5.70%,$238.90 ,24.50%,"$5,359 ","$5,510 ","3,736",Dan H. Arnold,"President, Chief Executive Officer & Director",Financials,Securities,-,Boston,MA,42.3600825,-71.0588801 583,Noble Energy,653,"$4,256 ",21.90%,"($1,118.00)",-,"$21,476 ","$14,913 ","2,277",David L. Stover,"Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",-,Houston,TX,29.7604267,-95.3698028 584,Bloomin Brands,568,"$4,213 ",-0.90%,$100.20 ,140.10%,"$2,573 ","$2,256 ","94,000",Elizabeth A. Smith,"Chairman, President & Chief Executive Officer","Hotels, Restaurants & Leisure",Food Services,-,Tampa,FL,27.950575,-82.4571776 585,Moodys,631,"$4,204 ",16.60%,"$1,000.60 ",275.30%,"$8,594 ","$30,826 ","11,896",Raymond W. McDaniel Jr.,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,-,New York,NY,40.7127753,-74.0059728 586,Symantec,465,"$4,191 ",-24.70%,($106.00),-104.30%,"$18,174 ","$16,067 ","13,000",Gregory S. Clark,Chairman & Chief Executive Officer,Technology,Computer Software,-,Mountain View,CA,37.3860517,-122.0838511 587,Amkor Technology,600,"$4,187 ",7.50%,$260.70 ,58.80%,"$4,522 ","$2,425 ","29,300",Stephen D. Kelley,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Tempe,AZ,33.4255104,-111.9400054 588,Skechers U.S.A.,638,"$4,181 ",16.90%,$179.20 ,-26.40%,"$2,735 ","$6,231 ","8,150",Robert Greenberg,Chairman & Chief Executive Officer,Apparel,Apparel,-,Manhattan Beach,CA,33.8847361,-118.4109089 589,KBR,567,"$4,171 ",-2.30%,$434.00 ,-,"$3,674 ","$2,271 ","20,000",Stuart Bradie,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",-,Houston,TX,29.7604267,-95.3698028 590,Tiffany,588,"$4,170 ",4.20%,$370.10 ,-17.00%,"$5,468 ","$12,149 ","13,100",Alessandro Bogliolo,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,New York,NY,40.7127753,-74.0059728 591,Torchmark,580,"$4,156 ",0.00%,"$1,454.50 ",164.60%,"$23,475 ","$9,583 ","3,102",Gary L. Coleman/Larry M. Hutchison,Co-Chairman & Co-Chief Executive Officer,Financials,"Insurance: Life, Health (stock)",-,McKinney,TX,33.1972465,-96.6397822 592,Broadridge Financial Solutions,749,"$4,143 ",43.00%,$326.80 ,6.30%,"$3,150 ","$12,796 ","10,000",Richard J. Daly,Chairman & Chief Executive Officer,Business Services,Financial Data Services,-,Lake Success,NY,40.7706572,-73.7176312 593,Quad/Graphics,560,"$4,131.40 ",-4.60%,$107.20 ,138.80%,"$2,452.40 ","$1,336 ",21100,J. Joel Quadracci,"Chairman, President & Chief Executive Officer",Media,"Publishing, Printing",-,Sussex,WI,43.13418,-88.22294 594,CF Industries Holdings,622,"$4,130 ",12.10%,$357.70 ,-,"$13,463 ","$8,805 ","2,950",W. Anthony Will,"President, Chief Executive Officer & Director",Chemicals,Chemicals,-,Deerfield,IL,42.1711365,-87.8445119 595,Carlisle,623,"$4,090 ",11.30%,$365.50 ,46.10%,"$5,300 ","$6,408 ","14,800",D. Christian Koch,"President, Chief Executive Officer & Director",Materials,"Building Materials, Glass",-,Scottsdale,AZ,33.4941704,-111.9260519 596,Silgan Holdings,629,"$4,090 ",13.20%,$269.70 ,75.80%,"$4,645 ","$3,074 ","12,515",Anthony J. Allott,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Stamford,CT,41.0534302,-73.5387341 597,Bemis,587,"$4,046 ",1.00%,$94.00 ,-60.20%,"$3,700 ","$4,002 ","16,582",William F. Austen,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Neenah,WI,44.1858193,-88.462609 598,CA,583,"$4,036 ",-0.40%,$775.00 ,-1.00%,"$12,610 ","$14,134 ","11,800",Michael P. Gregoire,Chairman & Chief Executive Officer,Technology,Computer Software,-,New York,NY,40.7127753,-74.0059728 599,Hub Group,640,"$4,035 ",12.90%,$135.20 ,80.70%,"$1,671 ","$1,439 ","4,377",David P. Yeager,Chairman & Chief Executive Officer,Transportation,Transportation and Logistics,-,Oak Brook,IL,41.8397865,-87.9535534 600,Worldpay,637,"$4,027 ",12.50%,$130.10 ,-39.00%,"$8,667 ","$25,915 ","3,560",Charles D. Drucker/Philip E.R. Jansen,Chairman & Co-Chief Executive Officer,Business Services,Financial Data Services,-,Cincinnati,OH,39.2807348,-84.3173878 601,Ingles Markets,608,"$4,003 ",5.50%,$53.90 ,-0.60%,"$1,733 ",$686 ,"17,250",James W. Lanning,"President, Chief Executive Officer & Director",Food & Drug Stores,Food and Drug Stores,-,Black Mountain,NC,35.6178951,-82.3212302 602,Snap-on,618,"$4,000 ",7.80%,$557.70 ,2.10%,"$5,249 ","$8,367 ","12,600",Nicholas T. Pinchuk,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Kenosha,WI,42.5847425,-87.8211854 603,Dentsply Sirona,614,"$3,993 ",6.60%,"($1,550.00)",-460.50%,"$10,375 ","$11,439 ","16,100",Donald M. Casey Jr.,Chairman & Chief Executive Officer,Health Care,Medical Products and Equipment,-,York,PA,39.9625984,-76.727745 604,Calumet Specialty Products,632,"$3,992 ",10.90%,($103.80),-,"$2,689 ",$541 ,"1,600",Timothy Go,Chief Executive Officer,Energy,Petroleum Refining,-,Indianapolis,IN,39.768403,-86.158068 605,Global Payments,669,"$3,975 ",17.90%,$468.40 ,132.20%,"$12,998 ","$17,789 ","10,000",Jeffrey S. Sloan,Chairman & Chief Executive Officer,Business Services,Financial Data Services,-,Atlanta,GA,33.7489954,-84.3879824 606,Encompass Health,619,"$3,971.40 ",7.10%,$256.30 ,3.50%,"$4,893.70 ","$5,611 ",30935,Mark J. Tarr,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,-,Birmingham,AL,33.5206608,-86.80249 607,Martin Marietta Materials,607,"$3,966 ",3.80%,$713.30 ,67.70%,"$8,993 ","$13,019 ","8,406",C. Howard Nye,"Chairman, President & Chief Executive Officer",Materials,"Building Materials, Glass",-,Raleigh,NC,35.7795897,-78.6381787 608,Nasdaq,620,"$3,965 ",7.00%,$734.00 ,579.60%,"$15,786 ","$14,361 ","4,734",Adena T. Friedman,"President, Chief Executive Officer & Director",Financials,Securities,-,New York,NY,40.7127753,-74.0059728 609,Leggett & Platt,613,"$3,944 ",5.20%,$292.60 ,-24.20%,"$3,551 ","$5,842 ","22,200",Karl G. Glassman,"President, Chief Executive Officer & Director",Household Products,"Home Equipment, Furnishings",-,Carthage,MO,37.176447,-94.3102228 610,Universal Forest Products,687,"$3,941 ",21.60%,$119.50 ,18.10%,"$1,465 ","$1,986 ","10,000",Matthew J. Missad,Chairman & Chief Executive Officer,Materials,"Building Materials, Glass",-,Grand Rapids,MI,42.9633599,-85.6680863 611,Sally Beauty Holdings,592,"$3,938 ",-0.40%,$215.10 ,-3.50%,"$2,123 ","$2,058 ","21,755",Christian A. Brickman,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,-,Denton,TX,33.2148412,-97.1330683 612,Flowers Foods,594,"$3,921 ",-0.20%,$150.10 ,-8.30%,"$2,660 ","$4,604 ","9,800",Allen L. Shiver,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Consumer Products,-,Thomasville,GA,30.8365815,-83.9787808 613,Barnes & Noble,555,"$3,895 ",-11.50%,$22.00 ,-,"$1,933 ",$360 ,"18,592",Demos Parneros,Chief Executive Officer & Director,Retailing,Specialty Retailers: Other,-,New York,NY,40.7127753,-74.0059728 614,American Equity Investment Life,883,"$3,892 ",75.30%,$174.60 ,109.80%,"$62,031 ","$2,639 ",515,John M. Matovina,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",-,West Des Moines,IA,41.5772115,-93.711332 615,Vulcan Materials,635,"$3,890 ",8.30%,$601.20 ,43.30%,"$9,505 ","$15,110 ","8,287",J. Thomas Hill,"Chairman, President & Chief Executive Officer",Materials,"Building Materials, Glass",-,Birmingham,AL,33.5206608,-86.80249 616,Taylor Morrison Home,644,"$3,885 ",9.40%,$91.20 ,73.40%,"$4,326 ","$2,610 ","1,800",Sheryl D. Palmer,"Chairman, President & Chief Executive Officer",Engineering & Construction,Homebuilders,-,Scottsdale,AZ,33.4941704,-111.9260519 617,Westinghouse Air Brake,742,"$3,882 ",32.40%,$262.30 ,-14.00%,"$6,580 ","$7,822 ","18,000",Raymond T. Betler,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Wilmerding,PA,40.3909023,-79.8100472 618,Crestwood Equity Partners,805,"$3,881 ",54.00%,($191.90),-,"$4,285 ","$1,824 ",954,Robert G Phillips,"Chairman, President & Chief Executive Officer",Energy,Energy,-,Houston,TX,29.7604267,-95.3698028 619,Iron Mountain,649,"$3,846 ",9.10%,$183.80 ,75.40%,"$10,972 ","$9,375 ","24,000",William L. Meaney,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Boston,MA,42.3600825,-71.0588801 620,Lennox International,627,"$3,840 ",5.40%,$305.70 ,10.00%,"$1,892 ","$8,415 ","11,450",Todd M. Bluedorn,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,-,Richardson,TX,32.9483335,-96.7298519 621,General Cable,603,"$3,837 ",-0.50%,($56.60),-,"$2,235 ","$1,499 ","8,500",Massimo Battaini,"President, Chief Executive Officer & Director",Industrials,"Electronics, Electrical Equip.",-,Highland Heights,KY,39.0331169,-84.4518854 622,American Eagle Outfitters,630,"$3,796 ",5.10%,$204.20 ,-3.90%,"$1,816 ","$3,540 ","24,100",Jay L. Schottenstein,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Pittsburgh,PA,40.4406248,-79.9958864 623,Church & Dwight,652,"$3,776 ",8.10%,$743.40 ,62.00%,"$6,015 ","$12,294 ","4,700",Matthew T. Farrell,"President, Chief Executive Officer & Director",Household Products,Household and Personal Products,-,Ewing Township,NJ,40.2599864,-74.7909125 624,Platform Specialty Products,636,"$3,776 ",5.30%,($296.20),-,"$10,252 ","$2,774 ","7,850",Rakesh Sachdev,Chief Executive Officer & Director,Chemicals,Chemicals,-,West Palm Beach,FL,26.7153424,-80.0533746 625,JELD-WEN Holding,,"$3,764 ",2.40%,$10.80 ,-97.10%,"$2,863 ","$3,257 ","21,000",Gary S. Michel,Chairman & Interim Chief Executive Officer,Materials,"Building Materials, Glass",-,Charlotte,NC,35.2270869,-80.8431267 626,OneMain Holdings,602,"$3,756 ",-3.30%,$183.00 ,-14.90%,"$19,433 ","$4,062 ","10,100",Jay N. Levine,"President, Chief Executive Officer & Director",Financials,Diversified Financials,-,Evansville,IN,37.9715592,-87.5710898 627,Colfax,626,"$3,737 ",2.50%,$151.10 ,17.90%,"$6,710 ","$3,934 ","14,300",Matthew L. Trerotola,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Annapolis Junction,MD,39.1202934,-76.7769324 628,Zebra Technologies,639,"$3,722 ",4.10%,$17.00 ,-,"$4,275 ","$7,412 ","7,000",Anders Gustafsson,Chairman & Chief Executive Officer,Industrials,"Electronics, Electrical Equip.",-,Lincolnshire,IL,42.1900249,-87.9084039 629,Andersons,595,"$3,686 ",-6.10%,$42.50 ,266.70%,"$2,162 ",$943 ,"1,819",Patrick E. Bowe,"President, Chief Executive Officer & Director","Food, Beverages & Tobacco",Food Production,-,Maumee,OH,41.5628294,-83.6538244 630,TD Ameritrade Holding,674,"$3,685 ",10.50%,$872.00 ,3.60%,"$38,627 ","$33,605 ","10,412",Timothy D. Hockey,"President, Chief Executive Officer & Director",Financials,Securities,-,Omaha,NE,41.2565369,-95.9345034 631,Carlyle Group,869,"$3,676 ",61.60%,$244.10 ,3714.10%,"$12,281 ","$2,145 ","1,600",Kewsong Lee/Glenn A. Youngkin,Co-Chief Executive Officer & Director,Financials,Securities,-,Leavenworth,WA,47.7510741,-120.7401385 632,Hubbell,650,"$3,669 ",4.70%,$243.10 ,-17.00%,"$3,721 ","$6,678 ","17,700",David G. Nord,"Chairman, President & Chief Executive Officer",Industrials,"Electronics, Electrical Equip.",-,Shelton,CT,41.3164856,-73.0931641 633,Trinity Industries,539,"$3,663 ",-20.20%,$702.50 ,104.50%,"$9,543 ","$4,921 ","15,605",Timothy R. Wallace,"Chairman, President & Chief Executive Officer",Transportation,Transportation Equipment,-,Dallas,TX,32.7766642,-96.7969879 634,Darling Ingredients,665,"$3,662 ",7.80%,$128.50 ,25.60%,"$4,958 ","$2,848 ","9,800",Randall C. Stuewe,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Production,-,Irving,TX,32.8140177,-96.9488945 635,Flowserve,589,"$3,661 ",-8.30%,$2.70 ,-98.00%,"$4,911 ","$5,668 ","17,000",R. Scott Rowe,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Irving,TX,32.8140177,-96.9488945 636,Antero Resources,,"$3,656 ",109.50%,$615.10 ,-,"$15,262 ","$6,283 ",593,Paul M. Rady,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",-,Denver,CO,39.7392358,-104.990251 637,Skyworks Solutions,680,"$3,651 ",11.00%,"$1,010.20 ",1.50%,"$4,574 ","$18,264 ","8,400",Liam K. Griffin,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Woburn,MA,42.4792618,-71.1522765 638,Landstar System,699,"$3,649 ",15.10%,$177.10 ,28.90%,"$1,353 ","$4,604 ","1,273",James B. Gattoni,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",-,Jacksonville,FL,30.3321838,-81.655651 639,Buckeye Partners,685,"$3,648 ",12.30%,$478.80 ,-10.60%,"$10,305 ","$5,494 ","1,870",Clark C. Smith,"Chairman, President & Chief Executive Officer",Energy,Pipelines,-,Houston,TX,29.7604267,-95.3698028 640,MRC Global,726,"$3,646 ",19.90%,$50.00 ,-,"$2,340 ","$1,517 ","3,580",Andrew R. Lane,"President, Chief Executive Officer & Director",Energy,"Oil and Gas Equipment, Services",-,Houston,TX,29.7604267,-95.3698028 641,CME Group,633,"$3,645 ",1.40%,"$4,063.40 ",164.90%,"$75,791 ","$55,058 ","2,830",Terrence A. Duffy,Chairman & Chief Executive Officer,Financials,Securities,-,Chicago,IL,41.8781136,-87.6297982 642,Greif,676,"$3,638 ",9.50%,$118.60 ,58.30%,"$3,232 ","$2,636 ","13,000",Peter G. Watson,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Delaware,OH,40.2986724,-83.067965 643,Nexeo Solutions,,"$3,637 ",241.30%,$14.40 ,-,"$2,254 ",$960 ,"2,640",David A. Bradley,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,The Woodlands,TX,30.1658207,-95.4612625 644,Cooper-Standard Holdings,655,"$3,618 ",4.20%,$135.30 ,-2.70%,"$2,726 ","$2,200 ","32,000",Jeffrey S. Edwards,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,-,Novi,MI,42.48059,-83.4754913 645,Urban Outfitters,645,"$3,616 ",2.00%,$108.30 ,-50.40%,"$1,953 ","$4,001 ","16,330",Richard A. Hayne,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Philadelphia,PA,39.9525839,-75.1652215 646,LSC Communications,625,"$3,603 ",-1.40%,($57.00),-153.80%,"$2,014 ",$608 ,"24,000",Thomas J. Quinlan III,"Chairman, President & Chief Executive Officer",Media,"Publishing, Printing",-,Chicago,IL,41.8781136,-87.6297982 647,Sabre,668,"$3,599 ",6.70%,$242.50 ,0.00%,"$5,649 ","$5,887 ","9,000",Sean E. Menke,"President, Chief Executive Officer & Director",Technology,Internet Services and Retailing,-,Southlake,TX,32.9412363,-97.1341783 648,Green Plains,662,"$3,596 ",5.40%,$61.10 ,472.60%,"$2,785 ",$688 ,"1,427",Todd A. Becker,"President, Chief Executive Officer & Director",Energy,Energy,-,Omaha,NE,41.2565369,-95.9345034 649,Hexion,659,"$3,591 ",4.50%,($234.00),-,"$2,097 ",-,"4,300",Craig A. Rogerson,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Columbus,OH,39.9611755,-82.9987942 650,Stericycle,642,"$3,581 ",0.50%,$42.40 ,-79.50%,"$6,988 ","$5,007 ","23,200",Charles A. Alutto,"President, Chief Executive Officer & Director",Business Services,Waste Management,-,Lake Forest,IL,42.2586342,-87.840625 651,Warner Music Group,686,"$3,576 ",10.20%,$143.00 ,472.00%,"$5,718 ",-,"4,520",Stephen F. Cooper,"President, Chief Executive Officer & Director",Media,Entertainment,-,New York,NY,40.7127753,-74.0059728 652,Ventas,658,"$3,574 ",3.80%,"$1,356.50 ",108.90%,"$23,955 ","$17,643 ",493,Debra A. Cafaro,Chairman & Chief Executive Officer,Financials,Real estate,-,Chicago,IL,41.8781136,-87.6297982 653,ScanSource,647,"$3,568 ",0.80%,$69.20 ,8.80%,"$1,718 ",$909 ,"2,000",Michael L. Baur,Chief Executive Officer & Director,Wholesalers,Wholesalers: Electronics and Office Equipment,-,Greenville,SC,34.8526176,-82.3940104 654,Pinnacle West Capital,651,"$3,565 ",1.90%,$488.50 ,10.50%,"$17,019 ","$8,932 ","6,292",Donald E. Brandt,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,-,Phoenix,AZ,33.4483771,-112.0740373 655,Scripps Networks Interactive,664,"$3,562 ",4.70%,$623.90 ,-7.40%,"$6,522 ",$0 ,"3,600",David M. Zaslav,CEO-Discovery,Media,Entertainment,-,Knoxville,TN,35.9606384,-83.9207392 656,Alexion Pharmaceuticals,714,"$3,551 ",15.10%,$443.30 ,11.00%,"$13,583 ","$24,784 ","2,525",Ludwig N. Hantson,Chairman & Chief Executive Officer,Health Care,Pharmaceuticals,-,New Haven,CT,41.308274,-72.9278835 657,Pitney Bowes,663,"$3,550 ",4.20%,$261.30 ,181.60%,"$6,679 ","$2,038 ","14,700",Marc B. Lautenbach,"President, Chief Executive Officer & Director",Technology,"Computers, Office Equipment",-,Stamford,CT,41.0534302,-73.5387341 658,CIT Group,550,"$3,545 ",-20.40%,$468.20 ,-,"$49,279 ","$6,649 ","4,167",Ellen R. Alemany,Chairwoman & CEO,Financials,Commercial Banks,-,New York,NY,40.7127753,-74.0059728 659,Country Financial,657,"$3,542 ",2.40%,$187.30 ,39.00%,"$14,664 ",-,"3,834",Kurt F. Bock,Chief Executive Officer,Financials,Insurance: Property and Casualty (Mutual),-,Bloomington,IL,40.4842027,-88.9936873 660,CUNA Mutual Group,683,"$3,541 ",8.20%,$303.20 ,36.20%,"$20,595 ",-,"3,300",Robert N. Trunzo,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",-,Madison,WI,43.0730517,-89.4012302 661,Triumph Group,601,"$3,533 ",-9.10%,($43.00),-,"$4,415 ","$1,252 ","14,309",Daniel J. Crowley,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,-,Berwyn,PA,40.045824,-75.4395931 662,TransDigm Group,698,"$3,529 ",11.30%,$596.90 ,1.80%,"$9,976 ","$16,021 ","9,200",Kevin M. Stein,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,-,Cleveland,OH,41.49932,-81.6943605 663,Allegheny Technologies,707,"$3,525 ",12.50%,($91.90),-,"$5,185 ","$2,974 ","8,600",Richard J. Harshman,"Chairman, President & Chief Executive Officer",Materials,Metals,-,Pittsburgh,PA,40.4406248,-79.9958864 664,Resolute Forest Products,646,"$3,513 ",-0.90%,($84.00),-,"$4,147 ",$749 ,"7,700",Yves Laflamme,"President, Chief Executive Officer & Director",Materials,Forest and Paper Products,-,Catawba,SC,34.8529233,-80.9111862 665,Acuity Brands,679,"$3,505 ",6.50%,$321.70 ,10.60%,"$2,900 ","$5,868 ","12,500",Vernon J. Nagel,"Chairman, President & Chief Executive Officer",Industrials,"Electronics, Electrical Equip.",-,Atlanta,GA,33.7489954,-84.3879824 666,Abercrombie & Fitch,675,"$3,493 ",5.00%,$7.10 ,79.30%,"$2,326 ","$1,651 ","22,500",Fran Horowitz-Bonadies,Chief Executive Officer & Director,Retailing,Specialty Retailers: Apparel,-,New Albany,OH,40.0811745,-82.8087864 667,KLA-Tencor,733,"$3,480 ",16.60%,$926.10 ,31.50%,"$5,532 ","$17,073 ","5,990",Richard P. Wallace,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Milpitas,CA,37.4323341,-121.8995741 668,Weis Markets,706,"$3,467 ",10.50%,$98.40 ,12.90%,"$1,442 ","$1,102 ","23,000",Jonathan H. Weis,"Chairman, President & Chief Executive Officer",Food & Drug Stores,Food and Drug Stores,-,Sunbury,PA,40.862585,-76.7944104 669,Puget Energy,700,"$3,460 ",9.40%,$175.20 ,-44.00%,"$13,691 ",-,"3,140",Kimberly J. Harris,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Bellevue,WA,47.6101497,-122.2015159 670,Mednax,697,"$3,458 ",8.60%,$320.40 ,-1.40%,"$5,867 ","$5,251 ","14,000",Roger J. Medel,Chief Executive Officer & Director,Health Care,Health Care: Pharmacy and Other Services,-,Fort Lauderdale,FL,26.1669711,-80.256595 671,Kar Auction Services,702,"$3,458 ",9.80%,$362.00 ,62.80%,"$6,984 ","$7,285 ","15,488",James P. Hallett,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,-,Carmel,IN,39.978371,-86.1180435 672,PolyOne,673,"$3,452 ",3.40%,($57.70),-134.90%,"$2,705 ","$3,400 ","6,400",Robert M. Patterson,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Avon Lake,OH,41.5053178,-82.0282001 673,FMC,681,"$3,442 ",4.80%,$535.80 ,156.20%,"$9,206 ","$10,297 ","7,000",Pierre R. Brondeau,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Philadelphia,PA,39.9525839,-75.1652215 674,Edwards Lifesciences,734,"$3,435 ",15.90%,$583.60 ,2.50%,"$5,696 ","$29,372 ","12,200",Michael A. Mussallem,Chairman & Chief Executive Officer,Health Care,Medical Products and Equipment,-,Irvine,CA,33.6845673,-117.8265049 675,Microchip Technology,897,"$3,426 ",57.60%,$164.60 ,-49.20%,"$7,687 ","$21,410 ","12,656",Steve Sanghi,Chairman & Chief Executive Officer,Technology,Semiconductors and Other Electronic Components,-,Chandler,AZ,33.3061605,-111.8412502 676,Amerco,682,"$3,422 ",4.50%,$398.40 ,-18.50%,"$9,406 ","$6,767 ","20,376",Edward J. Shoen,"Chairman, President & Chief Executive Officer",Transportation,"Trucking, Truck Leasing",-,Reno,NV,39.5296329,-119.8138027 677,Mercury General,689,"$3,416 ",5.80%,$144.90 ,98.30%,"$5,101 ","$2,538 ","4,300",Gabriel Tirador,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),-,Los Angeles,CA,34.0522342,-118.2436849 678,American National Insurance,688,"$3,411 ",5.70%,$493.70 ,172.70%,"$26,387 ","$3,150 ","4,621",James E. Pozzi,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",-,Galveston,TX,29.3013479,-94.7976958 679,Carters,694,"$3,400 ",6.30%,$302.80 ,17.30%,"$2,068 ","$4,902 ","20,900",Michael D. Casey,Chairman & Chief Executive Officer,Apparel,Apparel,-,Atlanta,GA,33.7489954,-84.3879824 680,International Flavors & Fragrances,711,"$3,399 ",9.10%,$295.70 ,-27.00%,"$4,599 ","$10,804 ","7,300",Andreas Fibig,Chairman & Chief Executive Officer,Chemicals,Chemicals,-,New York,NY,40.7127753,-74.0059728 681,Aarons,692,"$3,384 ",5.50%,$292.50 ,110.00%,"$2,692 ","$3,266 ","11,900",John W. Robinson III,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,-,Atlanta,GA,33.7489954,-84.3879824 682,Alliant Energy,677,"$3,382 ",1.90%,$457.30 ,23.10%,"$14,188 ","$9,453 ","3,989",Patricia L. Kampling,Chairman & Chief Executive Officer,Energy,Utilities: Gas and Electric,-,Madison,WI,43.0730517,-89.4012302 683,EQT,,"$3,378 ",110.00%,"$1,508.50 ",-,"$29,523 ","$12,565 ","2,067",David L. Porges,"Chairman, President & Chief Executive Officer",Energy,Energy,-,Pittsburgh,PA,40.4406248,-79.9958864 684,Monster Beverage,721,"$3,369 ",10.50%,$820.70 ,15.20%,"$4,791 ","$32,404 ","2,589",Rodney C. Sacks,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Beverages,-,Corona,CA,33.8752935,-117.5664384 685,BMC Stock Holdings,712,"$3,366 ",8.80%,$57.40 ,86.00%,"$1,473 ","$1,314 ","9,100",David L. Keltner,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Atlanta,GA,33.7489954,-84.3879824 686,Ryerson Holding,753,"$3,365 ",17.70%,$17.10 ,-8.60%,"$1,712 ",$303 ,"3,600",Edward J. Lehner,"President, Chief Executive Officer & Director",Materials,Metals,-,Chicago,IL,41.8781136,-87.6297982 687,Equifax,703,"$3,362 ",6.90%,$587.30 ,20.20%,"$7,233 ","$14,152 ","10,300",Mark W. Begor,Chairman & Chief Executive Officer,Business Services,Financial Data Services,-,Atlanta,GA,33.7489954,-84.3879824 688,Regal Beloit,690,"$3,360 ",4.20%,$213.00 ,4.70%,"$4,388 ","$3,225 ","23,600",Mark J. Gliebe,Chairman & Chief Executive Officer,Industrials,"Electronics, Electrical Equip.",-,Beloit,WI,42.5083482,-89.0317765 689,Old Dominion Freight Line,731,"$3,358 ",12.30%,$463.80 ,56.80%,"$3,068 ","$12,107 ","19,183",Greg C. Gantt,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",-,Thomasville,NC,35.8826369,-80.0819879 690,American Water Works,678,"$3,357 ",1.70%,$426.00 ,-9.00%,"$19,482 ","$14,622 ","6,900",Susan N. Story,"President, Chief Executive Officer & Director",Energy,Miscellaneous,-,Voorhees Township,NJ,39.8519447,-74.961517 691,BGC Partners,771,"$3,353 ",23.20%,$51.50 ,-49.80%,"$5,457 ","$4,119 ","9,238",Howard W. Lutnick,Chairman & Chief Executive Officer,Financials,Securities,-,New York,NY,40.7127753,-74.0059728 692,Brinks,730,"$3,347 ",10.80%,$16.70 ,-51.60%,"$3,060 ","$3,609 ","62,150",Douglas A. Pertz,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Richmond,VA,37.5407246,-77.4360481 692,Meritor,730,"$3,347 ",10.80%,$16.70 ,-51.60%,"$3,060 ","$3,609 ","62,150",Douglas A. Pertz,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Richmond,VA,37.5407246,-77.4360481 694,Sentry Insurance Group,720,"$3,346 ",9.30%,$288.50 ,30.10%,"$17,302 ",-,"4,139",Peter G. McPartland,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Mutual),-,Stevens Point,WI,44.5235792,-89.574563 695,Sanderson Farms,758,"$3,342 ",18.70%,$279.70 ,48.00%,"$1,733 ","$2,718 ","14,669",Joe F. Sanderson Jr.,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Production,-,Laurel,MS,31.6940509,-89.1306124 696,KapStone Paper & Packaging,715,"$3,316 ",7.70%,$243.50 ,182.30%,"$3,324 ","$3,341 ","6,400",Matthew Kaplan,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Northbrook,IL,42.1275267,-87.8289548 697,Gartner,821,"$3,312 ",35.50%,$3.30 ,-98.30%,"$7,283 ","$10,684 ","15,131",Eugene A. Hall,Chief Executive Officer,Technology,Information Technology Services,-,Stamford,CT,41.0534302,-73.5387341 698,IAC/InterActiveCorp,705,"$3,307.20 ",5.30%,$304.90 ,-,"$5,867.80 ","$12,926 ",7000,Joseph Levin,Chief Executive Officer & Director,Technology,Internet Services and Retailing,-,New York City,NY,40.7127753,-74.0059728 699,Tailored Brands,667,"$3,304 ",-2.20%,$96.70 ,287.50%,"$2,000 ","$1,234 ","18,200",Douglas S. Ewert,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Houston,TX,29.7604267,-95.3698028 700,WABCO Holdings,759,"$3,304 ",17.60%,$406.10 ,82.10%,"$4,323 ","$7,194 ","14,631",Jacques Esculier,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,-,Rochester Hills,MI,42.6583661,-83.1499322 701,Insperity,739,"$3,300 ",12.20%,$84.40 ,27.90%,"$1,064 ","$2,921 ","2,900",Paul J. Sarvadi,Chairman & Chief Executive Officer,Business Services,Diversified Outsourcing Services,-,Houston,TX,30.0575359,-95.1902986 702,Comerica,736,"$3,289 ",11.10%,$743.00 ,55.80%,"$71,567 ","$16,562 ","7,999",Ralph W. Babb Jr.,Chairman & Chief Executive Officer,Financials,Commercial Banks,-,Dallas,TX,32.7766642,-96.7969879 703,TriNet Group,717,"$3,275 ",7.00%,$178.00 ,189.90%,"$2,593 ","$3,245 ","2,700",Burton M. Goldfield,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,San Leandro,CA,37.7249296,-122.1560768 704,Avaya Holdings,621,"$3,272 ",-11.60%,-,-,"$5,898 ","$2,459 ","8,700",James M. Chirico Jr.,"President, Chief Executive Officer & Director",Technology,Information Technology Services,-,Santa Clara,CA,37.3541079,-121.9552356 705,Ashland Global Holdings,516,"$3,260 ",-34.10%,$1.00 ,-,"$8,618 ","$4,343 ","6,500",William A. Wulfsohn,Chairman & Chief Executive Officer,Chemicals,Chemicals,-,Covington,KY,39.0836712,-84.5085536 706,Meritage Homes,725,"$3,241 ",6.60%,$143.30 ,-4.20%,"$3,251 ","$1,839 ","1,605",Steven J. Hilton,Chairman & Chief Executive Officer,Engineering & Construction,Homebuilders,-,Scottsdale,AZ,33.4941704,-111.9260519 707,SkyWest,710,"$3,204 ",2.70%,$428.90 ,-,"$5,458 ","$2,838 ","16,300",Russell A. Childs,"President, Chief Executive Officer & Director",Transportation,Airlines,-,St. George,UT,37.0965278,-113.5684164 708,USG,566,"$3,204 ",-24.90%,$88.00 ,-82.70%,"$3,851 ","$5,664 ","6,800",Jennifer F. Scanlon,"President, Chief Executive Officer & Director",Materials,"Building Materials, Glass",-,Chicago,IL,41.8781136,-87.6297982 709,Southwestern Energy,823,"$3,203 ",31.50%,"$1,046.00 ",-,"$7,521 ","$2,542 ","1,575",William J. Way,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",-,Spring,TX,30.0799405,-95.4171601 710,Keysight Technologies,745,"$3,189 ",9.30%,$102.00 ,-69.60%,"$5,933 ","$9,825 ","12,600",Ronald S. Nersesian,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",-,Santa Rosa,CA,38.440429,-122.7140548 711,Regal Entertainment Group,696,"$3,163 ",-1.10%,$112.30 ,-34.10%,"$2,843 ",-,"26,047",Nisan Cohen,"President, Chief Executive Officer & Director",Media,Entertainment,-,Knoxville,TN,35.9606384,-83.9207392 712,Mutual of America Life Insurance,770,"$3,163 ",16.10%,$26.20 ,56.70%,"$21,194 ",-,"1,079",John R. Greed,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (Mutual)",-,New York,NY,40.7127753,-74.0059728 713,Paychex,737,"$3,151 ",6.80%,$817.30 ,8.00%,"$6,834 ","$22,128 ","13,700",Martin Mucci,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Rochester,NY,43.1565779,-77.6088465 714,Brinker International,684,"$3,151 ",-3.30%,$150.80 ,-24.90%,"$1,414 ","$1,673 ","57,906",Wyman T. Roberts,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,-,Dallas,TX,32.7766642,-96.7969879 715,Penn National Gaming,728,"$3,148 ",3.70%,$473.50 ,333.10%,"$5,235 ","$2,407 ","18,754",Timothy J. Wilmott,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Wyomissing,PA,40.329537,-75.9652117 716,Gannett,722,"$3,147 ",3.20%,$6.90 ,-86.90%,"$2,570 ","$1,126 ","19,000",Robert J. Dickey,"President, Chief Executive Officer & Director",Media,"Publishing, Printing",-,McLean,VA,38.9338676,-77.1772604 717,Visteon,693,"$3,146 ",-1.90%,$176.00 ,134.70%,"$2,304 ","$3,409 ","10,000",Sachin S. Lawande,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,-,Van Buren Charter Township,MI,42.2203171,-83.4838244 718,Pinnacle Foods,708,"$3,144 ",0.50%,$532.00 ,152.00%,"$6,578 ","$6,440 ","4,900",Mark A. Clouse,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Food Consumer Products,-,Parsippany-Troy Hills,NJ,40.8652865,-74.4173877 719,Intuitive Surgical,773,"$3,129 ",15.70%,$660.00 ,-10.30%,"$5,758 ","$46,675 ","4,444",Gary S. Guthart,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,-,Sunnyvale,CA,37.36883,-122.0363496 720,Continental Resources,945,"$3,121 ",57.60%,$789.40 ,-,"$14,200 ","$22,119 ","1,127",Harold G. Hamm,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",-,Oklahoma City,OK,35.4675602,-97.5164276 721,Service Corp. International,729,"$3,095 ",2.10%,$546.70 ,208.80%,"$12,865 ","$6,959 ","19,468",Thomas L. Ryan,Chairman & Chief Executive Officer,Business Services,Miscellaneous,-,Houston,TX,29.7604267,-95.3698028 722,Scientific Games,750,"$3,084 ",6.90%,($242.30),-,"$7,725 ","$3,743 ","8,600",Barry L. Cottle,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Las Vegas,NV,36.1699412,-115.1398296 723,Albemarle,654,"$3,072 ",-12.00%,$54.90 ,-91.50%,"$7,751 ","$10,269 ","5,400",Luther C. Kissam IV,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Charlotte,NC,35.2270869,-80.8431267 724,Atmos Energy,670,"$3,063 ",-8.60%,$396.40 ,13.20%,"$10,750 ","$9,348 ","4,565",Michael E. Haefner,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Dallas,TX,32.7766642,-96.7969879 725,Hologic,755,"$3,059 ",8.00%,$755.50 ,128.40%,"$7,980 ","$10,331 ","6,233",Stephen P. MacMillan,"Chairman, President & Chief Executive Officer",Health Care,Medical Products and Equipment,-,Marlboro,MA,42.3459271,-71.5522874 726,H& R Block,727,"$3,036 ",-0.10%,$408.90 ,9.30%,"$2,694 ","$5,316 ","44,900",Jeffrey J. Jones II,"President, Chief Executive Officer & Director",Financials,Diversified Financials,-,KCMO,MO,39.0997265,-94.5785667 727,Qorvo,787,"$3,033 ",16.20%,($16.60),-,"$6,522 ","$8,912 ","8,600",Robert A. Bruggeworth,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Greensboro,NC,36.0726354,-79.7919754 728,Steelcase,718,"$3,032 ",-0.90%,$124.60 ,-26.80%,"$1,792 ","$1,580 ","12,650",James P. Keane,"President, Chief Executive Officer & Director",Household Products,"Home Equipment, Furnishings",-,Grand Rapids,MI,42.9633599,-85.6680863 729,Univision Communications,724,"$3,016 ",-0.80%,$654.90 ,199.20%,"$9,599 ",$0 ,"4,500",Vincent Sadusky,"President, Chief Executive Officer & Director",Media,Entertainment,-,New York,NY,40.7127753,-74.0059728 730,Worthington Industries,757,"$3,014 ",6.90%,$204.50 ,42.30%,"$2,325 ","$2,644 ","10,000",John P. McConnell,Chairman & Chief Executive Officer,Materials,Metals,-,Columbus,OH,39.9611755,-82.9987942 731,Timken,781,"$3,004 ",12.50%,$203.40 ,33.30%,"$3,402 ","$3,556 ","15,006",Richard G. Kyle,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,North Canton,OH,40.875891,-81.4023356 732,A.O. Smith,776,"$2,997 ",11.60%,$296.50 ,-9.20%,"$3,197 ","$10,908 ","16,100",Ajita G. Rajendra,Chairman & Chief Executive Officer,Industrials,"Electronics, Electrical Equip.",-,Milwaukee,WI,43.0389025,-87.9064736 733,PriceSmart,748,"$2,997 ",3.10%,$90.70 ,2.30%,"$1,178 ","$2,540 ","7,903",Jose Luis Laparte,"President, Chief Executive Officer & Director",Retailing,General Merchandisers,-,San Diego,CA,32.715738,-117.1610838 734,Stifel Financial,785,"$2,997 ",13.40%,$182.90 ,124.30%,"$21,384 ","$4,256 ","7,100",Ronald J. Kruszewski,Co-Chairman & Chief Executive Officer,Financials,Securities,-,St. Louis,MO,38.6270025,-90.1994042 735,Brown-Forman,713,"$2,994 ",-3.10%,$669.00 ,-37.30%,"$4,625 ","$26,160 ","4,570",Paul C. Varga,Chairman & Chief Executive Officer,"Food, Beverages & Tobacco",Beverages,-,Louisville,KY,38.2526647,-85.7584557 736,Cinemark Holdings,744,"$2,992 ",2.50%,$264.20 ,3.60%,"$4,471 ","$4,388 ","19,915",Mark Zoradi,Chairman & Chief Executive Officer,Media,Entertainment,-,Plano,TX,33.0198431,-96.6988856 737,Granite Construction,808,"$2,990 ",18.90%,$69.10 ,21.00%,"$1,872 ","$2,228 ","3,600",James H. Roberts,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",-,Watsonville,CA,36.910231,-121.7568946 738,Dycom Industries,780,"$2,978 ",0.80%,$151.30 ,-3.70%,"$1,841 ","$3,357 ","14,365",Steven E. Nielsen,"Chairman, President & Chief Executive Officer",Engineering & Construction,"Engineering, Construction",-,Palm Beach Gardens,FL,26.8233946,-80.1386547 739,Clean Harbors,764,"$2,945 ",6.90%,$100.70 ,-,"$3,707 ","$2,758 ","12,700",Alan S. McKim,"Chairman, President & Chief Executive Officer",Business Services,Waste Management,-,Norwell,MA,42.1615157,-70.7927832 740,First Solar,738,"$2,941 ",-0.30%,($165.60),-,"$6,865 ","$7,416 ","4,100",Mark R. Widmar,Chairman & Chief Executive Officer,Energy,Energy,-,Tempe,AZ,33.4255104,-111.9400054 741,Scotts Miracle-Gro,740,"$2,936 ",0.00%,$218.30 ,-30.80%,"$2,747 ","$4,881 ","4,700",James S. Hagedorn,Chairman & Chief Executive Officer,Chemicals,Chemicals,-,Marysville,OH,40.2364486,-83.3671432 742,Cracker Barrel Old Country Store,747,"$2,926 ",0.50%,$201.90 ,6.70%,"$1,522 ","$3,821 ","73,000",Sandra B. Cochran,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,-,Lebanon,TN,36.2081098,-86.2911024 743,Triple-S Management,732,"$2,916 ",-2.30%,$54.50 ,212.50%,"$3,117 ",$616 ,"3,517",Roberto Garcia-Rodriguez,"President, Chief Executive Officer & Director",Health Care,Health Care: Insurance and Managed Care,-,San Juan,Puerto Rico,18.4655394,-66.1057355 744,First Republic Bank,842,"$2,912 ",22.60%,$757.70 ,12.50%,"$87,781 ","$14,982 ","4,025",James H. Herbert II,Chairman & Chief Executive Officer,Financials,Commercial Banks,-,SF,CA,37.7749295,-122.4194155 745,ServiceMaster Global Holdings,768,"$2,912 ",6.00%,$510.00 ,229.00%,"$5,646 ","$6,882 ","13,000",Nikhil Varty,Chairman & Chief Executive Officer,Business Services,Diversified Outsourcing Services,-,Memphis,TN,35.1495343,-90.0489801 746,PC Connection,775,"$2,912 ",8.10%,$54.90 ,14.00%,$748 ,$671 ,"2,505",Timothy J. McGrath,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Other,-,Merrimack,NH,42.8678693,-71.4948322 747,Genesco,751,"$2,907 ",1.30%,($111.80),-214.80%,"$1,315 ",$809 ,"19,350",Robert J. Dennis,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Apparel,-,Nashville,TN,36.1626638,-86.7816016 748,Medical Mutual of Ohio,762,"$2,895 ",5.00%,$8.10 ,-80.00%,"$2,234 ",-,"2,244",Richard A. Chiricosta,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (Mutual)",-,Cleveland,OH,41.49932,-81.6943605 749,MSC Industrial Direct,752,"$2,888 ",0.80%,$231.40 ,0.10%,"$2,099 ","$5,178 ","6,563",Erik Gershwind,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Melville,NY,40.7934322,-73.4151214 750,Legg Mason,783,"$2,887 ",8.50%,$227.30 ,-,"$8,290 ","$3,437 ","3,338",Joseph A. Sullivan,"Chairman, President & Chief Executive Officer",Financials,Securities,-,Baltimore,MD,39.2903848,-76.6121893 751,Hyster-Yale Materials Handling,792,"$2,885 ",12.30%,$48.60 ,13.60%,"$1,648 ","$1,157 ","6,800",Alfred M. Rankin Jr.,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Cleveland,OH,41.49932,-81.6943605 752,Apollo Global Management,881,"$2,884 ",29.80%,$629.10 ,56.20%,"$6,991 ","$5,970 ","1,047",Leon D. Black,Chairman & Chief Executive Officer,Financials,Securities,-,New York,NY,40.7127753,-74.0059728 753,Citrix Systems,661,"$2,883 ",-15.70%,($20.70),-103.90%,"$5,820 ","$12,635 ","7,500",David J. Henshall,"President, Chief Executive Officer & Director",Technology,Computer Software,-,Fort Lauderdale,FL,26.1224386,-80.1373174 754,Acadia Healthcare,754,"$2,877 ",0.90%,$199.80 ,3153.10%,"$6,425 ","$3,459 ","34,050",Joey A. Jacobs,Chairman & Chief Executive Officer,Health Care,Health Care: Medical Facilities,-,Franklin,TN,35.9250637,-86.8688899 755,Varian Medical Systems,691,"$2,862 ",-11.10%,$249.60 ,-38.00%,"$3,179 ","$11,198 ","6,600",Dow R. Wilson,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,-,Palo Alto,CA,37.4418834,-122.1430195 756,Groupon,704,"$2,859 ",-9.00%,$14.00 ,-,"$1,678 ","$2,437 ","6,672",Rich Williams,Chairman & Chief Executive Officer,Technology,Internet Services and Retailing,-,Chicago,IL,41.8781136,-87.6297982 757,Aleris,782,"$2,858 ",7.30%,($210.60),-,"$2,644 ",-,"5,400",Sean M. Stack,"Chairman, President & Chief Executive Officer",Materials,Metals,-,Cleveland,OH,41.49932,-81.6943605 758,Sprague Resources,837,"$2,855 ",19.50%,$29.50 ,190.20%,"$1,363 ",$542 ,981,David C. Glendon,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Portsmouth,NH,43.0717552,-70.7625532 759,Cooper Tire & Rubber,743,"$2,855 ",-2.40%,$95.40 ,-61.60%,"$2,608 ","$1,491 ","9,204",Bradley E. Hughes,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,-,Findlay,OH,41.04422,-83.6499321 760,Hain Celestial Group,,"$2,853 ",-1.10%,$67.40 ,42.20%,"$2,931 ","$3,333 ","7,825",Irwin D. Simon,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Food Consumer Products,-,Lake Success,NY,40.7706572,-73.7176312 761,Penn Mutual Life Insurance,799,"$2,851 ",12.40%,$594.00 ,181.80%,"$31,660 ",-,"3,089",Eileen C. McDonnell,Chairman & Chief Executive Officer,Financials,"Insurance: Life, Health (stock)",-,Horsham,PA,40.1784422,-75.1285061 762,Colony NorthStar,,"$2,842 ",613.20%,($197.90),-568.00%,"$24,786 ","$3,038 ",544,Richard B. Saltzman,"President, Chief Executive Officer & Director",Financials,Real estate,-,Los Angeles,CA,34.0522342,-118.2436849 763,ArcBest,774,"$2,827 ",4.70%,$59.70 ,220.20%,"$1,366 ",$822 ,"13,000",Judy R. McReynolds,"Chairman, President & Chief Executive Officer",Transportation,"Trucking, Truck Leasing",-,Fort Smith,AR,35.3859242,-94.3985475 764,Presidio,,"$2,818 ",2.80%,$4.40 ,-,"$2,651 ","$1,438 ","2,700",Robert Cagnazzi,"Chairman, President & Chief Executive Officer",Technology,Information Technology Services,-,New York,NY,40.7127753,-74.0059728 765,TRI Pointe Group,831,"$2,810 ",16.80%,$187.20 ,-4.10%,"$3,805 ","$2,487 ","1,251",Douglas F. Bauer,Chairman & Chief Executive Officer,Engineering & Construction,Homebuilders,-,Irvine,CA,33.6845673,-117.8265049 766,Annaly Capital Management,853,"$2,809 ",20.10%,"$1,569.60 ",9.50%,"$101,760 ","$12,095 ",152,Kevin G. Keyes,"Chairman, President & Chief Executive Officer",Financials,Diversified Financials,-,New York,NY,40.7127753,-74.0059728 767,G-III Apparel Group,838,"$2,807 ",17.60%,$62.10 ,19.60%,"$1,915 ","$1,849 ","9,961",Morris Goldfarb,Chairman & Chief Executive Officer,Apparel,Apparel,-,New York,NY,40.7127753,-74.0059728 768,AMC Networks,763,"$2,806 ",1.80%,$471.30 ,74.20%,"$5,033 ","$3,140 ","2,039",Joshua W. Sapan,"President, Chief Executive Officer & Director",Media,Entertainment,-,New York,NY,40.7127753,-74.0059728 769,Enable Midstream Partners,870,"$2,803 ",23.40%,$436.00 ,39.70%,"$11,593 ","$5,935 ","1,630",Rodney J. Sailor,"President, Chief Executive Officer & Director",Energy,Pipelines,-,Oklahoma City,OK,35.4675602,-97.5164276 770,Ciena,788,"$2,802 ",7.70%,"$1,262.00 ",1638.60%,"$3,952 ","$3,719 ","5,737",Gary B. Smith,"President, Chief Executive Officer & Director",Technology,Network and Other Communications Equipment,-,Hanover,MD,39.1955042,-76.7228227 771,DSW,772,"$2,800 ",3.30%,$67.30 ,-46.00%,"$1,414 ","$1,798 ","12,000",Roger L. Rawlins,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Columbus,OH,39.9611755,-82.9987942 772,Convergys,746,"$2,792 ",-4.20%,$121.40 ,-15.10%,"$2,415 ","$2,073 ","115,000",Andrea J. Ayers,"President, Chief Executive Officer & Director",Business Services,Diversified Outsourcing Services,-,Cincinnati,OH,39.1031182,-84.5120196 773,Park Hotels & Resorts,,"$2,791 ",-,"$2,625.00 ",-,"$9,714 ","$5,435 ",520,Thomas J. Baltimore Jr.,"Chairman, President & Chief Executive Officer",Financials,Real estate,-,McLean,VA,38.9338676,-77.1772604 774,Pool,791,"$2,788 ",8.50%,$191.60 ,28.70%,"$1,101 ","$5,931 ","4,000",Manuel J. Perez de la Mesa,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Covington,LA,30.4754702,-90.1009108 775,Fossil Group,723,"$2,788 ",-8.40%,($478.20),-706.30%,"$1,658 ",$618 ,"12,300",Kosta N. Kartsotis,Chairman & Chief Executive Officer,Apparel,Apparel,-,Richardson,TX,32.9483335,-96.7298519 776,Dominos Pizza,815,"$2,788 ",12.80%,$277.90 ,29.50%,$837 ,"$10,060 ","14,200",J. Patrick Doyle,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure",Food Services,-,Ann Arbor,MI,42.2808256,-83.7430378 777,Crane,767,"$2,786 ",1.40%,$171.80 ,39.90%,"$3,594 ","$5,547 ","10,600",Max H. Mitchell,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Stamford,CT,41.0534302,-73.5387341 778,Caleres,790,"$2,786 ",8.00%,$87.20 ,32.80%,"$1,489 ","$1,444 ","12,000",Diane M. Sullivan,"Chairman, President & Chief Executive Officer",Retailing,Specialty Retailers: Apparel,-,St. Louis,MO,38.6270025,-90.1994042 779,Tempur Sealy International,709,"$2,754 ",-12.00%,$151.40 ,-20.60%,"$2,694 ","$2,461 ","7,000",Scott L. Thompson,"Chairman, President & Chief Executive Officer",Household Products,"Home Equipment, Furnishings",-,Lexington,KY,38.0405837,-84.5037164 780,Tetra Tech,789,"$2,753 ",6.60%,$117.90 ,40.70%,"$1,903 ","$2,734 ","16,000",Dan L. Batrack,"Chairman, President & Chief Executive Officer",Engineering & Construction,"Engineering, Construction",-,Pasadena,CA,34.1477849,-118.1445155 781,Illumina,833,"$2,752 ",14.70%,$726.00 ,56.90%,"$5,257 ","$34,754 ","6,200",Francis A. deSouza,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",-,San Diego,CA,32.715738,-117.1610838 782,Valmont Industries,804,"$2,746 ",8.90%,$116.20 ,-32.90%,"$2,602 ","$3,322 ","10,690",Stephen G. Kaniewski,"President, Chief Executive Officer & Director",Materials,Metals,-,Omaha,NE,41.2565369,-95.9345034 783,Hill-Rom Holdings,784,"$2,744 ",3.30%,$133.60 ,7.70%,"$4,529 ","$5,757 ","10,000",John P. Groetelaars,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,-,Chicago,IL,41.8781136,-87.6297982 784,Unisys,756,"$2,742 ",-2.80%,($65.30),-,"$2,542 ",$544 ,"20,500",Peter A. Altabef,"President, Chief Executive Officer & Director",Technology,Information Technology Services,-,Blue Bell,PA,40.1523309,-75.266289 785,Zions Bancorp.,816,"$2,736 ",10.80%,$592.00 ,26.20%,"$66,288 ","$10,362 ","10,083",Harris H. Simmons,Chairman & Chief Executive Officer,Financials,Commercial Banks,-,Salt Lake City,UT,40.7607793,-111.8910474 786,Sinclair Broadcast Group,769,"$2,734 ",-0.10%,$576.00 ,134.80%,"$6,785 ","$3,185 ","8,900",Christopher S. Ripley,"President, Chief Executive Officer & Director",Media,Entertainment,-,Cockeysville,MD,39.4900013,-76.6585074 787,Louisiana-Pacific,878,"$2,734 ",22.40%,$389.80 ,160.20%,"$2,449 ","$4,173 ","5,000",W. Bradley Southern,Chairman & Chief Executive Officer,Materials,"Building Materials, Glass",-,Nashville,TN,36.1626638,-86.7816016 788,Mettler-Toledo International,810,"$2,725 ",8.60%,$376.00 ,-2.20%,"$2,550 ","$14,635 ","14,600",Olivier A. Filliol,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",-,Columbus,OH,39.9611755,-82.9987942 789,Synopsys,827,"$2,725 ",12.50%,$136.60 ,-48.80%,"$5,396 ","$12,380 ","11,686",Aart J. de Geus/Chi-Foon Chan,Chairman & Co-Chief Executive Officer,Technology,Computer Software,-,Mountain View,CA,37.3860517,-122.0838511 790,Kemper,803,"$2,723 ",8.00%,$120.90 ,619.60%,"$8,376 ","$2,933 ","5,550",Joseph P. Lacher Jr.,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),-,Chicago,IL,41.8781136,-87.6297982 791,Cabot,829,"$2,717 ",12.70%,$241.00 ,61.70%,"$3,314 ","$3,444 ","4,500",Sean D. Keohane,"President, Chief Executive Officer & Director",Chemicals,Chemicals,-,Boston,MA,42.3600825,-71.0588801 792,Great Plains Energy,778,"$2,708 ",1.20%,($106.20),-136.60%,"$12,458 ","$6,856 ","2,709",Terry D. Bassham,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,-,KCMO,MO,39.0997265,-94.5785667 793,Rent-A-Center,735,"$2,703 ",-8.80%,$6.70 ,-,"$1,421 ",$461 ,"18,300",Mitchell E. Fadel,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Plano,TX,33.0198431,-96.6988856 794,Hawaiian Holdings,819,"$2,696 ",10.00%,$364.00 ,54.60%,"$2,860 ","$1,986 ","6,660",Peter R. Ingram,"President, Chief Executive Officer & Director",Transportation,Airlines,-,Honolulu,HI,21.3069444,-157.8583333 795,Revlon,855,"$2,694 ",15.40%,($183.20),-,"$3,057 ","$1,085 ","7,800",Debra G. Perelman,Vice Chairman & Chief Executive Officer,Household Products,Household and Personal Products,-,New York,NY,40.7127753,-74.0059728 796,Syneos Health,,"$2,672 ",65.90%,($138.50),-222.90%,"$7,286 ","$3,713 ","21,000",Alistair MacDonald,Chairman & Chief Executive Officer,Health Care,Health Care: Pharmacy and Other Services,-,Raleigh,NC,35.7795897,-78.6381787 797,Public Storage,794,"$2,669 ",4.20%,"$1,442.20 ",-0.80%,"$10,733 ","$34,885 ","5,600",Ronald L. Havner Jr.,Chairman & Chief Executive Officer,Financials,Real estate,-,Glendale,CA,34.1425078,-118.255075 798,TTM Technologies,800,"$2,659 ",4.90%,$124.20 ,256.30%,"$2,782 ","$1,582 ","29,000",Thomas T. Edman,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Costa Mesa,CA,33.6412156,-117.9188221 799,Vectren,820,"$2,657 ",8.50%,$216.00 ,2.10%,"$6,239 ","$5,310 ","5,500",Carl L. Chapman,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,-,Evansville,IN,37.9715592,-87.5710898 800,Trimble,844,"$2,654 ",12.40%,$121.10 ,-8.50%,"$4,298 ","$8,920 ","9,523",Steven W. Berglund,"President, Chief Executive Officer & Director",Technology,"Scientific,Photographic and Control Equipment",-,Sunnyvale,CA,37.36883,-122.0363496 801,NOW,910,"$2,648 ",25.70%,($52.00),-,"$1,749 ","$1,104 ","4,463",Robert R. Workman,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Houston,TX,29.7604267,-95.3698028 802,Spirit Airlines,860,"$2,648 ",14.00%,$420.60 ,58.80%,"$4,144 ","$2,577 ","6,100",Robert L. Fornaro,Chairman & Chief Executive Officer,Transportation,Airlines,-,Miramar,FL,25.9860762,-80.3035602 803,ASGN,822,"$2,626 ",7.60%,$157.70 ,62.20%,"$1,810 ","$4,272 ","3,800",Peter T. Dameris,Chief Executive Officer & Director,Business Services,Temporary Help,-,Calabasas,CA,34.1367208,-118.6614809 804,Lincoln Electric Holdings,868,"$2,624 ",15.40%,$247.50 ,24.80%,"$2,407 ","$5,902 ","11,000",Christopher L. Mapes,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Cleveland,OH,41.49932,-81.6943605 805,Prologis,801,"$2,618 ",3.40%,"$1,652.30 ",36.60%,"$29,481 ","$33,578 ","1,565",Hamid R. Moghadam,Chairman & Chief Executive Officer,Financials,Real estate,-,SF,CA,37.7749295,-122.4194155 806,Range Resources,,"$2,611 ",137.40%,$333.10 ,-,"$11,729 ","$3,614 ",773,Jeffrey L. Ventura,"Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",-,Fort Worth,TX,32.7554883,-97.3307658 807,Teledyne Technologies,900,"$2,604 ",21.10%,$227.20 ,19.00%,"$3,846 ","$6,682 ","10,340",Robert Mehrabian,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,-,Thousand Oaks,CA,34.1705609,-118.8375937 808,Vishay Intertechnology,858,"$2,604 ",12.10%,($20.30),-141.70%,"$3,459 ","$2,682 ","23,000",Gerald Paul,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Malvern,PA,40.0362184,-75.5138118 809,Boston Properties,796,"$2,602 ",2.00%,$462.40 ,-9.80%,"$19,372 ","$19,018 ",740,Owen D. Thomas,Chief Executive Officer,Financials,Real estate,-,Boston,MA,42.3600825,-71.0588801 810,Applied Industrial Technologies,806,"$2,594 ",2.90%,$133.90 ,352.80%,"$1,388 ","$2,819 ","5,554",Neil A. Schrimsher,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Cleveland,OH,41.49932,-81.6943605 811,Graham Holdings,813,"$2,592 ",4.40%,$302.00 ,79.20%,"$4,938 ","$3,312 ","16,153",Timothy J. O�Shaughnessy,"President, Chief Executive Officer & Director",Business Services,Education,-,Arlington,VA,38.8816208,-77.0909809 812,Amica Mutual Insurance,834,"$2,590 ",8.00%,$96.10 ,-38.90%,"$6,355 ",-,"3,693",Robert A. DiMuccio,"Chairman, President & Chief Executive Officer",Financials,Insurance: Property and Casualty (Mutual),-,Lincoln,RI,41.9110123,-71.4418101 813,Concho Resources,,"$2,586 ",58.20%,$956.00 ,-,"$13,732 ","$22,409 ","1,203",Timothy A. Leach,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",-,Midland,TX,31.9973456,-102.0779146 814,ITT,830,"$2,585 ",7.50%,$113.50 ,-39.00%,"$3,700 ","$4,343 ","10,000",Denise L. Ramos,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,White Plains,NY,41.0339862,-73.7629097 815,Kansas City Southern,854,"$2,583 ",10.70%,$962.00 ,101.20%,"$9,199 ","$11,320 ","7,130",Patrick J. Ottensmeyer,"President, Chief Executive Officer & Director",Transportation,Railroads,-,KCMO,MO,39.0997265,-94.5785667 816,MDC Holdings,857,"$2,578 ",10.80%,$141.80 ,37.40%,"$2,780 ","$1,567 ","1,491",Larry A. Mizel,Chairman & Chief Executive Officer,Engineering & Construction,Homebuilders,-,Denver,CO,39.7392358,-104.990251 817,Evergy,793,"$2,571 ",0.30%,$323.90 ,-6.50%,"$11,624 ","$7,480 ","2,205",Terry D. Bassham,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Topeka,KS,39.0473451,-95.6751576 818,Pinnacle Entertainment,840,"$2,562 ",7.70%,$63.10 ,-,"$3,950 ","$1,753 ","15,377",Anthony M. Sanfilippo,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Las Vegas,NV,36.1699412,-115.1398296 819,Hawaiian Electric Industries,839,"$2,556 ",7.30%,$165.30 ,-33.40%,"$13,100 ","$3,742 ","3,880",Constance H. Lau,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Honolulu,HI,21.3069444,-157.8583333 820,TEGNA,671,"$2,550 ",-23.70%,$273.70 ,-37.30%,"$4,962 ","$2,456 ","5,283",David T. Lougee,"President, Chief Executive Officer & Director",Media,Entertainment,-,McLean,VA,38.9338676,-77.1772604 821,Southwest Gas Holdings,817,"$2,549 ",3.60%,$193.80 ,27.50%,"$6,237 ","$3,259 ","7,771",John P. Hester,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Las Vegas,NV,36.1699412,-115.1398296 822,Vista Outdoor,872,"$2,547 ",12.20%,($274.50),-286.70%,"$2,977 ",$936 ,"6,400",Christopher T. Metz,Chairman & Chief Executive Officer,Household Products,Miscellaneous,-,Farmington,UT,40.9804999,-111.8874392 823,Bon-Ton Stores,779,"$2,541 ",-5.00%,($90.70),-,"$1,587 ",$1 ,"23,300",William X. Tracy,"President, Chief Executive Officer & Director",Retailing,General Merchandisers,-,York,PA,39.9625984,-76.727745 824,Super Micro Computer,884,"$2,530 ",14.20%,$69.30 ,-3.70%,"$1,489 ",$828 ,"2,699",Charles Liang,"Chairman, President & Chief Executive Officer",Technology,"Computers, Office Equipment",-,San Jose,CA,37.3382082,-121.8863286 825,Plexus,795,"$2,528 ",-1.10%,$112.10 ,46.60%,"$1,976 ","$2,012 ","16,000",Todd P. Kelsey,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Neenah,WI,44.1858193,-88.462609 826,TrueBlue,766,"$2,509 ",-8.80%,$55.50 ,-,"$1,109 ","$1,063 ","5,500",Steven C. Cooper,Chairman & Chief Executive Officer,Business Services,Temporary Help,-,Tacoma,WA,47.2528768,-122.4442906 827,Magellan Midstream Partners,889,"$2,508 ",13.70%,$869.50 ,8.30%,"$7,394 ","$13,315 ","1,802",Michael N. Mears,"Chairman, President & Chief Executive Officer",Energy,Pipelines,-,Tulsa,OK,36.1539816,-95.992775 828,Toro,836,"$2,505 ",4.70%,$267.70 ,15.90%,"$1,494 ","$6,621 ","6,779",Richard M. Olson,"Chairman, President & Chief Executive Officer",Industrials,Construction and Farm Machinery,-,Bloomington,MN,44.840798,-93.2982799 829,Akamai Technologies,851,"$2,503 ",7.00%,$218.30 ,-30.90%,"$4,603 ","$12,069 ","7,650",F. Thomson Leighton,Chief Executive Officer & Director,Technology,Internet Services and Retailing,-,Cambridge,MA,42.3736158,-71.1097335 830,Moog,828,"$2,498 ",3.50%,$141.30 ,11.50%,"$3,091 ","$2,949 ","10,675",John R. Scannell,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,-,Elma Center,NY,42.8212288,-78.6341996 831,Vertex Pharmaceuticals,,"$2,489 ",46.20%,$263.50 ,-,"$3,546 ","$41,379 ","2,300",Jeffrey M. Leiden,"Chairman, President & Chief Executive Officer",Health Care,Pharmaceuticals,-,Boston,MA,42.3600825,-71.0588801 832,Equity Residential,825,"$2,471 ",1.90%,$603.50 ,-85.90%,"$20,571 ","$22,687 ","2,683",David J. Neithercut,"President, Chief Executive Officer & Director",Financials,Real estate,-,Chicago,IL,41.8781136,-87.6297982 833,Selective Insurance Group,865,"$2,470 ",8.10%,$168.80 ,6.50%,"$7,686 ","$3,566 ","2,260",Gregory E. Murphy,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),-,Branchville,NJ,41.1464852,-74.7523874 834,AptarGroup,856,"$2,469 ",5.90%,$220.00 ,7.00%,"$3,138 ","$5,600 ","13,200",Stephan B. Tanda,"President, Chief Executive Officer & Director",Materials,"Packaging, Containers",-,Crystal Lake,IL,42.2411344,-88.3161965 835,Benchmark Electronics,863,"$2,467 ",6.80%,($32.00),-149.90%,"$2,097 ","$1,455 ","10,600",Paul J. Tufano,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Scottsdale,AZ,33.4941704,-111.9260519 836,Columbia Sportswear,841,"$2,466 ",3.70%,$105.10 ,-45.20%,"$2,213 ","$5,351 ","6,188",Timothy P. Boyle,"President, Chief Executive Officer & Director",Apparel,Apparel,-,Portland,OR,45.5122308,-122.6587185 837,A. Schulman,811,"$2,461 ",-1.40%,$33.00 ,-,"$1,754 ","$1,270 ","4,900",Joseph M. Gingo,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Fairlawn,OH,41.127833,-81.609844 838,Verso,786,"$2,461 ",-6.80%,($30.00),-,"$1,732 ",$580 ,"4,200",B. Christopher DiSantis,"President, Chief Executive Officer & Director",Materials,Forest and Paper Products,-,Miamisburg,OH,39.6428362,-84.2866083 839,Digital Realty Trust,901,"$2,458 ",14.70%,$248.30 ,-41.70%,"$21,404 ","$21,701 ","1,429",A. William Stein,Chairman & Chief Executive Officer,Financials,Real estate,-,SF,CA,37.7749295,-122.4194155 840,GNC Holdings,797,"$2,453 ",-3.40%,($148.90),-,"$1,517 ",$323 ,"11,500",Kenneth A. Martindale,Chairman & Chief Executive Officer,Food & Drug Stores,Food and Drug Stores,-,Pittsburgh,PA,40.4406248,-79.9958864 841,E*Trade Financial,930,"$2,452 ",21.00%,$614.00 ,11.20%,"$63,365 ","$14,692 ","3,607",Karl A. Roessner,Chairman & Chief Executive Officer,Financials,Securities,-,New York,NY,40.7127753,-74.0059728 842,Hovnanian Enterprises,765,"$2,452 ",-10.90%,($332.20),-,"$1,901 ",$271 ,"1,905",Ara K. Hovnanian,"Chairman, President & Chief Executive Officer",Engineering & Construction,Homebuilders,-,Red Bank,NJ,40.3470543,-74.0643065 843,Maximus,832,"$2,451 ",2.00%,$209.40 ,17.40%,"$1,351 ","$4,353 ","20,400",Bruce L. Caswell,"President, Chief Executive Officer & Director",Technology,Information Technology Services,-,Reston,VA,38.9586307,-77.3570028 844,Twitter,802,"$2,443 ",-3.40%,($108.10),-,"$7,413 ","$21,784 ","3,372",Jack Dorsey,Chairman & Chief Executive Officer,Technology,Internet Services and Retailing,-,SF,CA,37.7749295,-122.4194155 845,Par Pacific Holdings,974,"$2,443 ",31.00%,$72.60 ,-,"$1,347 ",$784 ,905,William C. Pate,"President, Chief Executive Officer & Director",Energy,Petroleum Refining,-,Houston,TX,29.7604267,-95.3698028 846,Parexel International,824,"$2,442 ",0.60%,$107.30 ,-30.70%,"$2,313 ",-,"18,900",Jamie Macdonald,Chief Executive Officer,Health Care,Health Care: Pharmacy and Other Services,-,Waltham,MA,42.3764852,-71.2356113 847,RH,902,"$2,440 ",14.30%,$2.20 ,-59.60%,"$1,733 ","$2,050 ","4,750",Gary G. Friedman,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Corte Madera,CA,37.9254806,-122.5274755 848,Nexstar Media Group,,"$2,432 ",120.40%,$475.00 ,418.90%,"$7,482 ","$3,066 ","8,737",Perry A. Sook,"Chairman, President & Chief Executive Officer",Media,Entertainment,-,Irving,TX,32.8140177,-96.9488945 849,Knight-Swift Transportation Holdings,586,"$2,426 ",116.90%,$484.30 ,416.00%,"$7,683 ","$8,199 ","25,300",David A. Jackson,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",-,Phoenix,AZ,33.4483771,-112.0740373 850,Red Hat,920,"$2,412 ",17.50%,$253.70 ,27.30%,"$4,535 ","$26,464 ","10,500",James M. Whitehurst,"President, Chief Executive Officer & Director",Technology,Computer Software,-,Raleigh,NC,35.7795897,-78.6381787 851,Belden,846,"$2,389 ",1.40%,$93.20 ,-27.20%,"$3,841 ","$2,891 ","8,800",John S. Stroup,"Chairman, President & Chief Executive Officer",Industrials,"Electronics, Electrical Equip.",-,St. Louis,MO,38.6270025,-90.1994042 852,Boyd Gaming,894,"$2,384 ",9.10%,$189.20 ,-54.70%,"$4,686 ","$3,589 ","19,707",Keith E. Smith,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Las Vegas,NV,36.1699412,-115.1398296 853,Primoris Services,938,"$2,380 ",19.20%,$72.40 ,170.80%,"$1,256 ","$1,287 ","7,102",David L. King,"President, Chief Executive Officer & Director",Engineering & Construction,"Engineering, Construction",-,Dallas,TX,32.7766642,-96.7969879 854,Gardner Denver,,"$2,375 ",22.50%,$18.40 ,-,"$4,621 ","$6,051 ","6,400",Vicente Reynal,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,-,Milwaukee,WI,43.0389025,-87.9064736 855,Donaldson,882,"$2,372 ",6.80%,$232.80 ,22.00%,"$1,980 ","$5,851 ","13,200",Tod E. Carpenter,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Minneapolis,MN,44.977753,-93.2650108 856,Party City Holdco,866,"$2,372 ",3.90%,$215.30 ,83.30%,"$3,455 ","$1,504 ","14,600",James M. Harrison,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Elmsford,NY,41.0550969,-73.8201337 857,J.Crew Group,826,"$2,370 ",-2.30%,($125.00),-,"$1,201 ",$0 ,"8,950",James W. Brett,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,New York,NY,40.7127753,-74.0059728 858,EnerSys,861,"$2,367 ",2.20%,$160.20 ,17.70%,"$2,293 ","$2,907 ","9,400",David M. Shaffer,"President, Chief Executive Officer & Director",Industrials,"Electronics, Electrical Equip.",-,Reading,PA,40.3356483,-75.9268747 859,Guess,887,"$2,364 ",7.90%,($7.90),-134.70%,"$1,656 ","$1,667 ","14,700",Victor Herrero,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Los Angeles,CA,34.0522342,-118.2436849 860,Patterson-UTI Energy,,"$2,357 ",157.30%,$5.90 ,-,"$5,759 ","$3,892 ","8,000",William A. Hendricks Jr.,"President, Chief Executive Officer & Director",Energy,"Oil and Gas Equipment, Services",-,Houston,TX,29.7604267,-95.3698028 861,WGL Holdings,848,"$2,355 ",0.20%,$192.60 ,14.90%,"$6,626 ","$4,296 ","1,586",Terry D. McCallister,Chairman & Chief Executive Officer,Energy,Energy,-,Leavenworth,WA,47.7510741,-120.7401385 862,Wolverine World Wide,812,"$2,350 ",-5.80%,$0.30 ,-99.70%,"$2,399 ","$2,753 ","3,700",Blake W. Krueger,"Chairman, President & Chief Executive Officer",Apparel,Apparel,-,Rockford,MI,43.1200272,-85.5600316 863,Xilinx,885,"$2,349 ",6.10%,$622.50 ,13.00%,"$4,741 ","$18,408 ","3,831",Victor Peng,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,San Jose,CA,37.3382082,-121.8863286 864,Vornado Realty Trust,809,"$2,345 ",-6.60%,$227.40 ,-74.90%,"$17,398 ","$12,786 ","3,989",Steven Roth,Chairman & Chief Executive Officer,Financials,Real estate,-,New York,NY,40.7127753,-74.0059728 865,Middleby,873,"$2,336 ",3.00%,$298.10 ,4.90%,"$3,340 ","$6,896 ","8,493",Selim A. Bassoul,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Elgin,IL,42.0354084,-88.2825668 866,MPM Holdings,879,"$2,331 ",4.40%,$0.00 ,-,"$2,717 ","$1,282 ","5,200",John G. Boss,"President, Chief Executive Officer & Director",Chemicals,Chemicals,-,Waterford,NY,42.7925777,-73.6812293 867,Cleveland-Cliffs,907,"$2,330.20 ",10.50%,$367.00 ,110.80%,"$2,953.40 ","$2,067 ",2938,Lourenco C. Goncalves,"Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",-,Cleveland,OH,41.49932,-81.6943605 868,GGP,849,"$2,328 ",-0.80%,$657.30 ,-49.00%,"$23,350 ","$19,581 ","1,700",Sandeep Mathrani,Chairman & Chief Executive Officer,Financials,Real estate,-,Chicago,IL,41.8781136,-87.6297982 869,Cypress Semiconductor,959,"$2,328 ",21.00%,($80.90),-,"$3,537 ","$6,021 ","6,099",Hassane El-Khoury,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,San Jose,CA,37.3382082,-121.8863286 870,Arch Coal,946,"$2,325 ",17.70%,$238.50 ,-,"$1,980 ","$1,913 ","3,790",John W. Eaves,Chairman & Chief Executive Officer,Energy,"Mining, Crude-Oil Production",-,St. Louis,MO,38.6270025,-90.1994042 871,GMS,976,"$2,319 ",24.80%,$48.90 ,289.10%,"$1,393 ","$1,254 ","4,464",G. Michael Callahan Jr.,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Tucker,GA,33.8545479,-84.2171424 872,Waters,899,"$2,309 ",6.50%,$20.30 ,-96.10%,"$5,340 ","$15,553 ","7,000",Christopher J. O'Connell,Chairman & Chief Executive Officer,Technology,"Scientific,Photographic and Control Equipment",-,Milford,MA,42.1398577,-71.5163049 873,H.B. Fuller,913,"$2,306 ",10.10%,$58.20 ,-53.10%,"$4,361 ","$2,513 ","5,965",James J. Owens,"President, Chief Executive Officer & Director",Chemicals,Chemicals,-,St Paul,MN,44.9537029,-93.0899578 874,Affiliated Managers Group,892,"$2,305 ",5.00%,$689.50 ,45.80%,"$8,702 ","$10,331 ","4,400",Nathaniel Dalton,Chairman & Chief Executive Officer,Financials,Securities,-,West Palm Beach,FL,26.7153424,-80.0533746 875,PerkinElmer,875,"$2,301 ",1.80%,$292.60 ,24.90%,"$6,092 ","$8,367 ","11,000",Robert F. Friel,"Chairman, President & Chief Executive Officer",Technology,"Scientific,Photographic and Control Equipment",-,Waltham,MA,42.3764852,-71.2356113 876,Edgewell Personal Care,845,"$2,298 ",-2.70%,$5.70 ,-96.80%,"$4,189 ","$2,636 ","6,000",David P. Hatfield,"Chairman, President & Chief Executive Officer",Household Products,Household and Personal Products,-,Chesterfield,MO,38.6631083,-90.5770675 877,Maxim Integrated Products,891,"$2,296 ",4.60%,$571.60 ,151.30%,"$4,570 ","$16,935 ","7,040",Tun� Doluca,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,San Jose,CA,37.3382082,-121.8863286 878,Knights of Columbus,880,"$2,290 ",2.80%,$108.10 ,21.90%,"$24,954 ",-,926,Carl A. Anderson,Chairman & Chief Executive Officer,Financials,"Insurance: Life, Health (Mutual)",-,New Haven,CT,41.308274,-72.9278835 879,IDEX,906,"$2,287 ",8.20%,$337.30 ,24.40%,"$3,400 ","$10,916 ","7,167",Andrew K. Silvernail,"Chairman, President & Chief Executive Officer",Industrials,Industrial Machinery,-,Lake Forest,IL,42.2586342,-87.840625 880,DST Systems,847,"$2,284 ",-3.00%,$451.50 ,5.70%,"$2,938 ","$4,962 ","14,200",William C. Stone,CEO-SS& C Technologies Holdings,Business Services,Financial Data Services,-,KCMO,MO,39.0997265,-94.5785667 881,Chicos FAS,814,"$2,282 ",-7.80%,$101.00 ,10.70%,"$1,088 ","$1,152 ","12,350",Shelley G. Broader,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Apparel,-,Fort Myers,FL,26.640628,-81.8723084 882,Nu Skin Enterprises,888,"$2,279 ",3.20%,$129.40 ,-9.50%,"$1,590 ","$3,888 ","48,700",Ritch N. Wood,Chairman & Chief Executive Officer,Household Products,Household and Personal Products,-,Provo,UT,40.2338438,-111.6585337 883,Herman Miller,874,"$2,278 ",0.60%,$123.90 ,-9.40%,"$1,306 ","$1,907 ","7,478",Brian C. Walker,"President, Chief Executive Officer & Director",Household Products,"Home Equipment, Furnishings",-,Zeeland,MI,42.8125246,-86.018651 884,NLV Financial,943,"$2,275 ",14.40%,$259.90 ,66.60%,"$30,209 ",-,"1,065",Mehran Assadi,"President, Chief Executive Officer & Director",Financials,"Insurance: Life, Health (stock)",-,Montpelier,VT,44.2600593,-72.5753869 885,Curtiss-Wright,908,"$2,271 ",7.70%,$214.90 ,14.70%,"$3,236 ","$5,976 ","8,600",David C. Adams,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,-,Charlotte,NC,35.2270869,-80.8431267 886,New Jersey Resources,970,"$2,269 ",20.60%,$132.10 ,0.30%,"$3,929 ","$3,513 ","1,052",Laurence M. Downes,"Chairman, President & Chief Executive Officer",Energy,Energy,-,Wall Township,NJ,40.1606666,-74.0679753 887,REV Group,957,"$2,268 ",17.70%,$31.40 ,3.90%,"$1,254 ","$1,341 ","7,800",Timothy W. Sullivan,"President, Chief Executive Officer & Director",Motor Vehicles & Parts,Motor Vehicles and Parts,-,Milwaukee,WI,43.0389025,-87.9064736 888,Mueller Industries,919,"$2,266 ",10.20%,$85.60 ,-14.20%,"$1,320 ","$1,505 ","4,125",Gregory L. Christopher,Chairman & Chief Executive Officer,Industrials,Industrial Machinery,-,Memphis,TN,35.1495343,-90.0489801 889,GEO Group,895,"$2,263 ",3.90%,$146.20 ,-1.70%,"$4,227 ","$2,531 ","18,512",George C. Zoley,Chairman & Chief Executive Officer,Business Services,Miscellaneous,-,Boca Raton,FL,26.3683064,-80.1289321 890,Allison Transmission Holdings,984,"$2,262 ",22.90%,$504.00 ,134.50%,"$4,205 ","$5,404 ","2,700",David S. Graziosi,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,-,Indianapolis,IN,39.768403,-86.158068 891,OGE Energy,876,"$2,261 ",0.10%,$619.00 ,83.00%,"$10,413 ","$6,544 ","2,413",Sean R. Trauschke,"Chairman, President & Chief Executive Officer",Energy,Utilities: Gas and Electric,-,Oklahoma City,OK,35.4675602,-97.5164276 892,Cheesecake Factory,867,"$2,261 ",-0.70%,$157.40 ,12.80%,"$1,333 ","$2,213 ","39,100",David M. Overton,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure",Food Services,-,Calabasas,CA,34.1372953,-118.6541895 893,PRA Health Sciences,,"$2,259 ",24.70%,$86.90 ,27.50%,"$3,358 ","$5,292 ","15,800",Colin Shannon,"Chairman, President & Chief Executive Officer",Technology,"Scientific,Photographic and Control Equipment",-,Raleigh,NC,35.7795897,-78.6381787 894,Tupperware Brands,886,"$2,255.80 ",1.90%,($265.40),-218.70%,"$1,388 ","$2,473 ",12000,Patricia A. Stitzel,"President, Chief Executive Officer & Director",Household Products,Household and Personal Products,-,Orlando,FL,28.5383355,-81.3792365 895,Euronet Worldwide,950,"$2,252 ",15.00%,$156.80 ,-10.10%,"$3,140 ","$4,058 ","6,600",Michael J. Brown,"Chairman, President & Chief Executive Officer",Business Services,Financial Data Services,-,Leawood,KS,38.966673,-94.6169012 896,FLEETCOR Technologies,988,"$2,250 ",22.80%,$740.20 ,63.60%,"$11,318 ","$18,186 ","7,890",Ronald F. Clarke,Chairman & Chief Executive Officer,Business Services,Financial Data Services,-,Norcross,GA,33.969864,-84.2212938 897,Nationstar Mortgage Holdings,852,"$2,247 ",-4.00%,$30.00 ,57.90%,"$18,036 ","$1,755 ","7,600",Jay Bray,"Chairman, President & Chief Executive Officer",Financials,Diversified Financials,-,Coppell,TX,32.9545687,-97.0150078 898,GoDaddy,980,"$2,232 ",20.80%,$136.40 ,-,"$5,738 ","$10,315 ","5,990",Scott W. Wagner,Chief Executive Officer,Technology,Internet Services and Retailing,-,Scottsdale,AZ,33.4941704,-111.9260519 899,Blackhawk Network Holdings,966,"$2,232 ",17.50%,($155.80),-3444.10%,"$4,140 ","$2,529 ","3,190",Talbott Roche,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,-,Pleasanton,CA,37.6624312,-121.8746789 900,Cboe Global Markets,,"$2,229 ",217.00%,$401.70 ,115.00%,"$5,266 ","$12,860 ",889,Edward T. Tilly,Chairman & Chief Executive Officer,Financials,Securities,-,Chicago,IL,41.8781136,-87.6297982 901,Snyders-Lance,862,"$2,227 ",-3.80%,$148.50 ,897.60%,"$3,618 ",-,"5,900",Carlos Abrams-Rivera,President-Campbell Snacks,"Food, Beverages & Tobacco",Food Consumer Products,-,Charlotte,NC,35.2270869,-80.8431267 902,Murphy Oil,972,"$2,226 ",18.80%,($311.80),-,"$9,861 ","$4,471 ","1,128",Roger W. Jenkins,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",-,El Dorado,AR,33.20763,-92.6662674 903,CDK Global,905,"$2,220 ",5.00%,$295.60 ,23.50%,"$2,883 ","$8,523 ","8,900",Brian P. MacDonald,"President, Chief Executive Officer & Director",Technology,Computer Software,-,Hoffman Estates,IL,42.0629915,-88.1227199 904,Texas Roadhouse,942,"$2,220 ",11.50%,$131.50 ,13.80%,"$1,331 ","$4,123 ","29,524",W. Kent Taylor,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure",Food Services,-,Louisville,KY,38.2526647,-85.7584557 905,Kirby,,"$2,214 ",25.10%,$313.20 ,121.50%,"$5,127 ","$4,592 ","5,775",David W. Grzebinski,"President, Chief Executive Officer & Director",Transportation,Shipping,-,Houston,TX,29.7604267,-95.3698028 906,Square,,"$2,214 ",29.60%,($62.80),-,"$2,187 ","$19,501 ","2,338",Jack Dorsey,"Chairman, President & Chief Executive Officer",Business Services,Financial Data Services,-,SF,CA,37.7749295,-122.4194155 907,Genesee & Wyoming,937,"$2,208 ",10.30%,$549.10 ,289.00%,"$8,035 ","$4,435 ","8,000",John C. Hellmann,"Chairman, President & Chief Executive Officer",Transportation,Railroads,-,Darien,CT,41.0771914,-73.4686858 908,Zayo Group Holdings,,"$2,200 ",27.80%,$85.70 ,-,"$8,739 ","$8,474 ","3,794",Daniel P. Caruso,Chairman & Chief Executive Officer,Telecommunications,Telecommunications,-,Boulder,CO,40.0149856,-105.2705456 909,NewMarket,921,"$2,198 ",7.30%,$190.50 ,-21.70%,"$1,712 ","$4,731 ","2,223",Thomas E. Gottwald,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Richmond,VA,37.5407246,-77.4360481 910,99 Cents Only Stores,929,"$2,194 ",6.40%,($90.30),-,"$1,537 ",$0 ,"17,200",Jack L. Sinclair,Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Commerce,CA,34.0005691,-118.1597929 911,PCM,877,"$2,193 ",-2.50%,$3.10 ,-82.40%,$740 ,$98 ,"4,118",Frank F. Khulusi,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Electronics and Office Equipment,-,El Segundo,CA,33.9191799,-118.4164652 912,Federated Mutual Insurance,918,"$2,181 ",5.80%,$217.60 ,-4.90%,"$7,630 ",-,"2,388",Jeffrey E. Fetters,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Mutual),-,Owatonna,MN,44.0855572,-93.2259349 913,HNI,890,"$2,176 ",-1.30%,$89.80 ,4.90%,"$1,392 ","$1,568 ","9,350",Stanley A. Askren,"Chairman, President & Chief Executive Officer",Household Products,"Home Equipment, Furnishings",-,Muscatine,IA,41.424473,-91.0432051 914,Hospitality Properties Trust,922,"$2,172 ",6.10%,$215.10 ,-3.60%,"$7,150 ","$4,165 ",450,John G. Murray,"President, Chief Executive Officer & Director",Financials,Real estate,-,Newton,MA,42.3370413,-71.2092214 915,Greenbrier Cos.,777,"$2,169 ",-19.00%,$116.10 ,-36.60%,"$2,398 ","$1,442 ","11,917",William A. Furman,"Chairman, President & Chief Executive Officer",Transportation,Transportation Equipment,-,Lake Oswego,OR,45.4156817,-122.7159726 916,Bio-Rad Laboratories,917,"$2,160 ",4.40%,$122.20 ,370.20%,"$4,273 ","$7,443 ","8,150",Norman A. Schwartz,"Chairman, President & Chief Executive Officer",Health Care,"Scientific,Photographic and Control Equipment",-,Hercules,CA,38.0171441,-122.2885808 917,AvalonBay Communities,923,"$2,159 ",5.50%,$876.90 ,-15.20%,"$18,415 ","$22,711 ","3,123",Timothy J. Naughton,"Chairman, President & Chief Executive Officer",Financials,Real estate,-,Arlington,VA,38.8816208,-77.0909809 918,Renewable Energy Group,924,"$2,158 ",5.70%,($79.10),-278.40%,"$10,056 ",$497 ,853,Randolph L. Howard,"President, Chief Executive Officer & Director",Energy,Energy,-,Ames,IA,42.0307812,-93.6319131 919,Atlas Air Worldwide Holdings,985,"$2,157 ",17.20%,$223.50 ,438.30%,"$4,956 ","$1,538 ","2,870",William J. Flynn,"President, Chief Executive Officer & Director",Transportation,Transportation and Logistics,-,Harrison,NY,41.0400135,-73.7144477 920,Teradata,859,"$2,156 ",-7.10%,($67.00),-153.60%,"$2,556 ","$4,797 ","10,615",Victor L. Lund,"President, Chief Executive Officer & Director",Technology,Information Technology Services,-,Dayton,OH,39.7589478,-84.1916069 921,LCI Industries,,"$2,148 ",27.90%,$132.90 ,2.50%,$946 ,"$2,603 ","9,852",Jason D. Lippert,Chairman & Chief Executive Officer,Motor Vehicles & Parts,Motor Vehicles and Parts,-,Elkhart,IN,41.6819935,-85.9766671 922,Teleflex,973,"$2,146 ",14.90%,$152.50 ,-35.70%,"$6,182 ","$11,806 ","14,400",Liam J. Kelly,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,-,Wayne,PA,40.0415996,-75.3698895 923,Verisk Analytics,909,"$2,145 ",1.80%,$555.10 ,-6.10%,"$6,020 ","$17,162 ","7,192",Scott G. Stephenson,"Chairman, President & Chief Executive Officer",Business Services,Financial Data Services,-,Jersey City,NJ,40.7281575,-74.0776417 924,Popular,955,"$2,145 ",11.00%,$107.70 ,-50.30%,"$44,277 ","$4,253 ","7,784",Ignacio Alvarez,"President, Chief Executive Officer & Director",Financials,Commercial Banks,-,Hato Rey,Puerto Rico,18.4225782,-66.0509549 925,Workday,,"$2,143 ",36.60%,($321.20),-,"$4,947 ","$26,947 ","8,200",Aneel Bhusri,Chief Executive Officer & Director,Technology,Computer Software,-,Pleasanton,CA,37.6624312,-121.8746789 926,Cooper Cos.,948,"$2,139 ",8.80%,$372.90 ,36.10%,"$4,859 ","$11,217 ","11,800",Albert G. White III,"President, Chief Executive Officer & Director",Health Care,Medical Products and Equipment,-,Pleasanton,CA,37.6624312,-121.8746789 927,Express,893,"$2,138 ",-2.50%,$19.40 ,-66.30%,"$1,188 ",$564 ,"9,576",David G. Kornberg,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Apparel,-,Columbus,OH,39.9611755,-82.9987942 928,Teradyne,,"$2,137 ",21.90%,$257.70 ,-,"$3,110 ","$8,901 ","4,500",Mark E. Jagiela,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,North Reading,MA,42.5750939,-71.0786653 929,Werner Enterprises,934,"$2,117 ",5.40%,$202.90 ,156.40%,"$1,808 ","$2,645 ","12,154",Derek J. Leathers,"President, Chief Executive Officer & Director",Transportation,"Trucking, Truck Leasing",-,Omaha,NE,41.2565369,-95.9345034 930,Oaktree Capital Group,,"$2,100 ",38.30%,$231.50 ,18.90%,"$9,015 ","$6,188 ",930,Jay S. Wintrob,Chairman & Chief Executive Officer,Financials,Securities,-,Los Angeles,CA,34.0522342,-118.2436849 931,Woodward,931,"$2,099 ",3.70%,$200.50 ,10.90%,"$2,757 ","$4,391 ","6,829",Thomas A. Gendron,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,-,Fort Collins,CO,40.5852602,-105.084423 932,F5 Networks,940,"$2,090 ",4.80%,$420.80 ,15.00%,"$2,481 ","$8,943 ","4,366",Fran�ois Locoh-Donou,"President, Chief Executive Officer & Director",Technology,Network and Other Communications Equipment,-,Seattle,WA,47.6062095,-122.3320708 933,Valvoline,,"$2,084 ",8.00%,$304.00 ,11.40%,"$1,915 ","$4,428 ","5,600",Samuel J. Mitchell Jr.,Chairman & Chief Executive Officer,Chemicals,Chemicals,-,Lexington,KY,38.0405837,-84.5037164 934,Roadrunner Transportation Systems,947,"$2,082 ",2.40%,($106.70),-,$863 ,$98 ,"4,645",Curtis W. Stoelting,Chief Executive Officer & Director,Transportation,"Trucking, Truck Leasing",-,Downers Grove,IL,41.8089191,-88.0111746 935,SemGroup,,"$2,082 ",56.30%,($17.20),-918.60%,"$5,377 ","$1,692 ","1,220",Carlin G. Conner,"President, Chief Executive Officer & Director",Energy,Pipelines,-,Tulsa,OK,36.1539816,-95.992775 936,Catalent,979,"$2,075 ",12.30%,$109.80 ,-1.50%,"$3,454 ","$5,474 ","10,800",John R. Chiminski,"Chairman, President & Chief Executive Officer",Health Care,Pharmaceuticals,-,Franklin Township,NJ,40.497604,-74.4884868 937,Quorum Health,,"$2,072 ",-,($114.20),-,"$1,829 ",$247 ,"11,250",Robert H. Fish,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,-,Brentwood,TN,36.0331164,-86.7827772 938,Universal,904,"$2,071 ",-2.30%,$106.30 ,-2.50%,"$2,123 ","$1,215 ","24,000",George C. Freeman III,"Chairman, President & Chief Executive Officer","Food, Beverages & Tobacco",Tobacco,-,Richmond,VA,37.5407246,-77.4360481 939,Nordson,996,"$2,067 ",14.30%,$295.80 ,8.80%,"$3,415 ","$7,904 ","7,532",Michael F. Hilton,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Westlake,OH,41.4553232,-81.9179173 940,ResMed,986,"$2,067 ",12.40%,$342.30 ,-2.90%,"$3,469 ","$14,074 ","6,080",Michael J. Farrell,Chief Executive Officer & Director,Health Care,Medical Products and Equipment,-,San Diego,CA,32.715738,-117.1610838 941,Tower International,927,"$2,066 ",1.60%,$47.60 ,23.40%,"$1,260 ",$570 ,"7,600",James C. Gouin,Chief Executive Officer & Director,Motor Vehicles & Parts,Motor Vehicles and Parts,-,Livonia,MI,42.36837,-83.3527097 942,Freds,903,"$2,064 ",-2.90%,($140.30),-,$655 ,$114 ,"7,324",Joseph M. Anto,Interim Chief Executive Officer & Director,Food & Drug Stores,Food and Drug Stores,-,Memphis,TN,35.1495343,-90.0489801 943,Foundation Building Materials,,"$2,061 ",48.00%,$82.50 ,-,"$1,354 ",$639 ,"3,782",Ruben D. Mendoza,"President, Chief Executive Officer & Director",Wholesalers,Wholesalers: Diversified,-,Tustin,CA,33.7420005,-117.8236391 944,Kennametal,912,"$2,058 ",-1.90%,$49.10 ,-,"$2,416 ","$3,276 ","10,744",Christopher Rossi,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Pittsburgh,PA,40.4406248,-79.9958864 945,Autodesk,928,"$2,057 ",1.30%,($566.90),-,"$4,114 ","$27,418 ","8,800",Andrew Anagnost,"President, Chief Executive Officer & Director",Technology,Computer Software,-,San Rafael,CA,37.9735346,-122.5310874 946,Ply Gem Holdings,961,"$2,056 ",7.60%,$68.30 ,-9.50%,"$1,320 ","$1,481 ","9,471",Gary E. Robinette,"Chairman, President & Chief Executive Officer",Materials,"Building Materials, Glass",-,Cary,NC,35.79154,-78.7811169 947,Central Garden & Pet,989,"$2,055 ",12.30%,$78.80 ,77.10%,"$1,307 ","$2,099 ","4,050",George C. Roeth,"President, Chief Executive Officer & Director",Household Products,Household and Personal Products,-,Walnut Creek,CA,37.9100783,-122.0651819 948,Matson,954,"$2,047 ",5.40%,$232.00 ,188.20%,"$2,248 ","$1,222 ","1,947",Matthew J. Cox,Chairman & Chief Executive Officer,Transportation,Shipping,-,Honolulu,HI,21.3069444,-157.8583333 949,EchoStar,719,"$2,039 ",-33.30%,$392.60 ,118.20%,"$8,750 ","$5,061 ","2,100",Michael T. Dugan,"President, Chief Executive Officer & Director",Technology,Network and Other Communications Equipment,-,Englewood,CO,39.6477653,-104.9877597 950,Genesis Energy,,"$2,028 ",18.40%,$82.60 ,-27.00%,"$7,138 ","$2,416 ","2,100",Grant E. Sims,Chairman & Chief Executive Officer,Energy,Pipelines,-,Houston,TX,29.7604267,-95.3698028 951,SVB Financial Group,,"$2,022 ",22.60%,$490.50 ,28.20%,"$51,215 ","$12,694 ","2,438",Gregory W. Becker,"President, Chief Executive Officer & Director",Financials,Commercial Banks,-,Santa Clara,CA,37.3541079,-121.9552356 952,Itron,933,"$2,018 ",0.20%,$57.30 ,80.40%,"$2,106 ","$2,799 ","7,150",Philip C. Mezey,"President, Chief Executive Officer & Director",Industrials,"Electronics, Electrical Equip.",-,Liberty Lake,WA,47.6743428,-117.1124241 953,Portland General Electric,960,"$2,009 ",4.50%,$187.00 ,-3.10%,"$7,838 ","$3,614 ","2,906",Maria M. Pope,"President, Chief Executive Officer & Director",Energy,Utilities: Gas and Electric,-,Portland,OR,45.5122308,-122.6587185 954,California Resources,,"$2,006 ",29.70%,($266.00),-195.30%,"$6,207 ",$778 ,"1,450",Todd A. Stevens,"President, Chief Executive Officer & Director",Energy,"Mining, Crude-Oil Production",-,Los Angeles,CA,34.0522342,-118.2436849 955,Esterline Technologies,932,"$2,005 ",-0.50%,$111.60 ,13.90%,"$3,120 ","$2,174 ","13,255",Curtis C. Reusser,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,-,Bellevue,WA,47.6101497,-122.2015159 956,Delta Tucker Holdings,987,"$2,004 ",9.20%,$30.60 ,-,$736 ,-,"8,800",George Krivo,Chairman & Chief Executive Officer,Aerospace & Defense,Aerospace and Defense,-,McLean,VA,38.9338676,-77.1772604 957,AMN Healthcare Services,964,"$1,989 ",4.50%,$132.60 ,25.20%,"$1,254 ","$2,714 ","2,980",Susan R. Salka,"President, Chief Executive Officer & Director",Health Care,Health Care: Pharmacy and Other Services,-,San Diego,CA,32.715738,-117.1610838 958,Griffon,951,"$1,986 ",1.50%,$14.90 ,-50.30%,"$1,874 ",$866 ,"4,700",Ronald J. Kramer,Chairman & Chief Executive Officer,Materials,"Building Materials, Glass",-,New York,NY,40.7127753,-74.0059728 959,Valhi,,"$1,980 ",23.30%,$207.50 ,-,"$2,908 ","$2,055 ","2,790",Robert D. Graham,"Vice Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Dallas,TX,32.7766642,-96.7969879 960,Hexcel,936,"$1,973 ",-1.50%,$284.00 ,13.70%,"$2,781 ","$5,791 ","6,259",Nick L. Stanage,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,-,Stamford,CT,41.0534302,-73.5387341 961,IDEXX Laboratories,,"$1,969 ",10.90%,$263.10 ,18.50%,"$1,713 ","$16,663 ","7,600",Jonathan W. Ayers,"Chairman, President & Chief Executive Officer",Health Care,Medical Products and Equipment,-,Westbrook,ME,43.6770252,-70.3711617 962,Deluxe,978,"$1,966 ",6.30%,$230.20 ,0.30%,"$2,209 ","$3,539 ","5,886",Lee J. Schram,Chairman & Chief Executive Officer,Media,"Publishing, Printing",-,Shoreview,MN,45.0791325,-93.1471667 963,M/I Homes,-,"$1,962.00 ",16.00%,$72.10 ,27.30%,"$1,864.80 ",$888 ,1238,Robert H. Schottenstein,"Chairman, President & Chief Executive Officer",Engineering & Construction,Homebuilders,-,Columbus,OH,39.9611755,-82.9987942 964,Kraton,,"$1,960 ",12.40%,$97.50 ,-9.10%,"$2,933 ","$1,512 ","1,931",Kevin M. Fogarty,"President, Chief Executive Officer & Director",Chemicals,Chemicals,-,Houston,TX,29.7604267,-95.3698028 965,Stewart Information Services,935,"$1,956 ",-2.50%,$48.70 ,-12.30%,"$1,406 ","$1,042 ","5,960",Matthew W. Morris,Chairman & Chief Executive Officer,Financials,Insurance: Property and Casualty (Stock),-,Houston,TX,29.7604267,-95.3698028 966,Marriott Vacations Worldwide,994,"$1,952 ",7.80%,$226.80 ,65.10%,"$2,906 ","$3,535 ","11,000",Stephen P. Weisz,"President, Chief Executive Officer & Director","Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Orlando,FL,28.5383355,-81.3792365 967,SPX FLOW,939,"$1,952 ",-2.20%,$46.40 ,-,"$2,689 ","$2,091 ","7,000",Marcus G. Michael,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Charlotte,NC,35.2270869,-80.8431267 968,ACCO Brands,,"$1,949 ",25.20%,$131.70 ,37.90%,"$2,799 ","$1,353 ","6,620",Boris Y. Elisman,"Chairman, President & Chief Executive Officer",Household Products,"Home Equipment, Furnishings",-,Lake Zurich,IL,42.1969689,-88.0934108 969,Echo Global Logistics,,"$1,943 ",13.20%,$12.60 ,694.10%,$838 ,$774 ,"2,453",Douglas R. Waggoner,Chairman & Chief Executive Officer,Transportation,Transportation and Logistics,-,Chicago,IL,41.8781136,-87.6297982 970,Cadence Design Systems,992,"$1,943 ",7.00%,$204.10 ,0.50%,"$2,419 ","$10,415 ","7,214",Lip-Bu Tan,Chairman & Chief Executive Officer,Technology,Computer Software,-,San Jose,CA,37.3382082,-121.8863286 971,Nuance Communications,953,"$1,939 ",-0.50%,($151.00),-,"$5,932 ","$4,626 ","11,600",Mark D. Benjamin,Chairman & Chief Executive Officer,Technology,Computer Software,-,Burlington,MA,42.5047161,-71.1956205 972,Finish Line,968,"$1,934 ",2.40%,($18.20),-183.20%,$747 ,$559 ,"8,200",Samuel M. Sato,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Apparel,-,Indianapolis,IN,39.768403,-86.158068 973,TransUnion,,"$1,934 ",13.40%,$441.20 ,265.80%,"$5,119 ","$10,441 ","5,100",James M. Peck,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,-,Chicago,IL,41.8781136,-87.6297982 974,ServiceNow,,"$1,933 ",39.00%,($149.10),-,"$3,398 ","$28,904 ","6,222",John J. Donahoe,"President, Chief Executive Officer & Director",Technology,Computer Software,-,Santa Clara,CA,37.3541079,-121.9552356 975,Summit Materials,,"$1,933 ",18.80%,$121.80 ,231.20%,"$3,787 ","$3,342 ","6,000",Thomas W. Hill,"President, Chief Executive Officer & Director",Materials,"Building Materials, Glass",-,Denver,CO,39.7392358,-104.990251 976,Engility Holdings,915,"$1,932 ",-7.00%,($35.20),-,"$2,026 ",$899 ,"8,700",Lynn A. Dugle,"Chairman, President & Chief Executive Officer",Aerospace & Defense,Aerospace and Defense,-,Chantilly,VA,38.8942786,-77.4310992 977,Ferrellgas Partners,926,"$1,930 ",-5.30%,($54.20),-,"$1,610 ",$303 ,"3,891",James E. Ferrell,Chairman & Interim Chief Executive Officer,Energy,Energy,-,Overland Park,KS,38.9822282,-94.6707917 978,Interactive Brokers Group,,"$1,927 ",30.60%,$76.00 ,-9.50%,"$61,162 ","$4,806 ","1,228",Thomas P. Peterffy,Chairman & Chief Executive Officer,Financials,Securities,-,Greenwich,CT,41.0262417,-73.6281964 979,Stepan,,"$1,925 ",9.00%,$91.60 ,6.30%,"$1,471 ","$1,875 ","2,096",F. Quinn Stepan Jr.,"Chairman, President & Chief Executive Officer",Chemicals,Chemicals,-,Northfield,IL,42.09975,-87.7808967 980,Oceaneering International,871,"$1,922 ",-15.40%,$166.40 ,576.80%,"$3,024 ","$1,827 ","8,200",Roderick A. Larson,"President, Chief Executive Officer & Director",Energy,"Oil and Gas Equipment, Services",-,Houston,TX,29.7604267,-95.3698028 981,Cimarex Energy,,"$1,918 ",52.60%,$494.30 ,-,"$5,043 ","$8,924 ",910,Thomas E. Jorden,"Chairman, President & Chief Executive Officer",Energy,"Mining, Crude-Oil Production",-,Denver,CO,39.7392358,-104.990251 982,Rexnord,958,"$1,918 ",-0.30%,$74.10 ,9.10%,"$3,539 ","$3,086 ","8,000",Todd A. Adams,"President, Chief Executive Officer & Director",Industrials,Industrial Machinery,-,Milwaukee,WI,43.0389025,-87.9064736 983,Beazer Homes USA,990,"$1,916 ",5.20%,$31.80 ,577.90%,"$2,221 ",$536 ,"1,100",Allan P. Merrill,"President, Chief Executive Officer & Director",Engineering & Construction,Homebuilders,-,Atlanta,GA,33.7489954,-84.3879824 984,MKS Instruments,,"$1,916 ",47.90%,$339.10 ,223.60%,"$2,414 ","$6,307 ","4,923",Gerald G. Colella,"President, Chief Executive Officer & Director",Technology,Semiconductors and Other Electronic Components,-,Andover,MA,42.6583356,-71.1367953 985,Vail Resorts,,"$1,907 ",19.10%,$210.60 ,40.60%,"$4,111 ","$8,962 ","20,150",Robert A. Katz,Chairman & Chief Executive Officer,"Hotels, Restaurants & Leisure","Hotels, Casinos, Resorts",-,Broomfield,CO,39.9205411,-105.0866504 986,Ohio National Mutual,,"$1,907 ",8.20%,$25.90 ,-91.10%,"$41,843 ",-,"1,300",Gary T. Huffman,"Chairman, President & Chief Executive Officer",Financials,"Insurance: Life, Health (stock)",-,Cincinnati,OH,39.1031182,-84.5120196 987,TopBuild,,"$1,906 ",9.40%,$158.10 ,117.80%,"$1,750 ","$2,725 ","8,400",Gerald Volas,Chairman & Chief Executive Officer,Engineering & Construction,"Engineering, Construction",-,Daytona Beach,FL,29.2108147,-81.0228331 988,Brown & Brown,,"$1,881 ",6.50%,$399.60 ,55.20%,"$5,748 ","$7,025 ","8,491",J. Powell Brown,"President, Chief Executive Officer & Director",Financials,Insurance: Property and Casualty (Stock),-,Daytona Beach,FL,29.2108147,-81.0228331 989,Aerojet Rocketdyne Holdings,,"$1,877 ",6.60%,($9.20),-151.10%,"$2,259 ","$2,113 ","5,157",Eileen P. Drake,"President, Chief Executive Officer & Director",Aerospace & Defense,Aerospace and Defense,-,El Segundo,CA,33.9191799,-118.4164652 990,Barnes & Noble Education,,"$1,874 ",-,$5.40 ,-,"$1,300 ",$323 ,"13,375",Michael P. Huseby,Chairman & Chief Executive Officer,Retailing,Specialty Retailers: Other,-,Bernards,NJ,40.7066174,-74.5493284 991,Superior Energy Services,,"$1,874 ",29.20%,($205.90),-,"$3,110 ","$1,300 ","6,400",David D. Dunlap,"President, Chief Executive Officer & Director",Energy,"Oil and Gas Equipment, Services",-,Houston,TX,29.7604267,-95.3698028 992,VeriFone Systems,941,"$1,871 ",-6.10%,($173.80),-,"$2,322 ","$1,698 ","5,600",Paul S. Galant,Chairman & Chief Executive Officer,Technology,Financial Data Services,-,San Jose,CA,37.3382082,-121.8863286 993,Childrens Place,,"$1,870 ",4.80%,$84.70 ,-17.20%,$940 ,"$2,330 ","9,800",Jane T. Elfers,"President, Chief Executive Officer & Director",Retailing,Specialty Retailers: Apparel,-,Secaucus,NJ,40.7895453,-74.0565298 994,Tribune Media,896,"$1,867 ",-14.10%,$194.10 ,1262.60%,"$8,169 ","$3,544 ","6,000",Peter M. Kern,Interim Chief Executive Officer & Director,Media,Entertainment,-,Chicago,IL,41.8781136,-87.6297982 995,Healthcare Services Group,,"$1,866 ",19.40%,$88.20 ,14.00%,$676 ,"$3,204 ","55,000",Theodore Wahl,"President, Chief Executive Officer & Director",Health Care,Health Care: Pharmacy and Other Services,-,Bensalem,PA,40.0994425,-74.9325683 996,SiteOne Landscape Supply,,"$1,862 ",13.00%,$54.60 ,78.40%,$911 ,"$3,084 ","3,664",Doug Black,Chairman & Chief Executive Officer,Wholesalers,Wholesalers: Diversified,-,Roswell,GA,34.0232431,-84.3615555 997,Charles River Laboratories Intl,,"$1,858 ",10.50%,$123.40 ,-20.30%,"$2,930 ","$5,118 ","11,800",James C. Foster,Chairman & Chief Executive Officer,Health Care,Health Care: Pharmacy and Other Services,-,Wilmington,MA,42.5481714,-71.1724467 998,CoreLogic,952,"$1,851 ",-5.20%,$152.20 ,42.80%,"$4,077 ","$3,694 ","5,900",Frank D. Martell,"President, Chief Executive Officer & Director",Business Services,Financial Data Services,-,Irvine,CA,33.6845673,-117.8265049 999,Ensign Group,,"$1,849 ",11.80%,$40.50 ,-19.00%,"$1,102 ","$1,354 ","21,301",Christopher R. Christensen,"President, Chief Executive Officer & Director",Health Care,Health Care: Medical Facilities,-,Mission Viejo,CA,33.5968913,-117.6581562 1000,HCP,798,"$1,848 ",-27.20%,$414.20 ,-34.00%,"$14,089 ","$10,910 ",190,Thomas M. Herzog,"President, Chief Executive Officer & Director",Financials,Real estate,-,Irvine,CA,33.6845673,-117.8265049 ================================================ FILE: data/fortune_500_companies_2017.csv ================================================ highlights/0/description,highlights/0/title,highlights/0/value,highlights/1/description,highlights/1/title,highlights/1/value,highlights/2/description,highlights/2/title,highlights/2/value,highlights/3/description,highlights/3/title,highlights/3/value,highlights/4/description,highlights/4/title,highlights/4/value,highlights/5/description,highlights/5/value,highlights/6/value,lists/0/name,lists/0/rank,lists/1/name,lists/1/rank,lists/2/name,lists/2/rank,meta/ceo,meta/industry,meta/previousRank,meta/rank,tables/0/data/0/name,tables/0/data/0/value,tables/0/data/1/name,tables/0/data/1/value,tables/0/data/2/name,tables/0/data/2/value,tables/0/data/3/name,tables/0/data/3/value,tables/0/data/4/name,tables/0/data/4/value,tables/0/data/5/name,tables/0/data/5/value,tables/0/data/6/name,tables/0/data/6/value,tables/0/name,tables/1/data/0/name,tables/1/data/0/value,tables/1/data/1/name,tables/1/data/1/value,tables/1/data/2/name,tables/1/data/2/value,tables/1/data/3/name,tables/1/data/3/value,tables/1/name,tables/2/data/0/name,tables/2/data/0/value,tables/2/data/1/name,tables/2/data/1/value,tables/2/data/2/name,tables/2/data/2/value,tables/2/name,title,lists/3/name,lists/3/rank Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),485873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13643,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),198825,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",2300000,1,Fortune 500,1,World’s Most Admired Companies,42,Change the World,15,C. Douglas McMillon,General Merchandisers,1,1,CEO,C. Douglas McMillon,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Bentonville, AR",Website,http://www.walmart.com,Years on Global 500 List,23,Employees,2300000,Company Information,Revenues ($M),485873,Profits ($M),13643,Assets ($M),198825,Total Stockholder Equity ($M),77798,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,6.9,Profits as % of Stockholder Equity,17.5,Profit Ratios,Walmart,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),315199,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9571.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),489838,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",926067,2,,,,,,,Kou Wei,Utilities,2,2,CEO,Kou Wei,Sector,Energy,Industry,Utilities,HQ Location,"Beijing, China",Website,http://www.sgcc.com.cn,Years on Global 500 List,17,Employees,926067,Company Information,Revenues ($M),315199,Profits ($M),9571.3,Assets ($M),489838,Total Stockholder Equity ($M),209456,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,2,Profits as % of Stockholder Equity,4.6,Profit Ratios,State Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),267518,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1257.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),310726,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-65,"Total employees (full-time equivalent, if available) at fiscal year-end.",713288,4,,,,,,,Wang Yupu,Petroleum Refining,4,3,CEO,Wang Yupu,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Beijing, China",Website,http://www.sinopec.com,Years on Global 500 List,19,Employees,713288,Company Information,Revenues ($M),267518,Profits ($M),1257.9,Assets ($M),310726,Total Stockholder Equity ($M),106523,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.2,Profit Ratios,Sinopec Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),262573,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1867.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),585619,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-73.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",1512048,3,,,,,,,Zhang Jianhua,Petroleum Refining,3,4,CEO,Zhang Jianhua,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Beijing, China",Website,http://www.cnpc.com.cn,Years on Global 500 List,17,Employees,1512048,Company Information,Revenues ($M),262573,Profits ($M),1867.5,Assets ($M),585619,Total Stockholder Equity ($M),301893,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,0.6,Profit Ratios,China National Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),254694,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16899.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),437575,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",364445,8,World’s Most Admired Companies,34,,,,,Akio Toyoda,Motor Vehicles and Parts,8,5,CEO,Akio Toyoda,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Toyota, Japan",Website,http://www.toyota-global.com,Years on Global 500 List,23,Employees,364445,Company Information,Revenues ($M),254694,Profits ($M),16899.3,Assets ($M),437575,Total Stockholder Equity ($M),157210,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.6,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.7,Profit Ratios,Toyota Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),240264,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5937.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),432116,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",626715,7,,,,,,,Matthias Muller,Motor Vehicles and Parts,7,6,CEO,Matthias Muller,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Wolfsburg, Germany",Website,http://www.volkswagen.com,Years on Global 500 List,23,Employees,626715,Company Information,Revenues ($M),240264,Profits ($M),5937.3,Assets ($M),432116,Total Stockholder Equity ($M),97753,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,6.1,Profit Ratios,Volkswagen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),240033,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4575,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),411275,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,135.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",89000,5,,,,,,,Ben van Beurden,Petroleum Refining,5,7,CEO,Ben van Beurden,Sector,Energy,Industry,Petroleum Refining,HQ Location,"The Hague, Netherlands",Website,http://www.shell.com,Years on Global 500 List,23,Employees,89000,Company Information,Revenues ($M),240033,Profits ($M),4575,Assets ($M),411275,Total Stockholder Equity ($M),186646,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,2.5,Profit Ratios,Royal Dutch Shell,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),223604,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24074,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),620854,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",367700,11,Fortune 500,2,World’s Most Admired Companies,4,,,Warren E. Buffett,Insurance: Property and Casualty (Stock),11,8,CEO,Warren E. Buffett,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Omaha, NE",Website,http://www.berkshirehathaway.com,Years on Global 500 List,21,Employees,367700,Company Information,Revenues ($M),223604,Profits ($M),24074,Assets ($M),620854,Total Stockholder Equity ($M),283001,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.8,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,8.5,Profit Ratios,Berkshire Hathaway,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),215639,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),45687,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),321686,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",116000,9,Fortune 500,3,World’s Most Admired Companies,1,,,Timothy D. Cook,"Computers, Office Equipment",9,9,CEO,Timothy D. Cook,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Cupertino, CA",Website,http://www.apple.com,Years on Global 500 List,15,Employees,116000,Company Information,Revenues ($M),215639,Profits ($M),45687,Assets ($M),321686,Total Stockholder Equity ($M),128249,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.2,Profits as % of Assets,14.2,Profits as % of Stockholder Equity,35.6,Profit Ratios,Apple,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),205004,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7840,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),330314,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-51.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",72700,6,Fortune 500,4,World’s Most Admired Companies,40,,,Darren W. Woods,Petroleum Refining,6,10,CEO,Darren W. Woods,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Irving, TX",Website,http://www.exxonmobil.com,Years on Global 500 List,23,Employees,72700,Company Information,Revenues ($M),205004,Profits ($M),7840,Assets ($M),330314,Total Stockholder Equity ($M),167325,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,4.7,Profit Ratios,Exxon Mobil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),198533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5070,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),60969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,124.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",64500,12,Fortune 500,5,World’s Most Admired Companies,100000,,,John H. Hammergren,Wholesalers: Health Care,12,11,CEO,John H. Hammergren,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"San Francisco, CA",Website,http://www.mckesson.com,Years on Global 500 List,23,Employees,64500,Company Information,Revenues ($M),198533,Profits ($M),5070,Assets ($M),60969,Total Stockholder Equity ($M),11095,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,45.7,Profit Ratios,McKesson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),186606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),115,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),263316,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",74500,10,,,,,,,Robert W. Dudley,Petroleum Refining,10,12,CEO,Robert W. Dudley,Sector,Energy,Industry,Petroleum Refining,HQ Location,"London, Britain",Website,http://www.bp.com,Years on Global 500 List,23,Employees,74500,Company Information,Revenues ($M),186606,Profits ($M),115,Assets ($M),263316,Total Stockholder Equity ($M),95286,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,BP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),184840,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7017,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),122810,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",230000,17,Fortune 500,6,World’s Most Admired Companies,100000,,,Stephen J. Hemsley,Health Care: Insurance and Managed Care,17,13,CEO,Stephen J. Hemsley,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Minnetonka, MN",Website,http://www.unitedhealthgroup.com,Years on Global 500 List,21,Employees,230000,Company Information,Revenues ($M),184840,Profits ($M),7017,Assets ($M),122810,Total Stockholder Equity ($M),38274,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,18.3,Profit Ratios,UnitedHealth Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),177526,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,15.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5317,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),94462,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",204000,18,Fortune 500,7,World’s Most Admired Companies,45,Change the World,28,Larry J. Merlo,Health Care: Pharmacy and Other Services,18,14,CEO,Larry J. Merlo,Sector,Health Care,Industry,Health Care: Pharmacy and Other Services,HQ Location,"Woonsocket, RI",Website,http://www.cvshealth.com,Years on Global 500 List,22,Employees,204000,Company Information,Revenues ($M),177526,Profits ($M),5317,Assets ($M),94462,Total Stockholder Equity ($M),36830,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,14.4,Profit Ratios,CVS Health,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),173957,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),19316.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),217104,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",325000,13,World’s Most Admired Companies,100000,,,,,Oh-Hyun Kwon,"Electronics, Electrical Equip.",13,15,CEO,Oh-Hyun Kwon,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Suwon, South Korea",Website,http://www.samsung.com,Years on Global 500 List,23,Employees,325000,Company Information,Revenues ($M),173957,Profits ($M),19316.5,Assets ($M),217104,Total Stockholder Equity ($M),154376,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.1,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,12.5,Profit Ratios,Samsung Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),173883,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1379,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),124600,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",93123,14,,,,,,,Ivan Glasenberg,"Mining, Crude-Oil Production",14,16,CEO,Ivan Glasenberg,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Baar, Switzerland",Website,http://www.glencore.com,Years on Global 500 List,7,Employees,93123,Company Information,Revenues ($M),173883,Profits ($M),1379,Assets ($M),124600,Total Stockholder Equity ($M),44243,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,3.1,Profit Ratios,Glencore,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),169483,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9428.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),256262,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",282488,16,World’s Most Admired Companies,100000,,,,,Dieter Zetsche,Motor Vehicles and Parts,16,17,CEO,Dieter Zetsche,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Stuttgart, Germany",Website,http://www.daimler.com,Years on Global 500 List,23,Employees,282488,Company Information,Revenues ($M),169483,Profits ($M),9428.4,Assets ($M),256262,Total Stockholder Equity ($M),61116,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,15.4,Profit Ratios,Daimler,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),166380,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9427,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),221690,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",225000,20,Fortune 500,8,World’s Most Admired Companies,100000,,,Mary T. Barra,Motor Vehicles and Parts,20,18,CEO,Mary T. Barra,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Detroit, MI",Website,http://www.gm.com,Years on Global 500 List,23,Employees,225000,Company Information,Revenues ($M),166380,Profits ($M),9427,Assets ($M),221690,Total Stockholder Equity ($M),43836,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,21.5,Profit Ratios,General Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),163786,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),12976,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),403821,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",268540,23,Fortune 500,9,World’s Most Admired Companies,37,The 100 Best Companies to Work For,93,Randall L. Stephenson,Telecommunications,23,19,CEO,Randall L. Stephenson,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Dallas, TX",Website,http://www.att.com,Years on Global 500 List,23,Employees,268540,Company Information,Revenues ($M),163786,Profits ($M),12976,Assets ($M),403821,Total Stockholder Equity ($M),123135,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,3.2,Profits as % of Stockholder Equity,10.5,Profit Ratios,AT&T,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),154894,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),651.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),186172,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",302562,19,,,,,,,John Elkann,Diversified Financials,19,20,CEO,John Elkann,Sector,Financials,Industry,Diversified Financials,HQ Location,"Amsterdam, Netherlands",Website,http://www.exor.com,Years on Global 500 List,7,Employees,302562,Company Information,Revenues ($M),154894,Profits ($M),651.3,Assets ($M),186172,Total Stockholder Equity ($M),11582,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,5.6,Profit Ratios,EXOR Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),151800,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4596,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),237951,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-37.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",201000,21,Fortune 500,10,World’s Most Admired Companies,100000,,,James P. Hackett,Motor Vehicles and Parts,21,21,CEO,James P. Hackett,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Dearborn, MI",Website,http://www.ford.com,Years on Global 500 List,23,Employees,201000,Company Information,Revenues ($M),151800,Profits ($M),4596,Assets ($M),237951,Total Stockholder Equity ($M),29170,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,15.8,Profit Ratios,Ford Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),147675,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),41883.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3473238,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",461749,15,,,,,,,Gu Shu,Banks: Commercial and Savings,15,22,CEO,Gu Shu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.icbc-ltd.com,Years on Global 500 List,19,Employees,461749,Company Information,Revenues ($M),147675,Profits ($M),41883.9,Assets ($M),3473238,Total Stockholder Equity ($M),283438,Key Financials (Last Fiscal Year),Profit as % of Revenues,28.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,14.8,Profit Ratios,Industrial & Commercial Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),146850,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1427.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33656,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",18500,28,Fortune 500,11,World’s Most Admired Companies,100000,,,Steven H. Collis,Wholesalers: Health Care,28,23,CEO,Steven H. Collis,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Chesterbrook, PA",Website,http://www.amerisourcebergen.com,Years on Global 500 List,18,Employees,18500,Company Information,Revenues ($M),146850,Profits ($M),1427.9,Assets ($M),33656,Total Stockholder Equity ($M),2129,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,67.1,Profit Ratios,AmerisourceBergen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),144505,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2492.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),201269,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",263915,27,,,,,,,Guan Qing,"Engineering, Construction",27,24,CEO,Guan Qing,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.cscec.com,Years on Global 500 List,6,Employees,263915,Company Information,Revenues ($M),144505,Profits ($M),2492.9,Assets ($M),201269,Total Stockholder Equity ($M),15344,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,16.2,Profit Ratios,China State Construction Engineering,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),143722,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6446,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),941556,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",97707,33,,,,,,,Thomas Buberl,"Insurance: Life, Health (stock)",33,25,CEO,Thomas Buberl,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Paris, France",Website,http://www.axa.com,Years on Global 500 List,23,Employees,97707,Company Information,Revenues ($M),143722,Profits ($M),6446,Assets ($M),941556,Total Stockholder Equity ($M),74454,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.5,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.7,Profit Ratios,AXA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135987,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2371,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),83402,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,297.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",341400,44,Fortune 500,12,World’s Most Admired Companies,2,,,Jeffrey P. Bezos,Internet Services and Retailing,44,26,CEO,Jeffrey P. Bezos,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Seattle, WA",Website,http://www.amazon.com,Years on Global 500 List,9,Employees,341400,Company Information,Revenues ($M),135987,Profits ($M),2371,Assets ($M),83402,Total Stockholder Equity ($M),19285,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,12.3,Profit Ratios,Amazon.com,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135129,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4608.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80436,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",726772,25,,,,,,,Terry Gou,"Electronics, Electrical Equip.",25,27,CEO,Terry Gou,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"New Taipei City, Taiwan",Website,http://www.foxconn.com,Years on Global 500 List,13,Employees,726772,Company Information,Revenues ($M),135129,Profits ($M),4608.8,Assets ($M),80436,Total Stockholder Equity ($M),33476,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,13.8,Profit Ratios,Hon Hai Precision Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135093,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),34840.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3016578,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4,"Total employees (full-time equivalent, if available) at fiscal year-end.",362482,22,,,,,,,Wang Hongzhang,Banks: Commercial and Savings,22,28,CEO,Wang Hongzhang,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.ccb.com,Years on Global 500 List,18,Employees,362482,Company Information,Revenues ($M),135093,Profits ($M),34840.9,Assets ($M),3016578,Total Stockholder Equity ($M),226851,Key Financials (Last Fiscal Year),Profit as % of Revenues,25.8,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,15.4,Profit Ratios,China Construction Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),129198,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5690.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),170165,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,98.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",211915,36,World’s Most Admired Companies,100000,,,,,Takahiro Hachigo,Motor Vehicles and Parts,36,29,CEO,Takahiro Hachigo,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.honda.com,Years on Global 500 List,23,Employees,211915,Company Information,Revenues ($M),129198,Profits ($M),5690.3,Assets ($M),170165,Total Stockholder Equity ($M),65482,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,8.7,Profit Ratios,Honda Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),127925,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6196,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),230978,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",102168,24,,,,,,,Patrick Pouyanne,Petroleum Refining,24,30,CEO,Patrick Pouyanne,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Courbevoie, France",Website,http://www.total.com,Years on Global 500 List,23,Employees,102168,Company Information,Revenues ($M),127925,Profits ($M),6196,Assets ($M),230978,Total Stockholder Equity ($M),98680,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6.3,Profit Ratios,Total,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),126661,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8831,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),365183,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",295000,26,Fortune 500,13,World’s Most Admired Companies,7,Change the World,3,Jeffrey R. Immelt,Industrial Machinery,26,31,CEO,Jeffrey R. Immelt,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Boston, MA",Website,http://www.ge.com,Years on Global 500 List,23,Employees,295000,Company Information,Revenues ($M),126661,Profits ($M),8831,Assets ($M),365183,Total Stockholder Equity ($M),75828,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,11.6,Profit Ratios,General Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),125980,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13127,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),244180,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-26.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",160900,30,Fortune 500,14,World’s Most Admired Companies,100000,,,Lowell C. McAdam,Telecommunications,30,32,CEO,Lowell C. McAdam,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"New York, NY",Website,http://www.verizon.com,Years on Global 500 List,23,Employees,160900,Company Information,Revenues ($M),125980,Profits ($M),13127,Assets ($M),244180,Total Stockholder Equity ($M),22524,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.4,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,58.3,Profit Ratios,Verizon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),122990,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-267.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2631385,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-107.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",248384,37,,,,,,,Masatsugu Nagato,"Insurance: Life, Health (stock)",37,33,CEO,Masatsugu Nagato,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Tokyo, Japan",Website,http://www.japanpost.jp,Years on Global 500 List,21,Employees,248384,Company Information,Revenues ($M),122990,Profits ($M),-267.4,Assets ($M),2631385,Total Stockholder Equity ($M),91532,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.3,Profit Ratios,Japan Post Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),122196,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7611.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),932091,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",140253,34,World’s Most Admired Companies,100000,,,,,Oliver Bate,Insurance: Property and Casualty (Stock),34,34,CEO,Oliver Bate,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Munich, Germany",Website,http://www.allianz.com,Years on Global 500 List,23,Employees,140253,Company Information,Revenues ($M),122196,Profits ($M),7611.5,Assets ($M),932091,Total Stockholder Equity ($M),71020,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,10.7,Profit Ratios,Allianz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),121546,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1427,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34122,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,17.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",37300,50,Fortune 500,15,World’s Most Admired Companies,100000,,,George S. Barrett,Wholesalers: Health Care,50,35,CEO,George S. Barrett,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Dublin, OH",Website,http://www.cardinalhealth.com,Years on Global 500 List,20,Employees,37300,Company Information,Revenues ($M),121546,Profits ($M),1427,Assets ($M),34122,Total Stockholder Equity ($M),6554,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,21.8,Profit Ratios,Cardinal Health,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),118719,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2350,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33163,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",172000,38,Fortune 500,16,World’s Most Admired Companies,15,,,W. Craig Jelinek,General Merchandisers,38,36,CEO,W. Craig Jelinek,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Issaquah, WA",Website,http://www.costco.com,Years on Global 500 List,23,Employees,172000,Company Information,Revenues ($M),118719,Profits ($M),2350,Assets ($M),33163,Total Stockholder Equity ($M),12079,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,7.1,Profits as % of Stockholder Equity,19.5,Profit Ratios,Costco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),117351,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,13.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4173,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72688,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",300000,47,Fortune 500,17,World’s Most Admired Companies,100000,,,Stefano Pessina,Food and Drug Stores,47,37,CEO,Stefano Pessina,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Deerfield, IL",Website,http://www.walgreensbootsalliance.com,Years on Global 500 List,23,Employees,300000,Company Information,Revenues ($M),117351,Profits ($M),4173,Assets ($M),72688,Total Stockholder Equity ($M),29880,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,14,Profit Ratios,Walgreens Boots Alliance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),117275,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),27687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2816039,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",501368,29,,,,,,,Zhao Huan,Banks: Commercial and Savings,29,38,CEO,Zhao Huan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.abchina.com,Years on Global 500 List,18,Employees,501368,Company Information,Revenues ($M),117275,Profits ($M),27687.8,Assets ($M),2816039,Total Stockholder Equity ($M),189682,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,14.6,Profit Ratios,Agricultural Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),116581,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9392,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),802490,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",318588,41,,,,,,,Ma Mingzhe,"Insurance: Life, Health (stock)",41,39,CEO,Ma Mingzhe,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Shenzhen, China",Website,http://www.pingan.com,Years on Global 500 List,8,Employees,318588,Company Information,Revenues ($M),116581,Profits ($M),9392,Assets ($M),802490,Total Stockholder Equity ($M),55177,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.1,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,17,Profit Ratios,Ping An Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),115337,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1975,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36505,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",443000,42,Fortune 500,18,World’s Most Admired Companies,100000,,,W. Rodney McMullen,Food and Drug Stores,42,40,CEO,W. Rodney McMullen,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Cincinnati, OH",Website,http://www.thekrogerco.com,Years on Global 500 List,23,Employees,443000,Company Information,Revenues ($M),115337,Profits ($M),1975,Assets ($M),36505,Total Stockholder Equity ($M),6698,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,29.5,Profit Ratios,Kroger,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),113861,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4818.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84989,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",97582,46,,,,,,,Chen Zhixin,Motor Vehicles and Parts,46,41,CEO,Chen Zhixin,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Shanghai, China",Website,http://www.saicmotor.com,Years on Global 500 List,6,Employees,97582,Company Information,Revenues ($M),113861,Profits ($M),4818.2,Assets ($M),84989,Total Stockholder Equity ($M),27617,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,17.4,Profit Ratios,SAIC Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),113708,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24773.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2611539,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",308900,35,,,,,,,Chen Siqing,Banks: Commercial and Savings,35,42,CEO,Chen Siqing,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.boc.cn,Years on Global 500 List,23,Employees,308900,Company Information,Revenues ($M),113708,Profits ($M),24773.4,Assets ($M),2611539,Total Stockholder Equity ($M),203134,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.8,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,12.2,Profit Ratios,Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),109026,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8517.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2190423,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",184839,39,,,,,,,Jean-Laurent Bonnafe,Banks: Commercial and Savings,39,43,CEO,Jean-Laurent Bonnafe,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.bnpparibas.com,Years on Global 500 List,23,Employees,184839,Company Information,Revenues ($M),109026,Profits ($M),8517.2,Assets ($M),2190423,Total Stockholder Equity ($M),106164,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8,Profit Ratios,BNP Paribas,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),108164,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6123.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165344,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,40.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",137250,53,World’s Most Admired Companies,100000,,,,,Hiroto Saikawa,Motor Vehicles and Parts,53,44,CEO,Hiroto Saikawa,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Yokohama, Japan",Website,http://www.nissan-global.com,Years on Global 500 List,23,Employees,137250,Company Information,Revenues ($M),108164,Profits ($M),6123.4,Assets ($M),165344,Total Stockholder Equity ($M),50550,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,12.1,Profit Ratios,Nissan Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107567,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-497,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),260078,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-110.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",55200,31,Fortune 500,19,,,,,John S. Watson,Petroleum Refining,31,45,CEO,John S. Watson,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Ramon, CA",Website,http://www.chevron.com,Years on Global 500 List,23,Employees,55200,Company Information,Revenues ($M),107567,Profits ($M),-497,Assets ($M),260078,Total Stockholder Equity ($M),145556,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.5,Profits as % of Assets,-0.2,Profits as % of Stockholder Equity,-0.3,Profit Ratios,Chevron,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107162,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),12313,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3287968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",7000,40,Fortune 500,20,,,,,Timothy J. Mayopoulos,Diversified Financials,40,46,CEO,Timothy J. Mayopoulos,Sector,Financials,Industry,Diversified Financials,HQ Location,"Washington, DC",Website,http://www.fanniemae.com,Years on Global 500 List,20,Employees,7000,Company Information,Revenues ($M),107162,Profits ($M),12313,Assets ($M),3287968,Total Stockholder Equity ($M),6071,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,202.8,Profit Ratios,Fannie Mae,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107117,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9614.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),246446,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",463712,45,,,,,,,Li Yue,Telecommunications,45,47,CEO,Li Yue,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.10086.cn,Years on Global 500 List,17,Employees,463712,Company Information,Revenues ($M),107117,Profits ($M),9614.3,Assets ($M),246446,Total Stockholder Equity ($M),130459,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,7.4,Profit Ratios,China Mobile Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105486,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24733,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2490972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",243355,55,Fortune 500,21,World’s Most Admired Companies,22,,,James Dimon,Banks: Commercial and Savings,55,48,CEO,James Dimon,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.jpmorganchase.com,Years on Global 500 List,23,Employees,243355,Company Information,Revenues ($M),105486,Profits ($M),24733,Assets ($M),2490972,Total Stockholder Equity ($M),254190,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.4,Profits as % of Assets,1,Profits as % of Stockholder Equity,9.7,Profit Ratios,J.P. Morgan Chase,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105235,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,442.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1697.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),577954,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",8939,,,,,,,,Nigel Wilson,"Insurance: Life, Health (stock)",0,49,CEO,Nigel Wilson,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.legalandgeneralgroup.com,Years on Global 500 List,17,Employees,8939,Company Information,Revenues ($M),105235,Profits ($M),1697.9,Assets ($M),577954,Total Stockholder Equity ($M),8579,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,19.8,Profit Ratios,Legal & General Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105128,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7384.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),190740,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",274844,60,World’s Most Admired Companies,100000,,,,,Hiroo Unoura,Telecommunications,60,50,CEO,Hiroo Unoura,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.ntt.co.jp,Years on Global 500 List,23,Employees,274844,Company Information,Revenues ($M),105128,Profits ($M),7384.4,Assets ($M),190740,Total Stockholder Equity ($M),81254,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,9.1,Profit Ratios,Nippon Telegraph & Telephone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),104818,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),162.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),483026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-96.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",143676,54,,,,,,,Yang Mingsheng,"Insurance: Life, Health (stock)",54,51,CEO,Yang Mingsheng,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Beijing, China",Website,http://www.chinalife.com.cn,Years on Global 500 List,15,Employees,143676,Company Information,Revenues ($M),104818,Profits ($M),162.4,Assets ($M),483026,Total Stockholder Equity ($M),14079,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,,Profits as % of Stockholder Equity,1.2,Profit Ratios,China Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),104130,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7589.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),198835,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",124729,51,World’s Most Admired Companies,21,,,,,Harald Kruger,Motor Vehicles and Parts,51,52,CEO,Harald Kruger,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Munich, Germany",Website,http://www.bmwgroup.com,Years on Global 500 List,23,Employees,124729,Company Information,Revenues ($M),104130,Profits ($M),7589.4,Assets ($M),198835,Total Stockholder Equity ($M),49682,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.3,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,15.3,Profit Ratios,BMW Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),100288,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3404.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51745,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",25600,52,Fortune 500,22,World’s Most Admired Companies,100000,,,Timothy C. Wentworth,Health Care: Pharmacy and Other Services,52,53,CEO,Timothy C. Wentworth,Sector,Health Care,Industry,Health Care: Pharmacy and Other Services,HQ Location,"St. Louis, MO",Website,http://www.express-scripts.com,Years on Global 500 List,15,Employees,25600,Company Information,Revenues ($M),100288,Profits ($M),3404.4,Assets ($M),51745,Total Stockholder Equity ($M),16236,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,6.6,Profits as % of Stockholder Equity,21,Profit Ratios,Express Scripts Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),98098,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),750.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),41230,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",4107,59,,,,,,,Jeremy Weir,Trading,59,54,CEO,Jeremy Weir,Sector,Wholesalers,Industry,Trading,HQ Location,Singapore,Website,http://www.trafigura.com,Years on Global 500 List,3,Employees,4107,Company Information,Revenues ($M),98098,Profits ($M),750.8,Assets ($M),41230,Total Stockholder Equity ($M),5548,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,13.5,Profit Ratios,Trafigura Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),96979,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),924.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108864,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6,"Total employees (full-time equivalent, if available) at fiscal year-end.",292215,57,,,,,,,Zhang Zongyan,"Engineering, Construction",57,55,CEO,Zhang Zongyan,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.crecg.com,Years on Global 500 List,3,Employees,292215,Company Information,Revenues ($M),96979,Profits ($M),924.1,Assets ($M),108864,Total Stockholder Equity ($M),10806,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,8.6,Profit Ratios,China Railway Engineering,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),96965,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,53.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2592.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),581221,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",23673,126,,,,,,,Michael A. Wells,"Insurance: Life, Health (stock)",126,56,CEO,Michael A. Wells,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.prudential.co.uk,Years on Global 500 List,22,Employees,23673,Company Information,Revenues ($M),96965,Profits ($M),2592.8,Assets ($M),581221,Total Stockholder Equity ($M),18117,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,14.3,Profit Ratios,Prudential,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),95217,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2301.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),549656,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",73727,49,,,,,,,Philippe R. Donnet,"Insurance: Life, Health (stock)",49,57,CEO,Philippe R. Donnet,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Trieste, Italy",Website,http://www.generali.com,Years on Global 500 List,23,Employees,73727,Company Information,Revenues ($M),95217,Profits ($M),2301.3,Assets ($M),549656,Total Stockholder Equity ($M),25886,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Assicurazioni Generali,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94877,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1192.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),109968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",336872,62,,,,,,,Meng Fengchao,"Engineering, Construction",62,58,CEO,Meng Fengchao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.crcc.cn,Years on Global 500 List,6,Employees,336872,Company Information,Revenues ($M),94877,Profits ($M),1192.4,Assets ($M),109968,Total Stockholder Equity ($M),10146,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,11.8,Profit Ratios,China Railway Construction,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94595,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7957,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42966,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",406000,69,Fortune 500,23,World’s Most Admired Companies,32,,,Craig A. Menear,Specialty Retailers,69,59,CEO,Craig A. Menear,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Atlanta, GA",Website,http://www.homedepot.com,Years on Global 500 List,23,Employees,406000,Company Information,Revenues ($M),94595,Profits ($M),7957,Assets ($M),42966,Total Stockholder Equity ($M),4333,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.4,Profits as % of Assets,18.5,Profits as % of Stockholder Equity,183.6,Profit Ratios,Home Depot,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94571,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4895,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89997,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",150540,61,Fortune 500,24,World’s Most Admired Companies,30,,,Dennis A. Muilenburg,Aerospace and Defense,61,60,CEO,Dennis A. Muilenburg,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Chicago, IL",Website,http://www.boeing.com,Years on Global 500 List,23,Employees,150540,Company Information,Revenues ($M),94571,Profits ($M),4895,Assets ($M),89997,Total Stockholder Equity ($M),817,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,599.1,Profit Ratios,Boeing,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94176,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),21938,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1930115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",269100,67,Fortune 500,25,,,,,Timothy J. Sloan,Banks: Commercial and Savings,67,61,CEO,Timothy J. Sloan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"San Francisco, CA",Website,http://www.wellsfargo.com,Years on Global 500 List,20,Employees,269100,Company Information,Revenues ($M),94176,Profits ($M),21938,Assets ($M),1930115,Total Stockholder Equity ($M),199581,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.3,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,11,Profit Ratios,Wells Fargo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),93662,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),17906,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2187702,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",208024,64,Fortune 500,26,World’s Most Admired Companies,100000,Change the World,16,Brian T. Moynihan,Banks: Commercial and Savings,64,62,CEO,Brian T. Moynihan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Charlotte, NC",Website,http://www.bankofamerica.com,Years on Global 500 List,23,Employees,208024,Company Information,Revenues ($M),93662,Profits ($M),17906,Assets ($M),2187702,Total Stockholder Equity ($M),266840,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.7,Profit Ratios,Bank of America Corp.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),91382,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),14222.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),277262,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",467400,56,,,,,,,Alexey B. Miller,Energy,56,63,CEO,Alexey B. Miller,Sector,Energy,Industry,Energy,HQ Location,"Moscow, Russia",Website,http://www.gazprom.com,Years on Global 500 List,21,Employees,467400,Company Information,Revenues ($M),91382,Profits ($M),14222.6,Assets ($M),277262,Total Stockholder Equity ($M),181813,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.6,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,7.8,Profit Ratios,Gazprom,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),90814,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8659.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),129824,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",328000,66,World’s Most Admired Companies,36,Change the World,5,,,Ulf Mark Schneider,Food Consumer Products,66,64,CEO,Ulf Mark Schneider,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Vevey, Switzerland",Website,http://www.nestle.com,Years on Global 500 List,23,Employees,328000,Company Information,Revenues ($M),90814,Profits ($M),8659.2,Assets ($M),129824,Total Stockholder Equity ($M),63573,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,6.7,Profits as % of Stockholder Equity,13.6,Profit Ratios,Nestle,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),90272,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),19478,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),167497,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",72053,94,Fortune 500,27,World’s Most Admired Companies,6,The 100 Best Companies to Work For,1,Larry Page,Internet Services and Retailing,94,65,CEO,Larry Page,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Mountain View, CA",Website,http://www.abc.xyz,Years on Global 500 List,9,Employees,72053,Company Information,Revenues ($M),90272,Profits ($M),19478,Assets ($M),167497,Total Stockholder Equity ($M),139036,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.6,Profits as % of Assets,11.6,Profits as % of Stockholder Equity,14,Profit Ratios,Alphabet,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),88419,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6050.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141271,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-27.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",351000,71,World’s Most Admired Companies,100000,Change the World,21,,,Josef Kaeser,Industrial Machinery,71,66,CEO,Josef Kaeser,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Munich, Germany",Website,http://www.siemens.com,Years on Global 500 List,23,Employees,351000,Company Information,Revenues ($M),88419,Profits ($M),6050.5,Assets ($M),141271,Total Stockholder Equity ($M),38444,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,15.7,Profit Ratios,Siemens,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),87112,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),825,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51513,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-24.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",384151,73,,,,,,,Georges Plassat,Food and Drug Stores,73,67,CEO,Georges Plassat,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Boulogne-Billancourt, France",Website,http://www.carrefour.com,Years on Global 500 List,23,Employees,384151,Company Information,Revenues ($M),87112,Profits ($M),825,Assets ($M),51513,Total Stockholder Equity ($M),10996,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,7.5,Profit Ratios,Carrefour,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),86194,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1415,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59532,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",189795,81,,,,,,,Li Shaozhu,Motor Vehicles and Parts,81,68,CEO,Li Shaozhu,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Wuhan, China",Website,http://www.dfmc.com.cn,Years on Global 500 List,8,Employees,189795,Company Information,Revenues ($M),86194,Profits ($M),1415,Assets ($M),59532,Total Stockholder Equity ($M),11464,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,12.3,Profit Ratios,Dongfeng Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),85320,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16798,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),193694,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",114000,63,Fortune 500,28,World’s Most Admired Companies,9,,,Satya Nadella,Computer Software,63,69,CEO,Satya Nadella,Sector,Technology,Industry,Computer Software,HQ Location,"Redmond, WA",Website,http://www.microsoft.com,Years on Global 500 List,20,Employees,114000,Company Information,Revenues ($M),85320,Profits ($M),16798,Assets ($M),193694,Total Stockholder Equity ($M),71997,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.7,Profits as % of Assets,8.7,Profits as % of Stockholder Equity,23.3,Profit Ratios,Microsoft,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),84863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2469.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65083,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",53000,85,Fortune 500,29,,,,,Joseph R. Swedish,Health Care: Insurance and Managed Care,85,70,CEO,Joseph R. Swedish,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Indianapolis, IN",Website,http://www.antheminc.com,Years on Global 500 List,16,Employees,53000,Company Information,Revenues ($M),84863,Profits ($M),2469.8,Assets ($M),65083,Total Stockholder Equity ($M),25100,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,9.8,Profit Ratios,Anthem,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),84558,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2134.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86742,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,48.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",303887,79,World’s Most Admired Companies,100000,,,,,Toshiaki Higashihara,"Electronics, Electrical Equip.",79,71,CEO,Toshiaki Higashihara,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.hitachi.com,Years on Global 500 List,23,Employees,303887,Company Information,Revenues ($M),84558,Profits ($M),2134.3,Assets ($M),86742,Total Stockholder Equity ($M),26632,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,8,Profit Ratios,Hitachi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82892,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13163.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),221113,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,233.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",68402,92,,,,,,,Masayoshi Son,Telecommunications,92,72,CEO,Masayoshi Son,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.softbank.jp,Years on Global 500 List,10,Employees,68402,Company Information,Revenues ($M),82892,Profits ($M),13163.4,Assets ($M),221113,Total Stockholder Equity ($M),32191,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.9,Profits as % of Assets,6,Profits as % of Stockholder Equity,40.9,Profit Ratios,SoftBank Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82801,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6860.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1412281,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",185606,75,,,,,,,Jose Antonio Alvarez,Banks: Commercial and Savings,75,73,CEO,Jose Antonio Alvarez,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Madrid, Spain",Website,http://www.santander.com,Years on Global 500 List,23,Employees,185606,Company Information,Revenues ($M),82801,Profits ($M),6860.7,Assets ($M),1412281,Total Stockholder Equity ($M),95906,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.3,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.2,Profit Ratios,Banco Santander,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82386,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),14912,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1792077,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",219000,70,Fortune 500,30,World’s Most Admired Companies,100000,,,Michael L. Corbat,Banks: Commercial and Savings,70,74,CEO,Michael L. Corbat,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.citigroup.com,Years on Global 500 List,23,Employees,219000,Company Information,Revenues ($M),82386,Profits ($M),14912,Assets ($M),1792077,Total Stockholder Equity ($M),225120,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.6,Profit Ratios,Citigroup,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),81405,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-4838,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),246983,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",68829,58,,,,,,,Pedro Pullen Parente,Petroleum Refining,58,75,CEO,Pedro Pullen Parente,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Rio de Janeiro, Brazil",Website,http://www.petrobras.com.br,Years on Global 500 List,23,Employees,68829,Company Information,Revenues ($M),81405,Profits ($M),-4838,Assets ($M),246983,Total Stockholder Equity ($M),76779,Key Financials (Last Fiscal Year),Profit as % of Revenues,-5.9,Profits as % of Assets,-2,Profits as % of Stockholder Equity,-6.3,Profit Ratios,Petrobras,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80869,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2155.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86348,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",389281,87,World’s Most Admired Companies,100000,,,,,Volkmar Denner,Motor Vehicles and Parts,87,76,CEO,Volkmar Denner,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Stuttgart, Germany",Website,http://www.bosch.com,Years on Global 500 List,23,Employees,389281,Company Information,Revenues ($M),80869,Profits ($M),2155.3,Assets ($M),86348,Total Stockholder Equity ($M),36316,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,5.9,Profit Ratios,Robert Bosch,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80832,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2958.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),156597,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18,"Total employees (full-time equivalent, if available) at fiscal year-end.",221000,90,,,,,,,Timotheus Hottges,Telecommunications,90,77,CEO,Timotheus Hottges,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Bonn, Germany",Website,http://www.telekom.com,Years on Global 500 List,23,Employees,221000,Company Information,Revenues ($M),80832,Profits ($M),2958.1,Assets ($M),156597,Total Stockholder Equity ($M),30906,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,9.6,Profit Ratios,Deutsche Telekom,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80701,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),148092,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",129315,84,,,,,,,Mong-Koo Chung,Motor Vehicles and Parts,84,78,CEO,Mong-Koo Chung,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://worldwide.hyundai.com,Years on Global 500 List,22,Employees,129315,Company Information,Revenues ($M),80701,Profits ($M),4659,Assets ($M),148092,Total Stockholder Equity ($M),55639,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,8.4,Profit Ratios,Hyundai Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8695,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),180500,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",159000,96,Fortune 500,31,World’s Most Admired Companies,100000,,,Brian L. Roberts,Telecommunications,96,79,CEO,Brian L. Roberts,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Philadelphia, PA",Website,http://www.comcastcorporation.com,Years on Global 500 List,15,Employees,159000,Company Information,Revenues ($M),80403,Profits ($M),8695,Assets ($M),180500,Total Stockholder Equity ($M),53943,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.8,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,16.1,Profit Ratios,Comcast,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80258,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3914.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1607501,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",70830,77,,,,,,,Philippe Brassac,Banks: Commercial and Savings,77,80,CEO,Philippe Brassac,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.credit-agricole.com,Years on Global 500 List,23,Employees,70830,Company Information,Revenues ($M),80258,Profits ($M),3914.7,Assets ($M),1607501,Total Stockholder Equity ($M),61460,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,6.4,Profit Ratios,Credit Agricole,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),79919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),11872,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),117470,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10,"Total employees (full-time equivalent, if available) at fiscal year-end.",414400,82,Fortune 500,32,World’s Most Admired Companies,24,Change the World,47,Virginia M. Rometty,Information Technology Services,82,81,CEO,Virginia M. Rometty,Sector,Technology,Industry,Information Technology Services,HQ Location,"Armonk, NY",Website,http://www.ibm.com,Years on Global 500 List,23,Employees,414400,Company Information,Revenues ($M),79919,Profits ($M),11872,Assets ($M),117470,Total Stockholder Equity ($M),18246,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.9,Profits as % of Assets,10.1,Profits as % of Stockholder Equity,65.1,Profit Ratios,IBM,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78740,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3152.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),297026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,139.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",154808,80,,,,,,,Jean-Bernard Levy,Utilities,80,82,CEO,Jean-Bernard Levy,Sector,Energy,Industry,Utilities,HQ Location,"Paris, France",Website,http://www.edf.fr,Years on Global 500 List,23,Employees,154808,Company Information,Revenues ($M),78740,Profits ($M),3152.8,Assets ($M),297026,Total Stockholder Equity ($M),36319,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,8.7,Profit Ratios,Electricite de France,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78511,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,24.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5579.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),63837,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",180000,129,,,,,,,Ren Zhengfei,Network and Other Communications Equipment,129,83,CEO,Ren Zhengfei,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Shenzhen, China",Website,http://www.huawei.com,Years on Global 500 List,8,Employees,180000,Company Information,Revenues ($M),78511,Profits ($M),5579.4,Assets ($M),63837,Total Stockholder Equity ($M),20159,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.1,Profits as % of Assets,8.7,Profits as % of Stockholder Equity,27.7,Profit Ratios,Huawei Investment & Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78064,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2842,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),164096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",62080,78,,,,,,,Francesco Starace,Utilities,78,84,CEO,Francesco Starace,Sector,Energy,Industry,Utilities,HQ Location,"Rome, Italy",Website,http://www.enel.com,Years on Global 500 List,23,Employees,62080,Company Information,Revenues ($M),78064,Profits ($M),2842,Assets ($M),164096,Total Stockholder Equity ($M),36704,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,7.7,Profit Ratios,Enel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),76132,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),350.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),256030,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-94.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",68234,93,Fortune 500,33,World’s Most Admired Companies,100000,,,Michael L. Tipsord,Insurance: Property and Casualty (Mutual),93,85,CEO,Michael L. Tipsord,Sector,Financials,Industry,Insurance: Property and Casualty (Mutual),HQ Location,"Bloomington, IL",Website,http://www.statefarm.com,Years on Global 500 List,23,Employees,68234,Company Information,Revenues ($M),76132,Profits ($M),350.3,Assets ($M),256030,Total Stockholder Equity ($M),87592,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.4,Profit Ratios,State Farm Insurance Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75776,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2580.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158291,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",420572,91,,,,,,,Luo Xi,Pharmaceuticals,91,86,CEO,Luo Xi,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Hong Kong, China",Website,http://www.crc.com.hk,Years on Global 500 List,8,Employees,420572,Company Information,Revenues ($M),75776,Profits ($M),2580.2,Assets ($M),158291,Total Stockholder Equity ($M),23605,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,10.9,Profit Ratios,China Resources National,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75772,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),103.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),78223,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,108.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",274760,111,,,,,,,Motoya Okada,General Merchandisers,111,87,CEO,Motoya Okada,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Chiba, Japan",Website,http://www.aeon.info,Years on Global 500 List,23,Employees,274760,Company Information,Revenues ($M),75772,Profits ($M),103.9,Assets ($M),78223,Total Stockholder Equity ($M),9567,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.1,Profit Ratios,AEON,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75329,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2479,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2374986,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-81.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",241000,68,World’s Most Admired Companies,100000,,,,,Stuart T. Gulliver,Banks: Commercial and Savings,68,88,CEO,Stuart T. Gulliver,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.hsbc.com,Years on Global 500 List,23,Employees,241000,Company Information,Revenues ($M),75329,Profits ($M),2479,Assets ($M),2374986,Total Stockholder Equity ($M),175386,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.4,Profit Ratios,HSBC Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74629,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3168.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",362128,99,,,,,,,Yan Hao,"Engineering, Construction",99,89,CEO,Yan Hao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Nanjing, China",Website,http://www.cpcg.com.cn,Years on Global 500 List,4,Employees,362128,Company Information,Revenues ($M),74629,Profits ($M),3168.1,Assets ($M),48196,Total Stockholder Equity ($M),19835,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,6.6,Profits as % of Stockholder Equity,16,Profit Ratios,Pacific Construction Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74628,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),948.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),544063,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-32.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",29530,279,,,,,,,Mark Wilson,"Insurance: Life, Health (stock)",279,90,CEO,Mark Wilson,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.aviva.com,Years on Global 500 List,23,Employees,29530,Company Information,Revenues ($M),74628,Profits ($M),948.8,Assets ($M),544063,Total Stockholder Equity ($M),21004,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,4.5,Profit Ratios,Aviva,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74407,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-3557.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51541,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",12890,,,,,,,,Klaus Schafer,Energy,0,91,CEO,Klaus Schafer,Sector,Energy,Industry,Energy,HQ Location,"Dusseldorf, Germany",Website,http://www.uniper.energy,Years on Global 500 List,1,Employees,12890,Company Information,Revenues ($M),74407,Profits ($M),-3557.5,Assets ($M),51541,Total Stockholder Equity ($M),12889,Key Financials (Last Fiscal Year),Profit as % of Revenues,-4.8,Profits as % of Assets,-6.9,Profits as % of Stockholder Equity,-27.6,Profit Ratios,Uniper,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74393,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-52.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57052,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-125.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",342770,72,,,,,,,David J. Lewis,Food and Drug Stores,72,92,CEO,David J. Lewis,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Welwyn Garden City, Britain",Website,http://www.tescoplc.com,Years on Global 500 List,23,Employees,342770,Company Information,Revenues ($M),74393,Profits ($M),-52.7,Assets ($M),57052,Total Stockholder Equity ($M),8011,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.1,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-0.7,Profit Ratios,Tesco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),73692,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-458.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),167158,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",153090,89,,,,,,,Isabelle Kocher,Energy,89,93,CEO,Isabelle Kocher,Sector,Energy,Industry,Energy,HQ Location,"Courbevoie, France",Website,http://www.engie.com,Years on Global 500 List,22,Employees,153090,Company Information,Revenues ($M),73692,Profits ($M),-458.9,Assets ($M),167158,Total Stockholder Equity ($M),41740,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-1.1,Profit Ratios,Engie,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),73628,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1100.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),117204,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-63.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",133782,100,World’s Most Admired Companies,100000,,,,,Thomas Enders,Aerospace and Defense,100,94,CEO,Thomas Enders,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Leiden, Netherlands",Website,http://www.airbusgroup.com,Years on Global 500 List,23,Employees,133782,Company Information,Revenues ($M),73628,Profits ($M),1100.3,Assets ($M),117204,Total Stockholder Equity ($M),3857,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,28.5,Profit Ratios,Airbus Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),72579,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,107.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),659.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),85332,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-86,"Total employees (full-time equivalent, if available) at fiscal year-end.",84000,294,,,,,,,Tae Won Chey,Petroleum Refining,294,95,CEO,Tae Won Chey,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Seoul, South Korea",Website,http://www.sk.co.kr,Years on Global 500 List,2,Employees,84000,Company Information,Revenues ($M),72579,Profits ($M),659.7,Assets ($M),85332,Total Stockholder Equity ($M),10858,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.1,Profit Ratios,SK Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),72396,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1555,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51653,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-63.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",14800,74,Fortune 500,34,,,,,Greg C. Garland,Petroleum Refining,74,96,CEO,Greg C. Garland,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Houston, TX",Website,http://www.phillips66.com,Years on Global 500 List,5,Employees,14800,Company Information,Revenues ($M),72396,Profits ($M),1555,Assets ($M),51653,Total Stockholder Equity ($M),22390,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,3,Profits as % of Stockholder Equity,6.9,Profit Ratios,Phillips 66,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71890,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16540,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141208,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",126400,103,Fortune 500,35,World’s Most Admired Companies,13,Change the World,31,Alex Gorsky,Pharmaceuticals,103,97,CEO,Alex Gorsky,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"New Brunswick, NJ",Website,http://www.jnj.com,Years on Global 500 List,17,Employees,126400,Company Information,Revenues ($M),71890,Profits ($M),16540,Assets ($M),141208,Total Stockholder Equity ($M),70418,Key Financials (Last Fiscal Year),Profit as % of Revenues,23,Profits as % of Assets,11.7,Profits as % of Stockholder Equity,23.5,Profit Ratios,Johnson & Johnson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71726,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10508,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),127136,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,49.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",105000,86,Fortune 500,36,World’s Most Admired Companies,19,,,David S. Taylor,Household and Personal Products,86,98,CEO,David S. Taylor,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"Cincinnati, OH",Website,http://www.pg.com,Years on Global 500 List,23,Employees,105000,Company Information,Revenues ($M),71726,Profits ($M),10508,Assets ($M),127136,Total Stockholder Equity ($M),57341,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.7,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,18.3,Profit Ratios,Procter & Gamble,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71498,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-5591,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25219,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",574349,107,,,,,,,Megan J. Brennan,"Mail, Package, and Freight Delivery",107,99,CEO,Megan J. Brennan,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Washington, DC",Website,http://www.usps.com,Years on Global 500 List,23,Employees,574349,Company Information,Revenues ($M),71498,Profits ($M),-5591,Assets ($M),25219,Total Stockholder Equity ($M),-55982,Key Financials (Last Fiscal Year),Profit as % of Revenues,-7.8,Profits as % of Assets,-22.2,Profits as % of Stockholder Equity,,Profit Ratios,U.S. Postal Service,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71242,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2329.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99187,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",302421,95,,,,,,,Li Qingkui,Utilities,95,100,CEO,Li Qingkui,Sector,Energy,Industry,Utilities,HQ Location,"Guangzhou, China",Website,http://www.csg.cn,Years on Global 500 List,13,Employees,302421,Company Information,Revenues ($M),71242,Profits ($M),2329.8,Assets ($M),99187,Total Stockholder Equity ($M),38384,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,6.1,Profit Ratios,China Southern Power Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71151,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),580.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51857,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-61,"Total employees (full-time equivalent, if available) at fiscal year-end.",232817,102,,,,,,,Xu Liuping,Aerospace and Defense,102,101,CEO,Xu Liuping,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.chinasouth.com.cn,Years on Global 500 List,8,Employees,232817,Company Information,Revenues ($M),71151,Profits ($M),580.3,Assets ($M),51857,Total Stockholder Equity ($M),7508,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,7.7,Profit Ratios,China South Industries Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70897,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3090.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),82179,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-35.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",105500,76,,,,,,,Vagit Y. Alekperov,Petroleum Refining,76,102,CEO,Vagit Y. Alekperov,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Moscow, Russia",Website,http://www.lukoil.com,Years on Global 500 List,18,Employees,105500,Company Information,Revenues ($M),70897,Profits ($M),3090.6,Assets ($M),82179,Total Stockholder Equity ($M),52783,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,5.9,Profit Ratios,Lukoil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70751,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1431.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),146763,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",152666,110,,,,,,,Liu Qitao,"Engineering, Construction",110,103,CEO,Liu Qitao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.ccccltd.cn,Years on Global 500 List,10,Employees,152666,Company Information,Revenues ($M),70751,Profits ($M),1431.3,Assets ($M),146763,Total Stockholder Equity ($M),14824,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,1,Profits as % of Stockholder Equity,9.7,Profit Ratios,China Communications Construction,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70517,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,25.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4410.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1302721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",102827,155,,,,,,,Francois Perol,Banks: Commercial and Savings,155,104,CEO,Francois Perol,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.groupebpce.fr,Years on Global 500 List,8,Employees,102827,Company Information,Revenues ($M),70517,Profits ($M),4410.1,Assets ($M),1302721,Total Stockholder Equity ($M),64820,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,6.8,Profit Ratios,Groupe BPCE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70170,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),676.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158519,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",128400,113,World’s Most Admired Companies,100000,,,,,Kazuo Hirai,"Electronics, Electrical Equip.",113,105,CEO,Kazuo Hirai,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.sony.net,Years on Global 500 List,23,Employees,128400,Company Information,Revenues ($M),70170,Profits ($M),676.4,Assets ($M),158519,Total Stockholder Equity ($M),22415,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,3,Profit Ratios,Sony,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70166,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2289,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46173,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",9996,83,Fortune 500,37,,,,,Joseph W. Gorder,Petroleum Refining,83,106,CEO,Joseph W. Gorder,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Antonio, TX",Website,http://www.valero.com,Years on Global 500 List,17,Employees,9996,Company Information,Revenues ($M),70166,Profits ($M),2289,Assets ($M),46173,Total Stockholder Equity ($M),20024,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,5,Profits as % of Stockholder Equity,11.4,Profit Ratios,Valero Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),69495,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2737,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37431,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",323000,97,Fortune 500,38,World’s Most Admired Companies,44,,,Brian C. Cornell,General Merchandisers,97,107,CEO,Brian C. Cornell,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Minneapolis, MN",Website,http://www.target.com,Years on Global 500 List,23,Employees,323000,Company Information,Revenues ($M),69495,Profits ($M),2737,Assets ($M),37431,Total Stockholder Equity ($M),10953,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.9,Profits as % of Assets,7.3,Profits as % of Stockholder Equity,25,Profit Ratios,Target,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),69335,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4284,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1457753,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",151341,43,,,,,,,Frederic Oudea,Banks: Commercial and Savings,43,108,CEO,Frederic Oudea,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.societegenerale.com,Years on Global 500 List,21,Employees,151341,Company Information,Revenues ($M),69335,Profits ($M),4284,Assets ($M),1457753,Total Stockholder Equity ($M),65338,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,6.6,Profit Ratios,Societe Generale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),68700,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2853.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),282435,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",43428,106,Change the World,13,,,,,Joachim Wenning,Insurance: Property and Casualty (Stock),106,109,CEO,Joachim Wenning,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Munich, Germany",Website,http://www.munichre.com,Years on Global 500 List,23,Employees,43428,Company Information,Revenues ($M),68700,Profits ($M),2853.1,Assets ($M),282435,Total Stockholder Equity ($M),33238,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,1,Profits as % of Stockholder Equity,8.6,Profit Ratios,Munich Re Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67775,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1378.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),53702,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",257533,128,World’s Most Admired Companies,100000,Change the World,39,,,Kazuhiro Tsuga,"Electronics, Electrical Equip.",128,110,CEO,Kazuhiro Tsuga,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Osaka, Japan",Website,http://www.panasonic.com/global,Years on Global 500 List,23,Employees,257533,Company Information,Revenues ($M),67775,Profits ($M),1378.4,Assets ($M),53702,Total Stockholder Equity ($M),14109,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,9.8,Profit Ratios,Panasonic,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67388,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2786.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),650429,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",85171,114,,,,,,,Yoshinobu Tsutsui,"Insurance: Life, Health (Mutual)",114,111,CEO,Yoshinobu Tsutsui,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Osaka, Japan",Website,http://www.nissay.co.jp,Years on Global 500 List,23,Employees,85171,Company Information,Revenues ($M),67388,Profits ($M),2786.9,Assets ($M),650429,Total Stockholder Equity ($M),17261,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,16.1,Profit Ratios,Nippon Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67245,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3211,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),382679,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,74.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",52473,141,,,,,,,Mario Greco,Insurance: Property and Casualty (Stock),141,112,CEO,Mario Greco,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.zurich.com,Years on Global 500 List,23,Employees,52473,Company Information,Revenues ($M),67245,Profits ($M),3211,Assets ($M),382679,Total Stockholder Equity ($M),30660,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,10.5,Profit Ratios,Zurich Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),66876,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6666.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),415972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",94779,159,,,,,,,Candido Botelho Bracher,Banks: Commercial and Savings,159,113,CEO,Candido Botelho Bracher,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sao Paulo, Brazil",Website,http://www.itau.com.br,Years on Global 500 List,4,Employees,94779,Company Information,Revenues ($M),66876,Profits ($M),6666.4,Assets ($M),415972,Total Stockholder Equity ($M),37680,Key Financials (Last Fiscal Year),Profit as % of Revenues,10,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,17.7,Profit Ratios,Itau Unibanco Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),66732,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2144.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),134132,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-31,"Total employees (full-time equivalent, if available) at fiscal year-end.",188570,119,,,,,,,Wu Yan,Insurance: Property and Casualty (Stock),119,114,CEO,Wu Yan,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Beijing, China",Website,http://www.picc.com.cn,Years on Global 500 List,8,Employees,188570,Company Information,Revenues ($M),66732,Profits ($M),2144.3,Assets ($M),134132,Total Stockholder Equity ($M),18145,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,11.8,Profit Ratios,People’s Insurance Co. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65892,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1752.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),166595,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62,"Total employees (full-time equivalent, if available) at fiscal year-end.",100821,109,,,,,,,Yang Hua,"Mining, Crude-Oil Production",109,115,CEO,Yang Hua,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Beijing, China",Website,http://www.cnooc.com.cn,Years on Global 500 List,11,Employees,100821,Company Information,Revenues ($M),65892,Profits ($M),1752.4,Assets ($M),166595,Total Stockholder Equity ($M),70827,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,2.5,Profit Ratios,China National Offshore Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65792,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1433.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61904,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,176.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",39952,138,,,,,,,Fumiya Kokubu,Trading,138,116,CEO,Fumiya Kokubu,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.marubeni.com,Years on Global 500 List,23,Employees,39952,Company Information,Revenues ($M),65792,Profits ($M),1433.7,Assets ($M),61904,Total Stockholder Equity ($M),15113,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,9.5,Profit Ratios,Marubeni,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65787,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2918.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40387,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,70.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",459262,108,World’s Most Admired Companies,100000,,,,,Frank Appel,"Mail, Package, and Freight Delivery",108,117,CEO,Frank Appel,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Bonn, Germany",Website,http://www.dpdhl.com,Years on Global 500 List,23,Employees,459262,Company Information,Revenues ($M),65787,Profits ($M),2918.3,Assets ($M),40387,Total Stockholder Equity ($M),11693,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,7.2,Profits as % of Stockholder Equity,25,Profit Ratios,Deutsche Post DHL Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65665,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7815,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2023376,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",5982,124,Fortune 500,39,,,,,Donald H. Layton,Diversified Financials,124,118,CEO,Donald H. Layton,Sector,Financials,Industry,Diversified Financials,HQ Location,"McLean, VA",Website,http://www.freddiemac.com,Years on Global 500 List,21,Employees,5982,Company Information,Revenues ($M),65665,Profits ($M),7815,Assets ($M),2023376,Total Stockholder Equity ($M),5075,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.9,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,154,Profit Ratios,Freddie Mac,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65605,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4980.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1221649,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",941211,105,,,,,,,Li Guohua,"Mail, Package, and Freight Delivery",105,119,CEO,Li Guohua,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Beijing, China",Website,http://www.chinapost.com.cn,Years on Global 500 List,7,Employees,941211,Company Information,Revenues ($M),65605,Profits ($M),4980.3,Assets ($M),1221649,Total Stockholder Equity ($M),43114,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,11.6,Profit Ratios,China Post Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65547,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-446.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),109334,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",212406,323,World’s Most Admired Companies,100000,,,,,He Wenbo,Metals,323,120,CEO,He Wenbo,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.minmetals.com,Years on Global 500 List,11,Employees,212406,Company Information,Revenues ($M),65547,Profits ($M),-446.7,Assets ($M),109334,Total Stockholder Equity ($M),4631,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.7,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-9.6,Profit Ratios,China Minmetals,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65208,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,38.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2784.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1010245,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,111.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",70433,193,,,,,,,Antonio Horta-Osorio,Banks: Commercial and Savings,193,121,CEO,Antonio Horta-Osorio,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.lloydsbankinggroup.com,Years on Global 500 List,23,Employees,70433,Company Information,Revenues ($M),65208,Profits ($M),2784.4,Assets ($M),1010245,Total Stockholder Equity ($M),59327,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.7,Profit Ratios,Lloyds Banking Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65017,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3093,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34408,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",240000,148,Fortune 500,40,World’s Most Admired Companies,100000,,,Robert A. Niblock,Specialty Retailers,148,122,CEO,Robert A. Niblock,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Mooresville, NC",Website,http://www.lowes.com,Years on Global 500 List,20,Employees,240000,Company Information,Revenues ($M),65017,Profits ($M),3093,Assets ($M),34408,Total Stockholder Equity ($M),6434,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,9,Profits as % of Stockholder Equity,48.1,Profit Ratios,Lowe’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64853,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),665,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28039,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",196540,101,,,,,,,Olaf Koch,Food and Drug Stores,101,123,CEO,Olaf Koch,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Dusseldorf, Germany",Website,http://www.metrogroup.de,Years on Global 500 List,22,Employees,196540,Company Information,Revenues ($M),64853,Profits ($M),665,Assets ($M),28039,Total Stockholder Equity ($M),5978,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,11.1,Profit Ratios,Metro,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64806,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1672,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),118206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",138000,,Fortune 500,41,,,,,Michael S. Dell,"Computers, Office Equipment",0,124,CEO,Michael S. Dell,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Round Rock, TX",Website,http://www.delltechnologies.com,Years on Global 500 List,17,Employees,138000,Company Information,Revenues ($M),64806,Profits ($M),-1672,Assets ($M),118206,Total Stockholder Equity ($M),13243,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.6,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-12.6,Profit Ratios,Dell Technologies,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64784,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2411.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54772,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",122323,130,,,,,,,Xu Ping,Motor Vehicles and Parts,130,125,CEO,Xu Ping,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Changchun, China",Website,http://www.faw.com.,Years on Global 500 List,13,Employees,122323,Company Information,Revenues ($M),64784,Profits ($M),2411.3,Assets ($M),54772,Total Stockholder Equity ($M),24489,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,China FAW Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63641,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4485.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80675,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",109543,88,World’s Most Admired Companies,100000,,,,,Kurt W. Bock,Chemicals,88,126,CEO,Kurt W. Bock,Sector,Chemicals,Industry,Chemicals,HQ Location,"Ludwigshafen, Germany",Website,http://www.basf.com,Years on Global 500 List,23,Employees,109543,Company Information,Revenues ($M),63641,Profits ($M),4485.3,Assets ($M),80675,Total Stockholder Equity ($M),33545,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,BASF,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63629,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1477.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59767,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",26247,131,,,,,,,Yukio Uchida,Petroleum Refining,131,127,CEO,Yukio Uchida,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Tokyo, Japan",Website,http://www.hd.jxtg-group.co.jp,Years on Global 500 List,23,Employees,26247,Company Information,Revenues ($M),63629,Profits ($M),1477.3,Assets ($M),59767,Total Stockholder Equity ($M),12829,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,11.5,Profit Ratios,JXTG Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63476,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),800,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),898764,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-84.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",58000,104,Fortune 500,42,,,,,Steven A. Kandarian,"Insurance: Life, Health (stock)",104,128,CEO,Steven A. Kandarian,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"New York, NY",Website,http://www.metlife.com,Years on Global 500 List,23,Employees,58000,Company Information,Revenues ($M),63476,Profits ($M),800,Assets ($M),898764,Total Stockholder Equity ($M),67309,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.2,Profit Ratios,MetLife,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63324,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),141.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34713,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",17353,122,,,,,,,Wang Yuzhu,Trading,122,129,CEO,Wang Yuzhu,Sector,Wholesalers,Industry,Trading,HQ Location,"Tianjin, China",Website,http://www.tewoo.com,Years on Global 500 List,6,Employees,17353,Company Information,Revenues ($M),63324,Profits ($M),141.7,Assets ($M),34713,Total Stockholder Equity ($M),3465,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,4.1,Profit Ratios,Tewoo Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2271,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69146,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",49500,142,Fortune 500,43,World’s Most Admired Companies,100000,,,Mark T. Bertolini,Health Care: Insurance and Managed Care,142,130,CEO,Mark T. Bertolini,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Hartford, CT",Website,http://www.aetna.com,Years on Global 500 List,17,Employees,49500,Company Information,Revenues ($M),63155,Profits ($M),2271,Assets ($M),69146,Total Stockholder Equity ($M),17881,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,12.7,Profit Ratios,Aetna,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6329,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74129,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",264000,127,Fortune 500,44,World’s Most Admired Companies,39,Change the World,38,Indra K. Nooyi,Food Consumer Products,127,131,CEO,Indra K. Nooyi,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Purchase, NY",Website,http://www.pepsico.com,Years on Global 500 List,23,Employees,264000,Company Information,Revenues ($M),62799,Profits ($M),6329,Assets ($M),74129,Total Stockholder Equity ($M),11095,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.1,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,57,Profit Ratios,PepsiCo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62694,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-32.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1619,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),131349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",33536,65,,,,,,,Claudio Descalzi,Petroleum Refining,65,132,CEO,Claudio Descalzi,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Rome, Italy",Website,http://www.eni.com,Years on Global 500 List,23,Employees,33536,Company Information,Revenues ($M),62694,Profits ($M),-1619,Assets ($M),131349,Total Stockholder Equity ($M),55934,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.6,Profits as % of Assets,-1.2,Profits as % of Stockholder Equity,-2.9,Profit Ratios,ENI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62387,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1764.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),115819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",413536,132,World’s Most Admired Companies,100000,,,,,Yang Jie,Telecommunications,132,133,CEO,Yang Jie,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.chinatelecom.com.cn,Years on Global 500 List,18,Employees,413536,Company Information,Revenues ($M),62387,Profits ($M),1764.6,Assets ($M),115819,Total Stockholder Equity ($M),50919,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,3.5,Profit Ratios,China Telecommunications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62346,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1279,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39769,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-30.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",31800,112,Fortune 500,45,World’s Most Admired Companies,100000,,,Juan R. Luciano,Food Production,112,134,CEO,Juan R. Luciano,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Chicago, IL",Website,http://www.adm.com,Years on Global 500 List,23,Employees,31800,Company Information,Revenues ($M),62346,Profits ($M),1279,Assets ($M),39769,Total Stockholder Equity ($M),17173,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,3.2,Profits as % of Stockholder Equity,7.4,Profit Ratios,Archer Daniels Midland,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61326,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),853,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),53140,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",234771,134,,,,,,,Yin Jiaxu,Aerospace and Defense,134,135,CEO,Yin Jiaxu,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.norincogroup.com.cn,Years on Global 500 List,8,Employees,234771,Company Information,Revenues ($M),61326,Profits ($M),853,Assets ($M),53140,Total Stockholder Equity ($M),13401,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,6.4,Profit Ratios,China North Industries Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61265,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),204.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72072,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23,"Total employees (full-time equivalent, if available) at fiscal year-end.",101708,121,,,,,,,Yu Xubo,Trading,121,136,CEO,Yu Xubo,Sector,Wholesalers,Industry,Trading,HQ Location,"Beijing, China",Website,http://www.cofco.com,Years on Global 500 List,23,Employees,101708,Company Information,Revenues ($M),61265,Profits ($M),204.5,Assets ($M),72072,Total Stockholder Equity ($M),11029,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,1.9,Profit Ratios,COFCO,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61130,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1260.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57783,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",134765,160,,,,,,,Xu Heyi,Motor Vehicles and Parts,160,137,CEO,Xu Heyi,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Beijing, China",Website,http://www.baicgroup.com.cn,Years on Global 500 List,5,Employees,134765,Company Information,Revenues ($M),61130,Profits ($M),1260.6,Assets ($M),57783,Total Stockholder Equity ($M),8037,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,15.7,Profit Ratios,Beijing Automotive Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),60906,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3431,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40377,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-29.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",335520,149,Fortune 500,46,World’s Most Admired Companies,35,,,David P. Abney,"Mail, Package, and Freight Delivery",149,138,CEO,David P. Abney,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Atlanta, GA",Website,http://www.ups.com,Years on Global 500 List,23,Employees,335520,Company Information,Revenues ($M),60906,Profits ($M),3431,Assets ($M),40377,Total Stockholder Equity ($M),405,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,847.2,Profit Ratios,UPS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),60800,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,124,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3883.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),430040,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",40707,,,,,,,,Wu Xiaohui,"Insurance: Life, Health (Mutual)",0,139,CEO,Wu Xiaohui,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Beijing, China",Website,http://www.anbanggroup.com,Years on Global 500 List,1,Employees,40707,Company Information,Revenues ($M),60800,Profits ($M),3883.9,Assets ($M),430040,Total Stockholder Equity ($M),20372,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.4,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,19.1,Profit Ratios,Anbang Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59749,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1913.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47620,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,91.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",175341,140,,,,,,,Carlos Tavares,Motor Vehicles and Parts,140,140,CEO,Carlos Tavares,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Paris, France",Website,http://www.groupe-psa.com,Years on Global 500 List,23,Employees,175341,Company Information,Revenues ($M),59749,Profits ($M),1913.1,Assets ($M),47620,Total Stockholder Equity ($M),13348,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,4,Profits as % of Stockholder Equity,14.3,Profit Ratios,Peugeot,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59678,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-373.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23755,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",273000,,Fortune 500,49,,,,,Robert G. Miller,Food and Drug Stores,0,141,CEO,Robert G. Miller,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Boise, ID",Website,http://www.albertsons.com,Years on Global 500 List,13,Employees,273000,Company Information,Revenues ($M),59678,Profits ($M),-373.3,Assets ($M),23755,Total Stockholder Equity ($M),1371,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-1.6,Profits as % of Stockholder Equity,-27.2,Profit Ratios,Albertsons Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59590,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2134.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),466617,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",62606,135,,,,,,,Seiji Inagaki,"Insurance: Life, Health (stock)",135,142,CEO,Seiji Inagaki,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Tokyo, Japan",Website,http://www.dai-ichi-life-hd.com,Years on Global 500 List,23,Employees,62606,Company Information,Revenues ($M),59590,Profits ($M),2134.5,Assets ($M),466617,Total Stockholder Equity ($M),11675,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,18.3,Profit Ratios,Dai-ichi Life Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),468,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57484,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",60576,139,,,,,,,Ning Gaoning,Trading,139,143,CEO,Ning Gaoning,Sector,Wholesalers,Industry,Trading,HQ Location,"Beijing, China",Website,http://www.sinochem.com,Years on Global 500 List,22,Employees,60576,Company Information,Revenues ($M),59533,Profits ($M),468,Assets ($M),57484,Total Stockholder Equity ($M),9195,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,5.1,Profit Ratios,Sinochem Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59387,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10316,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),113327,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",106000,158,Fortune 500,47,World’s Most Admired Companies,46,Change the World,12,Brian M. Krzanich,Semiconductors and Other Electronic Components,158,144,CEO,Brian M. Krzanich,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Santa Clara, CA",Website,http://www.intel.com,Years on Global 500 List,23,Employees,106000,Company Information,Revenues ($M),59387,Profits ($M),10316,Assets ($M),113327,Total Stockholder Equity ($M),66226,Key Financials (Last Fiscal Year),Profit as % of Revenues,17.4,Profits as % of Assets,9.1,Profits as % of Stockholder Equity,15.6,Profit Ratios,Intel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59303,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4063.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141402,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",77164,151,,,,,,,Takehiko Kakiuchi,Trading,151,145,CEO,Takehiko Kakiuchi,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.mitsubishicorp.com,Years on Global 500 List,23,Employees,77164,Company Information,Revenues ($M),59303,Profits ($M),4063.5,Assets ($M),141402,Total Stockholder Equity ($M),44137,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,9.2,Profit Ratios,Mitsubishi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58862,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),652.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38537,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",342709,144,,,,,,,Wilhelm Hubner,Food and Drug Stores,144,146,CEO,Wilhelm Hubner,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Croix, France",Website,http://www.auchanholding.com,Years on Global 500 List,21,Employees,342709,Company Information,Revenues ($M),58862,Profits ($M),652.4,Assets ($M),38537,Total Stockholder Equity ($M),10593,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,6.2,Profit Ratios,Auchan Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58789,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),483.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),448666,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-38.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",29380,253,,,,,,,Alexander R. Wynaendts,"Insurance: Life, Health (stock)",253,147,CEO,Alexander R. Wynaendts,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"The Hague, Netherlands",Website,http://www.aegon.com,Years on Global 500 List,22,Employees,29380,Company Information,Revenues ($M),58789,Profits ($M),483.3,Assets ($M),448666,Total Stockholder Equity ($M),25647,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.9,Profit Ratios,Aegon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58779,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4368,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),783962,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",49739,152,Fortune 500,48,World’s Most Admired Companies,100000,,,John R. Strangfeld,"Insurance: Life, Health (stock)",152,148,CEO,John R. Strangfeld,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Newark, NJ",Website,http://www.prudential.com,Years on Global 500 List,23,Employees,49739,Company Information,Revenues ($M),58779,Profits ($M),4368,Assets ($M),783962,Total Stockholder Equity ($M),45863,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.4,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,9.5,Profit Ratios,Prudential Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58611,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6904,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165420,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",111556,133,World’s Most Admired Companies,100000,,,,,Vittorio Colao,Telecommunications,133,149,CEO,Vittorio Colao,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Newbury, Britain",Website,http://www.vodafone.com,Years on Global 500 List,18,Employees,111556,Company Information,Revenues ($M),58611,Profits ($M),-6904,Assets ($M),165420,Total Stockholder Equity ($M),77211,Key Financials (Last Fiscal Year),Profit as % of Revenues,-11.8,Profits as % of Assets,-4.2,Profits as % of Stockholder Equity,-8.9,Profit Ratios,Vodafone Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5732.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59512,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",168832,147,World’s Most Admired Companies,38,Change the World,27,,,Paul Polman,Household and Personal Products,147,150,CEO,Paul Polman,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"London, Britain",Website,http://www.unilever.com,Years on Global 500 List,23,Employees,168832,Company Information,Revenues ($M),58292,Profits ($M),5732.7,Assets ($M),59512,Total Stockholder Equity ($M),17247,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.8,Profits as % of Assets,9.6,Profits as % of Stockholder Equity,33.2,Profit Ratios,Unilever,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58093,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2013.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),426416,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",100622,115,,,,,,,Paulo Rogerio Caffarelli,Banks: Commercial and Savings,115,151,CEO,Paulo Rogerio Caffarelli,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Brasilia, Brazil",Website,http://www.bb.com.br,Years on Global 500 List,23,Employees,100622,Company Information,Revenues ($M),58093,Profits ($M),2013.8,Assets ($M),426416,Total Stockholder Equity ($M),26551,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.5,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.6,Profit Ratios,Banco do Brasil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57774,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-10256.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),113115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",125689,98,,,,,,,Jose Antonio Gonzalez Anaya,"Mining, Crude-Oil Production",98,152,CEO,Jose Antonio Gonzalez Anaya,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Mexico City, Mexico",Website,http://www.pemex.com,Years on Global 500 List,23,Employees,125689,Company Information,Revenues ($M),57774,Profits ($M),-10256.3,Assets ($M),113115,Total Stockholder Equity ($M),-59909,Key Financials (Last Fiscal Year),Profit as % of Revenues,-17.8,Profits as % of Assets,-9.1,Profits as % of Stockholder Equity,,Profit Ratios,Pemex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57544,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2619.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,283.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",127323,137,World’s Most Admired Companies,100000,,,,,Jose Maria Alvarez-Pallete Lopez,Telecommunications,137,153,CEO,Jose Maria Alvarez-Pallete Lopez,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Madrid, Spain",Website,http://www.telefonica.com,Years on Global 500 List,23,Employees,127323,Company Information,Revenues ($M),57544,Profits ($M),2619.7,Assets ($M),130396,Total Stockholder Equity ($M),19149,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,2,Profits as % of Stockholder Equity,13.7,Profit Ratios,Telefonica,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57443,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5127.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),366418,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",94541,209,,,,,,,Luiz Carlos Trabuco Cappi,Banks: Commercial and Savings,209,154,CEO,Luiz Carlos Trabuco Cappi,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Osasco, Brazil",Website,http://www.bradesco.com.br,Years on Global 500 List,21,Employees,94541,Company Information,Revenues ($M),57443,Profits ($M),5127.9,Assets ($M),366418,Total Stockholder Equity ($M),32369,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.9,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,15.8,Profit Ratios,Banco Bradesco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57244,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5055,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89706,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-33.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",201600,136,Fortune 500,50,World’s Most Admired Companies,100000,Change the World,8,Gregory J. Hayes,Aerospace and Defense,136,155,CEO,Gregory J. Hayes,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Farmington, CT",Website,http://www.utc.com,Years on Global 500 List,23,Employees,201600,Company Information,Revenues ($M),57244,Profits ($M),5055,Assets ($M),89706,Total Stockholder Equity ($M),27579,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.8,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,18.3,Profit Ratios,United Technologies,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56791,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1779,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75142,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",198517,123,World’s Most Admired Companies,100000,,,,,Lakshmi N. Mittal,Metals,123,156,CEO,Lakshmi N. Mittal,Sector,Materials,Industry,Metals,HQ Location,"Luxembourg, Luxembourg",Website,http://www.arcelormittal.com,Years on Global 500 List,13,Employees,198517,Company Information,Revenues ($M),56791,Profits ($M),1779,Assets ($M),75142,Total Stockholder Equity ($M),30135,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.9,Profit Ratios,ArcelorMittal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56667,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3780.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),107681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",124849,178,World’s Most Admired Companies,100000,,,,,Carlos Ghosn,Motor Vehicles and Parts,178,157,CEO,Carlos Ghosn,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Boulogne-Billancourt, France",Website,http://www.groupe.renault.com,Years on Global 500 List,23,Employees,124849,Company Information,Revenues ($M),56667,Profits ($M),3780.9,Assets ($M),107681,Total Stockholder Equity ($M),32423,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.7,Profit Ratios,Renault,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56553,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2705.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),180756,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-53.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",295800,118,,,,,,,Igor I. Sechin,Petroleum Refining,118,158,CEO,Igor I. Sechin,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Moscow, Russia",Website,http://www.rosneft.com,Years on Global 500 List,12,Employees,295800,Company Information,Revenues ($M),56553,Profits ($M),2705.1,Assets ($M),180756,Total Stockholder Equity ($M),54227,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,5,Profit Ratios,Rosneft Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56174,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1217.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31641,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",135393,163,,,,,,,Zhang Shiping,Textiles,163,159,CEO,Zhang Shiping,Sector,Industrials,Industry,Textiles,HQ Location,"Shandong, China",Website,http://www.weiqiaocy.com,Years on Global 500 List,6,Employees,135393,Company Information,Revenues ($M),56174,Profits ($M),1217.2,Assets ($M),31641,Total Stockholder Equity ($M),9438,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,12.9,Profit Ratios,Shandong Weiqiao Pioneering Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55858,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1174,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44413,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-58.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",44460,120,Fortune 500,51,,,,,Gary R. Heminger,Petroleum Refining,120,160,CEO,Gary R. Heminger,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Findlay, OH",Website,http://www.marathonpetroleum.com,Years on Global 500 List,6,Employees,44460,Company Information,Revenues ($M),55858,Profits ($M),1174,Assets ($M),44413,Total Stockholder Equity ($M),13557,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,8.7,Profit Ratios,Marathon Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55632,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9391,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),92033,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,164,Fortune 500,52,World’s Most Admired Companies,5,,,Robert A. Iger,Entertainment,164,161,CEO,Robert A. Iger,Sector,Media,Industry,Entertainment,HQ Location,"Burbank, CA",Website,http://www.disney.com,Years on Global 500 List,23,Employees,195000,Company Information,Revenues ($M),55632,Profits ($M),9391,Assets ($M),92033,Total Stockholder Equity ($M),43265,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.9,Profits as % of Assets,10.2,Profits as % of Stockholder Equity,21.7,Profit Ratios,Disney,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55306,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),464.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),124892,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-47.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",457097,143,,,,,,,Tan Ruisong,Aerospace and Defense,143,162,CEO,Tan Ruisong,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.avic.com,Years on Global 500 List,9,Employees,457097,Company Information,Revenues ($M),55306,Profits ($M),464.2,Assets ($M),124892,Total Stockholder Equity ($M),24345,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.9,Profit Ratios,Aviation Industry Corp. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55282,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5501.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),888226,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",51943,117,,,,,,,Ralph Hamers,Banks: Commercial and Savings,117,163,CEO,Ralph Hamers,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Amsterdam, Netherlands",Website,http://www.ing.com,Years on Global 500 List,23,Employees,51943,Company Information,Revenues ($M),55282,Profits ($M),5501.6,Assets ($M),888226,Total Stockholder Equity ($M),49839,Key Financials (Last Fiscal Year),Profit as % of Revenues,10,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,11,Profit Ratios,ING Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55185,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,15.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8550.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2722354,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",115276,191,World’s Most Admired Companies,100000,,,,,Nobuyuki Hirano,Banks: Commercial and Savings,191,164,CEO,Nobuyuki Hirano,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.mufg.jp,Years on Global 500 List,16,Employees,115276,Company Information,Revenues ($M),55185,Profits ($M),8550.1,Assets ($M),2722354,Total Stockholder Equity ($M),110573,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,Mitsubishi UFJ Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),54955,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,29.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),917.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38257,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",225000,222,World’s Most Admired Companies,100000,,,,,Dick Boer,Food and Drug Stores,222,165,CEO,Dick Boer,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Zaandam, Netherlands",Website,http://www.aholddelhaize.com,Years on Global 500 List,23,Employees,225000,Company Information,Revenues ($M),54955,Profits ($M),917.9,Assets ($M),38257,Total Stockholder Equity ($M),17165,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.3,Profit Ratios,Royal Ahold Delhaize,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),54379,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),614,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-51.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",51600,162,Fortune 500,53,World’s Most Admired Companies,100000,,,Bruce D. Broussard,Health Care: Insurance and Managed Care,162,166,CEO,Bruce D. Broussard,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Louisville, KY",Website,http://www.humana.com,Years on Global 500 List,19,Employees,51600,Company Information,Revenues ($M),54379,Profits ($M),614,Assets ($M),25396,Total Stockholder Equity ($M),10685,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.7,Profit Ratios,Humana,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53858,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),892.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49244,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-33,"Total employees (full-time equivalent, if available) at fiscal year-end.",54712,179,,,,,,,Ryuichi Isaka,Food and Drug Stores,179,167,CEO,Ryuichi Isaka,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Tokyo, Japan",Website,http://www.7andi.com,Years on Global 500 List,12,Employees,54712,Company Information,Revenues ($M),53858,Profits ($M),892.9,Assets ($M),49244,Total Stockholder Equity ($M),20086,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,4.4,Profit Ratios,Seven & I Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53562,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2960,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42132,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,72.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",34999,161,,,,,,,Sanjiv Singh,Petroleum Refining,161,168,CEO,Sanjiv Singh,Sector,Energy,Industry,Petroleum Refining,HQ Location,"New Delhi, India",Website,http://www.iocl.com,Years on Global 500 List,23,Employees,34999,Company Information,Revenues ($M),53562,Profits ($M),2960,Assets ($M),42132,Total Stockholder Equity ($M),15724,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7,Profits as % of Stockholder Equity,18.8,Profit Ratios,Indian Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53427,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9719.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",94052,167,World’s Most Admired Companies,100000,,,,,Severin Schwan,Pharmaceuticals,167,169,CEO,Severin Schwan,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Basel, Switzerland",Website,http://www.roche.com,Years on Global 500 List,23,Employees,94052,Company Information,Revenues ($M),53427,Profits ($M),9719.9,Assets ($M),75609,Total Stockholder Equity ($M),23534,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.2,Profits as % of Assets,12.9,Profits as % of Stockholder Equity,41.3,Profit Ratios,Roche Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53035,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,79.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),278.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),173095,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",220258,353,,,,,,,Tan Xiangdong,Airlines,353,170,CEO,Tan Xiangdong,Sector,Transportation,Industry,Airlines,HQ Location,"Haikou City, China",Website,http://www.hnagroup.com,Years on Global 500 List,3,Employees,220258,Company Information,Revenues ($M),53035,Profits ($M),278.9,Assets ($M),173095,Total Stockholder Equity ($M),14096,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,2,Profit Ratios,HNA Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52990,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10116.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1209176,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",95160,153,,,,,,,Niu Ximing,Banks: Commercial and Savings,153,171,CEO,Niu Ximing,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shanghai, China",Website,http://www.bankcomm.com,Years on Global 500 List,9,Employees,95160,Company Information,Revenues ($M),52990,Profits ($M),10116.9,Assets ($M),1209176,Total Stockholder Equity ($M),90531,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,11.2,Profit Ratios,Bank of Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52852,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3236.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),938261,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14,"Total employees (full-time equivalent, if available) at fiscal year-end.",201263,156,,,,,,,Chang Zhenming,Diversified Financials,156,172,CEO,Chang Zhenming,Sector,Financials,Industry,Diversified Financials,HQ Location,"Beijing, China",Website,http://www.citicgroup.com.cn,Years on Global 500 List,9,Employees,201263,Company Information,Revenues ($M),52852,Profits ($M),3236.3,Assets ($M),938261,Total Stockholder Equity ($M),41784,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.1,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,CITIC Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52824,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7215,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),171615,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",96500,186,Fortune 500,54,World’s Most Admired Companies,100000,,,Ian C. Read,Pharmaceuticals,186,173,CEO,Ian C. Read,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"New York, NY",Website,http://www.pfizer.com,Years on Global 500 List,23,Employees,96500,Company Information,Revenues ($M),52824,Profits ($M),7215,Assets ($M),171615,Total Stockholder Equity ($M),59544,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,12.1,Profit Ratios,Pfizer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52569,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5010.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86731,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",115170,165,,,,,,,Werner Baumann,Pharmaceuticals,165,174,CEO,Werner Baumann,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Leverkusen, Germany",Website,http://www.bayer.com,Years on Global 500 List,23,Employees,115170,Company Information,Revenues ($M),52569,Profits ($M),5010.6,Assets ($M),86731,Total Stockholder Equity ($M),31990,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,5.8,Profits as % of Stockholder Equity,15.7,Profit Ratios,Bayer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52367,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-849,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),498264,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-138.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",56400,150,Fortune 500,55,,,,,Brian Duperreault,Insurance: Property and Casualty (Stock),150,175,CEO,Brian Duperreault,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"New York, NY",Website,http://www.aig.com,Years on Global 500 List,22,Employees,56400,Company Information,Revenues ($M),52367,Profits ($M),-849,Assets ($M),498264,Total Stockholder Equity ($M),76300,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.6,Profits as % of Assets,-0.2,Profits as % of Stockholder Equity,-1.1,Profit Ratios,AIG,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52201,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),462.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),73555,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-79,"Total employees (full-time equivalent, if available) at fiscal year-end.",194193,154,,,,,,,Daniel Hajj Aboumrad,Telecommunications,154,176,CEO,Daniel Hajj Aboumrad,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Mexico City, Mexico",Website,http://www.americamovil.com,Years on Global 500 List,11,Employees,194193,Company Information,Revenues ($M),52201,Profits ($M),462.9,Assets ($M),73555,Total Stockholder Equity ($M),10143,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,4.6,Profit Ratios,America Movil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),51500,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6074.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),147265,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-48.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",43688,172,,,,,,,Hwan-Eik Cho,Utilities,172,177,CEO,Hwan-Eik Cho,Sector,Energy,Industry,Utilities,HQ Location,"Jeollanam-do, South Korea",Website,http://www.kepco.co.kr,Years on Global 500 List,23,Employees,43688,Company Information,Revenues ($M),51500,Profits ($M),6074.1,Assets ($M),147265,Total Stockholder Equity ($M),59394,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,10.2,Profit Ratios,Korea Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50658,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5302,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47806,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,47.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",97000,197,Fortune 500,56,World’s Most Admired Companies,100000,,,Marillyn A. Hewson,Aerospace and Defense,197,178,CEO,Marillyn A. Hewson,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Bethesda, MD",Website,http://www.lockheedmartin.com,Years on Global 500 List,23,Employees,97000,Company Information,Revenues ($M),50658,Profits ($M),5302,Assets ($M),47806,Total Stockholder Equity ($M),1511,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.5,Profits as % of Assets,11.1,Profits as % of Stockholder Equity,350.9,Profit Ratios,Lockheed Martin,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50367,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),949.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16722,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,38.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",51900,188,Fortune 500,57,,,,,William J. DeLaney III,Wholesalers: Food and Grocery,188,179,CEO,William J. DeLaney III,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Houston, TX",Website,http://www.sysco.com,Years on Global 500 List,23,Employees,51900,Company Information,Revenues ($M),50367,Profits ($M),949.6,Assets ($M),16722,Total Stockholder Equity ($M),3480,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,27.3,Profit Ratios,Sysco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50365,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1820,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46064,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,73.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",335767,192,Fortune 500,58,World’s Most Admired Companies,11,The 100 Best Companies to Work For,99,Frederick W. Smith,"Mail, Package, and Freight Delivery",192,180,CEO,Frederick W. Smith,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Memphis, TN",Website,http://www.fedex.com,Years on Global 500 List,23,Employees,335767,Company Information,Revenues ($M),50365,Profits ($M),1820,Assets ($M),46064,Total Stockholder Equity ($M),13784,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,4,Profits as % of Stockholder Equity,13.2,Profit Ratios,FedEx,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50123,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3161,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79679,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,,Fortune 500,59,,,,,Margaret C. Whitman,Information Technology Services,0,181,CEO,Margaret C. Whitman,Sector,Technology,Industry,Information Technology Services,HQ Location,"Palo Alto, CA",Website,http://www.hpe.com,Years on Global 500 List,1,Employees,195000,Company Information,Revenues ($M),50123,Profits ($M),3161,Assets ($M),79679,Total Stockholder Equity ($M),31448,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.3,Profits as % of Assets,4,Profits as % of Stockholder Equity,10.1,Profit Ratios,Hewlett Packard Enterprise,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49838,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),305,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19843,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,44.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",17407,157,,,,,,,Gonzalo Ramirez Martiarena,Food Production,157,182,CEO,Gonzalo Ramirez Martiarena,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Rotterdam, Netherlands",Website,http://www.ldc.com,Years on Global 500 List,4,Employees,17407,Company Information,Revenues ($M),49838,Profits ($M),305,Assets ($M),19843,Total Stockholder Equity ($M),5115,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,6,Profit Ratios,Louis Dreyfus Company,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49677,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1199.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18405,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",17852,190,,,,,,,Wang Wenyin,"Electronics, Electrical Equip.",190,183,CEO,Wang Wenyin,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Shenzhen, China",Website,http://www.amer.com.cn,Years on Global 500 List,5,Employees,17852,Company Information,Revenues ($M),49677,Profits ($M),1199.9,Assets ($M),18405,Total Stockholder Equity ($M),10005,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,6.5,Profits as % of Stockholder Equity,12,Profit Ratios,Amer International Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49479,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-22,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4092.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),134528,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",51034,125,,,,,,,Wan Zulkiflee Wan Ariffin,Petroleum Refining,125,184,CEO,Wan Zulkiflee Wan Ariffin,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Kuala Lumpur, Malaysia",Website,http://www.petronas.com.my,Years on Global 500 List,21,Employees,51034,Company Information,Revenues ($M),49479,Profits ($M),4092.9,Assets ($M),134528,Total Stockholder Equity ($M),84800,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.3,Profits as % of Assets,3,Profits as % of Stockholder Equity,4.8,Profit Ratios,Petronas,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49446,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1225.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),110202,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",42060,177,,,,,,,Naomi Hirose,Utilities,177,185,CEO,Naomi Hirose,Sector,Energy,Industry,Utilities,HQ Location,"Tokyo, Japan",Website,http://www.tepco.co.jp,Years on Global 500 List,23,Employees,42060,Company Information,Revenues ($M),49446,Profits ($M),1225.7,Assets ($M),110202,Total Stockholder Equity ($M),20905,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,5.9,Profit Ratios,Tokyo Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49436,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6712,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",118393,175,World’s Most Admired Companies,100000,,,,,Joseph Jimenez,Pharmaceuticals,175,186,CEO,Joseph Jimenez,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Basel, Switzerland",Website,http://www.novartis.com,Years on Global 500 List,23,Employees,118393,Company Information,Revenues ($M),49436,Profits ($M),6712,Assets ($M),130124,Total Stockholder Equity ($M),74832,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,9,Profit Ratios,Novartis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49247,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10739,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),121652,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",73700,183,Fortune 500,60,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,67,Charles H. Robbins,Network and Other Communications Equipment,183,187,CEO,Charles H. Robbins,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"San Jose, CA",Website,http://www.cisco.com,Years on Global 500 List,18,Employees,73700,Company Information,Revenues ($M),49247,Profits ($M),10739,Assets ($M),121652,Total Stockholder Equity ($M),63586,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.8,Profits as % of Assets,8.8,Profits as % of Stockholder Equity,16.9,Profit Ratios,Cisco Systems,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49239,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1942.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),190596,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",40641,231,,,,,,,Yasuyoshi Karasawa,Insurance: Property and Casualty (Stock),231,188,CEO,Yasuyoshi Karasawa,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.ms-ad-hd.com,Years on Global 500 List,19,Employees,40641,Company Information,Revenues ($M),49239,Profits ($M),1942.2,Assets ($M),190596,Total Stockholder Equity ($M),12793,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.9,Profits as % of Assets,1,Profits as % of Stockholder Equity,15.2,Profit Ratios,MS&AD Insurance Group Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48876,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1550.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1677437,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",99744,166,,,,,,,John Cryan,Banks: Commercial and Savings,166,189,CEO,John Cryan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Frankfurt, Germany",Website,http://www.db.com,Years on Global 500 List,23,Employees,99744,Company Information,Revenues ($M),48876,Profits ($M),-1550.4,Assets ($M),1677437,Total Stockholder Equity ($M),63102,Key Financials (Last Fiscal Year),Profit as % of Revenues,-3.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-2.5,Profit Ratios,Deutsche Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48869,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1057.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86687,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",187813,200,,,,,,,Yan Zhiyong,"Engineering, Construction",200,190,CEO,Yan Zhiyong,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.powerchina.cn,Years on Global 500 List,6,Employees,187813,Company Information,Revenues ($M),48869,Profits ($M),1057.6,Assets ($M),86687,Total Stockholder Equity ($M),9990,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,10.6,Profit Ratios,PowerChina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48825,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),107.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31605,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-92.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",237061,185,,,,,,,Wesley Mendonca Batista,Food Production,185,191,CEO,Wesley Mendonca Batista,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Sao Paulo, Brazil",Website,http://jbss.infoinvest.com.br,Years on Global 500 List,8,Employees,237061,Company Information,Revenues ($M),48825,Profits ($M),107.7,Assets ($M),31605,Total Stockholder Equity ($M),7307,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,1.5,Profit Ratios,JBS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48719,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2681.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,360.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",24934,146,,,,,,,Tevin Vongvanich,Petroleum Refining,146,192,CEO,Tevin Vongvanich,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Bangkok, Thailand",Website,http://www.pttplc.com,Years on Global 500 List,14,Employees,24934,Company Information,Revenues ($M),48719,Profits ($M),2681.6,Assets ($M),62349,Total Stockholder Equity ($M),21309,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,12.6,Profit Ratios,PTT,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,26.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2527.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),202923,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",38842,261,,,,,,,Tsuyoshi Nagano,Insurance: Property and Casualty (Stock),261,193,CEO,Tsuyoshi Nagano,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.tokiomarinehd.com,Years on Global 500 List,23,Employees,38842,Company Information,Revenues ($M),48292,Profits ($M),2527.4,Assets ($M),202923,Total Stockholder Equity ($M),16474,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,15.3,Profit Ratios,Tokio Marine Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48238,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-53.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2496,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29010,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",49000,48,Fortune 500,61,,,,,Dion J. Weisler,"Computers, Office Equipment",48,194,CEO,Dion J. Weisler,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Palo Alto, CA",Website,http://www.hp.com,Years on Global 500 List,23,Employees,49000,Company Information,Revenues ($M),48238,Profits ($M),2496,Assets ($M),29010,Total Stockholder Equity ($M),-3889,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,,Profit Ratios,HP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48204,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6249.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80576,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",58652,174,,,,,,,Rolf Martin Schmitz,Utilities,174,195,CEO,Rolf Martin Schmitz,Sector,Energy,Industry,Utilities,HQ Location,"Essen, Germany",Website,http://www.rwe.com,Years on Global 500 List,23,Employees,58652,Company Information,Revenues ($M),48204,Profits ($M),-6249.1,Assets ($M),80576,Total Stockholder Equity ($M),3898,Key Financials (Last Fiscal Year),Profit as % of Revenues,-13,Profits as % of Assets,-7.8,Profits as % of Stockholder Equity,-160.3,Profit Ratios,RWE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48158,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4318,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79511,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-43.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",56000,187,Fortune 500,62,,,,,Andrew N. Liveris,Chemicals,187,196,CEO,Andrew N. Liveris,Sector,Chemicals,Industry,Chemicals,HQ Location,"Midland, MI",Website,http://www.dow.com,Years on Global 500 List,23,Employees,56000,Company Information,Revenues ($M),48158,Profits ($M),4318,Assets ($M),79511,Total Stockholder Equity ($M),25987,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,16.6,Profit Ratios,Dow Chemical,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48154,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46270,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",232503,170,,,,,,,Didier Leveque,Food and Drug Stores,170,197,CEO,Didier Leveque,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Paris, France",Website,http://www.finatis.fr,Years on Global 500 List,3,Employees,232503,Company Information,Revenues ($M),48154,Profits ($M),687.8,Assets ($M),46270,Total Stockholder Equity ($M),744,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,92.5,Profit Ratios,Finatis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),296.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30358,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-85.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",220000,171,,,,,,,Richard J.B. Goyder,Food and Drug Stores,171,198,CEO,Richard J.B. Goyder,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Perth, Australia",Website,http://www.wesfarmers.com.au,Years on Global 500 List,9,Employees,220000,Company Information,Revenues ($M),48003,Profits ($M),296.1,Assets ($M),30358,Total Stockholder Equity ($M),17083,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,1.7,Profit Ratios,Wesfarmers,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47810,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),504,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36767,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",106772,205,,,,,,,She Lulin,Pharmaceuticals,205,199,CEO,She Lulin,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Beijing, China",Website,http://www.sinopharm.com,Years on Global 500 List,5,Employees,106772,Company Information,Revenues ($M),47810,Profits ($M),504,Assets ($M),36767,Total Stockholder Equity ($M),5658,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Sinopharm,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47804,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1327.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),442027,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",5035,182,,,,,,,Frederic Lavenir,"Insurance: Life, Health (stock)",182,200,CEO,Frederic Lavenir,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Paris, France",Website,http://www.cnp.fr,Years on Global 500 List,23,Employees,5035,Company Information,Revenues ($M),47804,Profits ($M),1327.3,Assets ($M),442027,Total Stockholder Equity ($M),18491,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.2,Profit Ratios,CNP Assurances,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47712,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),66.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31348,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75000,180,,,,,,,Seong-Jin Jo,"Electronics, Electrical Equip.",180,201,CEO,Seong-Jin Jo,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Seoul, South Korea",Website,http://www.lg.com,Years on Global 500 List,17,Employees,75000,Company Information,Revenues ($M),47712,Profits ($M),66.2,Assets ($M),31348,Total Stockholder Equity ($M),9926,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,0.7,Profit Ratios,LG Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47375,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,19.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6520.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1775349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21,"Total employees (full-time equivalent, if available) at fiscal year-end.",77205,243,,,,,,,Takeshi Kunibe,Banks: Commercial and Savings,243,202,CEO,Takeshi Kunibe,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.smfg.co.jp,Years on Global 500 List,23,Employees,77205,Company Information,Revenues ($M),47375,Profits ($M),6520.5,Assets ($M),1775349,Total Stockholder Equity ($M),72876,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Sumitomo Mitsui Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46931,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4458.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108856,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",140483,215,,,,,,,Mukesh D. Ambani,Petroleum Refining,215,203,CEO,Mukesh D. Ambani,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.ril.com,Years on Global 500 List,14,Employees,140483,Company Information,Revenues ($M),46931,Profits ($M),4458.9,Assets ($M),108856,Total Stockholder Equity ($M),40614,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,11,Profit Ratios,Reliance Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),442.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),106725,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",169344,275,World’s Most Admired Companies,100000,,,,,Ma Guoqiang,Metals,275,204,CEO,Ma Guoqiang,Sector,Materials,Industry,Metals,HQ Location,"Shanghai, China",Website,http://www.baowugroup.com,Years on Global 500 List,14,Employees,169344,Company Information,Revenues ($M),46606,Profits ($M),442.8,Assets ($M),106725,Total Stockholder Equity ($M),35728,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.2,Profit Ratios,China Baowu Steel Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46528,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-30.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12285,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",1000,116,,,,,,,William J. Randall,Trading,116,205,CEO,William J. Randall,Sector,Wholesalers,Industry,Trading,HQ Location,"Hong Kong, China",Website,http://www.thisisnoble.com,Years on Global 500 List,10,Employees,1000,Company Information,Revenues ($M),46528,Profits ($M),8.7,Assets ($M),12285,Total Stockholder Equity ($M),3974,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.2,Profit Ratios,Noble Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45905,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1241,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),258381,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-85,"Total employees (full-time equivalent, if available) at fiscal year-end.",206633,211,World’s Most Admired Companies,100000,,,,,Carlos Brito,Beverages,211,206,CEO,Carlos Brito,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Leuven, Belgium",Website,http://www.ab-inbev.com,Years on Global 500 List,12,Employees,206633,Company Information,Revenues ($M),45905,Profits ($M),1241,Assets ($M),258381,Total Stockholder Equity ($M),71339,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,1.7,Profit Ratios,Anheuser-Busch InBev,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-23.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2902,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),104530,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",20539,145,,,,,,,Eldar Saetre,Petroleum Refining,145,207,CEO,Eldar Saetre,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Stavanger, Norway",Website,http://www.statoil.com,Years on Global 500 List,23,Employees,20539,Company Information,Revenues ($M),45873,Profits ($M),-2902,Assets ($M),104530,Total Stockholder Equity ($M),35072,Key Financials (Last Fiscal Year),Profit as % of Revenues,-6.3,Profits as % of Assets,-2.8,Profits as % of Stockholder Equity,-8.3,Profit Ratios,Statoil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45621,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1167.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),66361,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,669.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",31768,173,World’s Most Admired Companies,100000,,,,,Oh-Joon Kwon,Metals,173,208,CEO,Oh-Joon Kwon,Sector,Materials,Industry,Metals,HQ Location,"Seoul, South Korea",Website,http://www.posco.com,Years on Global 500 List,23,Employees,31768,Company Information,Revenues ($M),45621,Profits ($M),1167.5,Assets ($M),66361,Total Stockholder Equity ($M),35057,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,3.3,Profit Ratios,POSCO,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45425,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2373.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42141,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2,"Total employees (full-time equivalent, if available) at fiscal year-end.",51357,208,,,,,,,Hyoung-Keun Lee,Motor Vehicles and Parts,208,209,CEO,Hyoung-Keun Lee,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://www.kia.com,Years on Global 500 List,6,Employees,51357,Company Information,Revenues ($M),45425,Profits ($M),2373.8,Assets ($M),42141,Total Stockholder Equity ($M),22010,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,10.8,Profit Ratios,Kia Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45249,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3245.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99840,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",155202,204,,,,,,,Stephane Richard,Telecommunications,204,210,CEO,Stephane Richard,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Paris, France",Website,http://www.orange.com,Years on Global 500 List,23,Employees,155202,Company Information,Revenues ($M),45249,Profits ($M),3245.7,Assets ($M),99840,Total Stockholder Equity ($M),32365,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.2,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,10,Profit Ratios,Orange,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45177,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),17.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54341,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",110614,234,,,,,,,Ren Jianxin,Chemicals,234,211,CEO,Ren Jianxin,Sector,Chemicals,Industry,Chemicals,HQ Location,"Beijing, China",Website,http://www.chemchina.com,Years on Global 500 List,7,Employees,110614,Company Information,Revenues ($M),45177,Profits ($M),17.9,Assets ($M),54341,Total Stockholder Equity ($M),3462,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.5,Profit Ratios,ChemChina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44850,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),768.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59716,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",306368,203,,,,,,,Richard Lutz,Railroads,203,212,CEO,Richard Lutz,Sector,Transportation,Industry,Railroads,HQ Location,"Berlin, Germany",Website,http://www.deutschebahn.com,Years on Global 500 List,23,Employees,306368,Company Information,Revenues ($M),44850,Profits ($M),768.6,Assets ($M),59716,Total Stockholder Equity ($M),13246,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,5.8,Profit Ratios,Deutsche Bahn,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44842,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3099.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38151,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",220137,213,World’s Most Admired Companies,100000,,,,,Elmar Degenhart,Motor Vehicles and Parts,213,213,CEO,Elmar Degenhart,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hanover, Germany",Website,http://www.continental-corporation.com,Years on Global 500 List,15,Employees,220137,Company Information,Revenues ($M),44842,Profits ($M),3099.1,Assets ($M),38151,Total Stockholder Equity ($M),15050,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,8.1,Profits as % of Stockholder Equity,20.6,Profit Ratios,Continental,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44747,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2890,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33758,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,35.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",210500,212,Fortune 500,63,World’s Most Admired Companies,100000,,,R. Milton Johnson,Health Care: Medical Facilities,212,214,CEO,R. Milton Johnson,Sector,Health Care,Industry,Health Care: Medical Facilities,HQ Location,"Nashville, TN",Website,http://www.hcahealthcare.com,Years on Global 500 List,23,Employees,210500,Company Information,Revenues ($M),44747,Profits ($M),2890,Assets ($M),33758,Total Stockholder Equity ($M),-7302,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.5,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,,Profit Ratios,HCA Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44654,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3250.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72902,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,62.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",110207,223,,,,,,,Masahiro Okafuji,Trading,223,215,CEO,Masahiro Okafuji,Sector,Wholesalers,Industry,Trading,HQ Location,"Osaka, Japan",Website,http://www.itochu.co.jp,Years on Global 500 List,23,Employees,110207,Company Information,Revenues ($M),44654,Profits ($M),3250.6,Assets ($M),72902,Total Stockholder Equity ($M),21559,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.3,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,15.1,Profit Ratios,Itochu,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44552,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9344.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),855070,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",70461,189,,,,,,,Tian Huiyu,Banks: Commercial and Savings,189,216,CEO,Tian Huiyu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shenzhen, China",Website,http://www.cmbchina.com,Years on Global 500 List,6,Employees,70461,Company Information,Revenues ($M),44552,Profits ($M),9344.8,Assets ($M),855070,Total Stockholder Equity ($M),57896,Key Financials (Last Fiscal Year),Profit as % of Revenues,21,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,16.1,Profit Ratios,China Merchants Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),36,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),530590,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-98.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",278872,232,,,,,,,Arundhati Bhattacharya,Banks: Commercial and Savings,232,217,CEO,Arundhati Bhattacharya,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Mumbai, India",Website,http://www.sbi.co.in,Years on Global 500 List,12,Employees,278872,Company Information,Revenues ($M),44533,Profits ($M),36,Assets ($M),530590,Total Stockholder Equity ($M),33450,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,State Bank of India,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43925,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-898.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17495,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-150.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",205000,176,,,,,,,Brad Banducci,Food and Drug Stores,176,218,CEO,Brad Banducci,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Bella Vista, Australia",Website,http://www.woolworthslimited.com.au,Years on Global 500 List,21,Employees,205000,Company Information,Revenues ($M),43925,Profits ($M),-898.3,Assets ($M),17495,Total Stockholder Equity ($M),6305,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2,Profits as % of Assets,-5.1,Profits as % of Stockholder Equity,-14.2,Profit Ratios,Woolworths,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43822,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5045.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56223,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",35032,271,World’s Most Admired Companies,100000,,,,,Takashi Tanaka,Telecommunications,271,219,CEO,Takashi Tanaka,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.kddi.com,Years on Global 500 List,20,Employees,35032,Company Information,Revenues ($M),43822,Profits ($M),5045.1,Assets ($M),56223,Total Stockholder Equity ($M),31904,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.5,Profits as % of Assets,9,Profits as % of Stockholder Equity,15.8,Profit Ratios,KDDI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43786,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,22.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3558,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),215065,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",14053,282,World’s Most Admired Companies,100000,,,,,Christian Mumenthaler,Insurance: Property and Casualty (Stock),282,220,CEO,Christian Mumenthaler,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.swissre.com,Years on Global 500 List,23,Employees,14053,Company Information,Revenues ($M),43786,Profits ($M),3558,Assets ($M),215065,Total Stockholder Equity ($M),35634,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,10,Profit Ratios,Swiss Re,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43769,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-146.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51858,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",125552,201,,,,,,,Yu Yong,Metals,201,221,CEO,Yu Yong,Sector,Materials,Industry,Metals,HQ Location,"Shijiazhuang, China",Website,http://www.hbisco.com,Years on Global 500 List,9,Employees,125552,Company Information,Revenues ($M),43769,Profits ($M),-146.8,Assets ($M),51858,Total Stockholder Equity ($M),7693,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.3,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-1.9,Profit Ratios,HBIS Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43743,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),740.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22578,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",29637,229,,,,,,,Chan Chauto,Energy,229,222,CEO,Chan Chauto,Sector,Energy,Industry,Energy,HQ Location,"Shanghai, China",Website,http://www.cefc.co,Years on Global 500 List,4,Employees,29637,Company Information,Revenues ($M),43743,Profits ($M),740.9,Assets ($M),22578,Total Stockholder Equity ($M),3916,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,18.9,Profit Ratios,CEFC China Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43698,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3842.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),771837,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,31.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",134792,219,,,,,,,Carlos Torres Vila,Banks: Commercial and Savings,219,223,CEO,Carlos Torres Vila,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Bilbao, Spain",Website,http://www.bbva.com,Years on Global 500 List,23,Employees,134792,Company Information,Revenues ($M),43698,Profits ($M),3842.8,Assets ($M),771837,Total Stockholder Equity ($M),49952,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.8,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.7,Profit Ratios,Banco Bilbao Vizcaya Argentaria,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43589,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),328.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39411,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",156487,184,World’s Most Admired Companies,100000,,,,,Heinrich Hiesinger,Metals,184,224,CEO,Heinrich Hiesinger,Sector,Materials,Industry,Metals,HQ Location,"Essen, Germany",Website,http://www.thyssenkrupp.com,Years on Global 500 List,23,Employees,156487,Company Information,Revenues ($M),43589,Profits ($M),328.6,Assets ($M),39411,Total Stockholder Equity ($M),2362,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,13.9,Profit Ratios,ThyssenKrupp,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43231,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1449.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46158,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",172696,196,,,,,,,Pierre-Andre de Chalendar,"Building Materials, Glass",196,225,CEO,Pierre-Andre de Chalendar,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Courbevoie, France",Website,http://www.saint-gobain.com,Years on Global 500 List,23,Employees,172696,Company Information,Revenues ($M),43231,Profits ($M),1449.8,Assets ($M),46158,Total Stockholder Equity ($M),19790,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,7.3,Profit Ratios,Saint-Gobain,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43035,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),535.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27186,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",52000,202,,,,,,,Yang Yuanqing,"Computers, Office Equipment",202,226,CEO,Yang Yuanqing,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Hong Kong, China",Website,http://www.lenovo.com,Years on Global 500 List,8,Employees,52000,Company Information,Revenues ($M),43035,Profits ($M),535.1,Assets ($M),27186,Total Stockholder Equity ($M),3224,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,2,Profits as % of Stockholder Equity,16.6,Profit Ratios,Lenovo Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42771,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2770.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71642,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",183487,210,,,,,,,Xavier Huillard,"Engineering, Construction",210,227,CEO,Xavier Huillard,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Rueil-Malmaison, France",Website,http://www.vinci.com,Years on Global 500 List,17,Employees,183487,Company Information,Revenues ($M),42771,Profits ($M),2770.1,Assets ($M),71642,Total Stockholder Equity ($M),17365,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.5,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,16,Profit Ratios,Vinci,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42757,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1208.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65182,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",100169,238,World’s Most Admired Companies,100000,,,,,Kosei Shindo,Metals,238,228,CEO,Kosei Shindo,Sector,Materials,Industry,Metals,HQ Location,"Tokyo, Japan",Website,http://www.nssmc.com,Years on Global 500 List,23,Employees,100169,Company Information,Revenues ($M),42757,Profits ($M),1208.5,Assets ($M),65182,Total Stockholder Equity ($M),23555,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,5.1,Profit Ratios,Nippon Steel & Sumitomo Metal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42679,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),745,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19188,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",32000,214,World’s Most Admired Companies,100000,,,,,Soren W. Schroder,Food Production,214,229,CEO,Soren W. Schroder,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"White Plains, NY",Website,http://www.bunge.com,Years on Global 500 List,15,Employees,32000,Company Information,Revenues ($M),42679,Profits ($M),745,Assets ($M),19188,Total Stockholder Equity ($M),7144,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.4,Profit Ratios,Bunge,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42622,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8105.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),875731,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",56236,195,,,,,,,Tao Yiping,Banks: Commercial and Savings,195,230,CEO,Tao Yiping,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Fuzhou, China",Website,http://www.cib.com.cn,Years on Global 500 List,5,Employees,56236,Company Information,Revenues ($M),42622,Profits ($M),8105.9,Assets ($M),875731,Total Stockholder Equity ($M),50382,Key Financials (Last Fiscal Year),Profit as % of Revenues,19,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,16.1,Profit Ratios,Industrial Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42213,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-67.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-9344.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),67179,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",43138,32,,,,,,,Johannes Teyssen,Energy,32,231,CEO,Johannes Teyssen,Sector,Energy,Industry,Energy,HQ Location,"Essen, Germany",Website,http://www.eon.com,Years on Global 500 List,23,Employees,43138,Company Information,Revenues ($M),42213,Profits ($M),-9344.4,Assets ($M),67179,Total Stockholder Equity ($M),-1113,Key Financials (Last Fiscal Year),Profit as % of Revenues,-22.1,Profits as % of Assets,-13.9,Profits as % of Stockholder Equity,,Profit Ratios,E.ON,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42159,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8078,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),415730,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,121,"Total employees (full-time equivalent, if available) at fiscal year-end.",325075,199,,,,,,,Herman O. Gref,Banks: Commercial and Savings,199,232,CEO,Herman O. Gref,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Moscow, Russia",Website,http://www.sberbank.ru,Years on Global 500 List,10,Employees,325075,Company Information,Revenues ($M),42159,Profits ($M),8078,Assets ($M),415730,Total Stockholder Equity ($M),46182,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.2,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,17.5,Profit Ratios,Sberbank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42149,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),485.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69621,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",182129,281,,,,,,,Hu Wenming,Industrial Machinery,281,233,CEO,Hu Wenming,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.csic.com.cn,Years on Global 500 List,7,Employees,182129,Company Information,Revenues ($M),42149,Profits ($M),485.8,Assets ($M),69621,Total Stockholder Equity ($M),17789,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,2.7,Profit Ratios,China Shipbuilding Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1740.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69870,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-38.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",120479,228,,,,,,,Sidney Toledano,Apparel,228,234,CEO,Sidney Toledano,Sector,Apparel,Industry,Apparel,HQ Location,"Paris, France",Website,http://www.dior-finance.com,Years on Global 500 List,17,Employees,120479,Company Information,Revenues ($M),42113,Profits ($M),1740.3,Assets ($M),69870,Total Stockholder Equity ($M),12293,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.1,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,14.2,Profit Ratios,Christian Dior,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6527,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),87270,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",100300,206,Fortune 500,64,World’s Most Admired Companies,16,Change the World,11,James B. Quincey,Beverages,206,235,CEO,James B. Quincey,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Atlanta, GA",Website,http://www.coca-colacompany.com,Years on Global 500 List,23,Employees,100300,Company Information,Revenues ($M),41863,Profits ($M),6527,Assets ($M),87270,Total Stockholder Equity ($M),23062,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.6,Profits as % of Assets,7.5,Profits as % of Stockholder Equity,28.3,Profit Ratios,Coca-Cola,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41781,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2377.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46233,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",154493,268,,,,,,,Koji Arima,Motor Vehicles and Parts,268,236,CEO,Koji Arima,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Kariya, Japan",Website,http://www.denso.com,Years on Global 500 List,23,Employees,154493,Company Information,Revenues ($M),41781,Profits ($M),2377.6,Assets ($M),46233,Total Stockholder Equity ($M),29735,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,8,Profit Ratios,Denso,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41620,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),816.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28646,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13,"Total employees (full-time equivalent, if available) at fiscal year-end.",155069,248,World’s Most Admired Companies,100000,,,,,Tatsuya Tanaka,Information Technology Services,248,237,CEO,Tatsuya Tanaka,Sector,Technology,Industry,Information Technology Services,HQ Location,"Tokyo, Japan",Website,http://www.fujitsu.com,Years on Global 500 List,23,Employees,155069,Company Information,Revenues ($M),41620,Profits ($M),816.7,Assets ($M),28646,Total Stockholder Equity ($M),7910,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,10.3,Profit Ratios,Fujitsu,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41560,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),551.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30267,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75908,303,,,,,,,Zeng Qinghong,Motor Vehicles and Parts,303,238,CEO,Zeng Qinghong,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Guangzhou, China",Website,http://www.gagc.com.cn,Years on Global 500 List,5,Employees,75908,Company Information,Revenues ($M),41560,Profits ($M),551.9,Assets ($M),30267,Total Stockholder Equity ($M),3791,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,14.6,Profit Ratios,Guangzhou Automobile Industry Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41402,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),972.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37032,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",90000,254,World’s Most Admired Companies,100000,,,,,Kuok Khoon Hong,Food Production,254,239,CEO,Kuok Khoon Hong,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,Singapore,Website,http://www.wilmar-international.com,Years on Global 500 List,9,Employees,90000,Company Information,Revenues ($M),41402,Profits ($M),972.2,Assets ($M),37032,Total Stockholder Equity ($M),14435,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,6.7,Profit Ratios,Wilmar International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41376,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5207.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),110390,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",113816,233,,,,,,,Olivier Brandicourt,Pharmaceuticals,233,240,CEO,Olivier Brandicourt,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Paris, France",Website,http://www.sanofi.com,Years on Global 500 List,13,Employees,113816,Company Information,Revenues ($M),41376,Profits ($M),5207.4,Assets ($M),110390,Total Stockholder Equity ($M),60698,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.6,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,8.6,Profit Ratios,Sanofi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41274,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),23.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),88626,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-95.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",253724,207,World’s Most Admired Companies,100000,,,,,Wang Xiaochu,Telecommunications,207,241,CEO,Wang Xiaochu,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.chinaunicom-a.com,Years on Global 500 List,9,Employees,253724,Company Information,Revenues ($M),41274,Profits ($M),23.2,Assets ($M),88626,Total Stockholder Equity ($M),11152,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.2,Profit Ratios,China United Network Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40921,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),517.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),308346,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",42245,335,,,,,,,Masahiro Hashimoto,"Insurance: Life, Health (Mutual)",335,242,CEO,Masahiro Hashimoto,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Osaka, Japan",Website,http://www.sumitomolife.co.jp,Years on Global 500 List,23,Employees,42245,Company Information,Revenues ($M),40921,Profits ($M),517.5,Assets ($M),308346,Total Stockholder Equity ($M),8491,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,6.1,Profit Ratios,Sumitomo Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40787,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1088.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),287196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,324.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",11320,198,Fortune 500,65,World’s Most Admired Companies,100000,,,Theodore A. Mathas,"Insurance: Life, Health (Mutual)",198,243,CEO,Theodore A. Mathas,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"New York, NY",Website,http://www.newyorklife.com,Years on Global 500 List,23,Employees,11320,Company Information,Revenues ($M),40787,Profits ($M),1088.1,Assets ($M),287196,Total Stockholder Equity ($M),20108,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,5.4,Profit Ratios,New York Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40721,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,78.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),562,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20197,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,58.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",30500,470,Fortune 500,66,,,,,Michael F. Neidorff,Health Care: Insurance and Managed Care,470,244,CEO,Michael F. Neidorff,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"St. Louis, MO",Website,http://www.centene.com,Years on Global 500 List,2,Employees,30500,Company Information,Revenues ($M),40721,Profits ($M),562,Assets ($M),20197,Total Stockholder Equity ($M),5895,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,9.5,Profit Ratios,Centene,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40689,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7992.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),842832,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",52832,227,,,,,,,Gao Guofu,Banks: Commercial and Savings,227,245,CEO,Gao Guofu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shanghai, China",Website,http://www.spdb.com.cn,Years on Global 500 List,5,Employees,52832,Company Information,Revenues ($M),40689,Profits ($M),7992.8,Assets ($M),842832,Total Stockholder Equity ($M),52946,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.6,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,15.1,Profit Ratios,Shanghai Pudong Development Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),423.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),128247,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",49000,277,,,,,,,Tae-Jong Lee,"Insurance: Life, Health (stock)",277,246,CEO,Tae-Jong Lee,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Seoul, South Korea",Website,http://www.hanwhacorp.co.kr,Years on Global 500 List,12,Employees,49000,Company Information,Revenues ($M),40606,Profits ($M),423.7,Assets ($M),128247,Total Stockholder Equity ($M),3650,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,11.6,Profit Ratios,Hanwha,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40329,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1111.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42162,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34,"Total employees (full-time equivalent, if available) at fiscal year-end.",79558,226,,,,,,,Guenter Butschek,Motor Vehicles and Parts,226,247,CEO,Guenter Butschek,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Mumbai, India",Website,http://www.tatamotors.com,Years on Global 500 List,8,Employees,79558,Company Information,Revenues ($M),40329,Profits ($M),1111.6,Assets ($M),42162,Total Stockholder Equity ($M),8942,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,12.4,Profit Ratios,Tata Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40278,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-282.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75089,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",121146,262,,,,,,,Yu Dehui,Metals,262,248,CEO,Yu Dehui,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.chalco.com.cn,Years on Global 500 List,10,Employees,121146,Company Information,Revenues ($M),40278,Profits ($M),-282.5,Assets ($M),75089,Total Stockholder Equity ($M),2669,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.7,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-10.6,Profit Ratios,Aluminum Corp. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40275,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2825.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),103231,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",42316,245,,,,,,,Tatsuo Yasunaga,Trading,245,249,CEO,Tatsuo Yasunaga,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.mitsui.com,Years on Global 500 List,23,Employees,42316,Company Information,Revenues ($M),40275,Profits ($M),2825.3,Assets ($M),103231,Total Stockholder Equity ($M),33500,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,8.4,Profit Ratios,Mitsui,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40238,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,49.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2209.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),537461,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",34500,394,,,,,,,Donald A. Guloien,"Insurance: Life, Health (stock)",394,250,CEO,Donald A. Guloien,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Toronto, Ontario, Canada",Website,http://www.manulife.com,Years on Global 500 List,15,Employees,34500,Company Information,Revenues ($M),40238,Profits ($M),2209.7,Assets ($M),537461,Total Stockholder Equity ($M),31197,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,7.1,Profit Ratios,Manulife Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40234,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7201.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),848389,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",58720,221,,,,,,,Zheng Wanchun,Banks: Commercial and Savings,221,251,CEO,Zheng Wanchun,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.cmbc.com.cn,Years on Global 500 List,5,Employees,58720,Company Information,Revenues ($M),40234,Profits ($M),7201.6,Assets ($M),848389,Total Stockholder Equity ($M),49297,Key Financials (Last Fiscal Year),Profit as % of Revenues,17.9,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,14.6,Profit Ratios,China Minsheng Banking,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40193,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1814.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),146873,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-35.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",97032,251,,,,,,,Huo Lianhong,"Insurance: Life, Health (stock)",251,252,CEO,Huo Lianhong,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Shanghai, China",Website,http://www.cpic.com.cn,Years on Global 500 List,7,Employees,97032,Company Information,Revenues ($M),40193,Profits ($M),1814.9,Assets ($M),146873,Total Stockholder Equity ($M),18960,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.5,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,9.6,Profit Ratios,China Pacific Insurance (Group),, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40180,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2676,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51274,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-64.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",122300,236,Fortune 500,67,,,,,W. Douglas Parker,Airlines,236,253,CEO,W. Douglas Parker,Sector,Transportation,Industry,Airlines,HQ Location,"Fort Worth, TX",Website,http://www.aa.com,Years on Global 500 List,23,Employees,122300,Company Information,Revenues ($M),40180,Profits ($M),2676,Assets ($M),51274,Total Stockholder Equity ($M),3785,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,70.7,Profit Ratios,American Airlines Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40074,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),334.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),197790,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",34320,241,Fortune 500,68,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,54,Stephen S. Rasmussen,Insurance: Property and Casualty (Mutual),241,254,CEO,Stephen S. Rasmussen,Sector,Financials,Industry,Insurance: Property and Casualty (Mutual),HQ Location,"Columbus, OH",Website,http://www.nationwide.com,Years on Global 500 List,23,Employees,34320,Company Information,Revenues ($M),40074,Profits ($M),334.3,Assets ($M),197790,Total Stockholder Equity ($M),15537,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,2.2,Profit Ratios,Nationwide,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39807,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3920,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),95377,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",68000,246,Fortune 500,69,World’s Most Admired Companies,100000,,,Kenneth C. Frazier,Pharmaceuticals,246,255,CEO,Kenneth C. Frazier,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Kenilworth, NJ",Website,http://www.merck.com,Years on Global 500 List,23,Employees,68000,Company Information,Revenues ($M),39807,Profits ($M),3920,Assets ($M),95377,Total Stockholder Equity ($M),40088,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,9.8,Profit Ratios,Merck,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39668,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1867,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59360,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",41000,264,Fortune 500,70,World’s Most Admired Companies,100000,,,David M. Cordani,Health Care: Insurance and Managed Care,264,256,CEO,David M. Cordani,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Bloomfield, CT",Website,http://www.cigna.com,Years on Global 500 List,22,Employees,41000,Company Information,Revenues ($M),39668,Profits ($M),1867,Assets ($M),59360,Total Stockholder Equity ($M),13723,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,13.6,Profit Ratios,Cigna,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39639,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4373,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51261,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",83756,239,Fortune 500,71,World’s Most Admired Companies,31,The 100 Best Companies to Work For,63,Edward H. Bastian,Airlines,239,257,CEO,Edward H. Bastian,Sector,Transportation,Industry,Airlines,HQ Location,"Atlanta, GA",Website,http://www.delta.com,Years on Global 500 List,23,Employees,83756,Company Information,Revenues ($M),39639,Profits ($M),4373,Assets ($M),51261,Total Stockholder Equity ($M),12287,Key Financials (Last Fiscal Year),Profit as % of Revenues,11,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,35.6,Profit Ratios,Delta Air Lines,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1228,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13856,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,36.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",125000,244,Fortune 500,72,World’s Most Admired Companies,100000,,,Hubert B. Joly,Specialty Retailers,244,258,CEO,Hubert B. Joly,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Richfield, MN",Website,http://www.bestbuy.com,Years on Global 500 List,19,Employees,125000,Company Information,Revenues ($M),39403,Profits ($M),1228,Assets ($M),13856,Total Stockholder Equity ($M),4709,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,26.1,Profit Ratios,Best Buy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39323,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,24,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),74.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),81224,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",228448,327,,,,,,,Song Zhiping,"Building Materials, Glass",327,259,CEO,Song Zhiping,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Beijing, China",Website,http://www.cnbm.com.cn,Years on Global 500 List,7,Employees,228448,Company Information,Revenues ($M),39323,Profits ($M),74.5,Assets ($M),81224,Total Stockholder Equity ($M),5822,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.3,Profit Ratios,China National Building Material Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39302,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4809,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54146,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",131000,256,Fortune 500,73,World’s Most Admired Companies,100000,,,Darius Adamczyk,"Electronics, Electrical Equip.",256,260,CEO,Darius Adamczyk,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Morris Plains, NJ",Website,http://www.honeywell.com,Years on Global 500 List,23,Employees,131000,Company Information,Revenues ($M),39302,Profits ($M),4809,Assets ($M),54146,Total Stockholder Equity ($M),19369,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.2,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,24.8,Profit Ratios,Honeywell International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,35.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-573,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23077,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",120622,366,,,,,,,Richard Qiangdong Liu,Internet Services and Retailing,366,261,CEO,Richard Qiangdong Liu,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Beijing, China",Website,http://www.jd.com,Years on Global 500 List,2,Employees,120622,Company Information,Revenues ($M),39155,Profits ($M),-573,Assets ($M),23077,Total Stockholder Equity ($M),4877,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.5,Profits as % of Assets,-2.5,Profits as % of Stockholder Equity,-11.7,Profit Ratios,JD.com,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39119,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1942.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37519,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",138700,276,,,,,,,Masaki Sakuyama,"Electronics, Electrical Equip.",276,262,CEO,Masaki Sakuyama,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.mitsubishielectric.com,Years on Global 500 List,23,Employees,138700,Company Information,Revenues ($M),39119,Profits ($M),1942.6,Assets ($M),37519,Total Stockholder Equity ($M),18307,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,10.6,Profit Ratios,Mitsubishi Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),949.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30719,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",136820,320,World’s Most Admired Companies,100000,,,,,Stefan Sommer,Motor Vehicles and Parts,320,263,CEO,Stefan Sommer,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Friedrichshafen, Germany",Website,http://www.zf.com,Years on Global 500 List,4,Employees,136820,Company Information,Revenues ($M),38888,Profits ($M),949.9,Assets ($M),30719,Total Stockholder Equity ($M),6134,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,15.5,Profit Ratios,ZF Friedrichshafen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38537,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-67,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74704,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-103.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",95400,194,Fortune 500,74,World’s Most Admired Companies,47,,,D. James Umpleby III,Construction and Farm Machinery,194,264,CEO,D. James Umpleby III,Sector,Industrials,Industry,Construction and Farm Machinery,HQ Location,"Peoria, IL",Website,http://www.caterpillar.com,Years on Global 500 List,23,Employees,95400,Company Information,Revenues ($M),38537,Profits ($M),-67,Assets ($M),74704,Total Stockholder Equity ($M),13137,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-0.5,Profit Ratios,Caterpillar,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1006,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),125592,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,95.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",50000,249,Fortune 500,75,World’s Most Admired Companies,100000,,,David H. Long,Insurance: Property and Casualty (Stock),249,265,CEO,David H. Long,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Boston, MA",Website,http://www.libertymutual.com,Years on Global 500 List,23,Employees,50000,Company Information,Revenues ($M),38308,Profits ($M),1006,Assets ($M),125592,Total Stockholder Equity ($M),20366,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,4.9,Profit Ratios,Liberty Mutual Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38286,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),855.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),315387,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-40.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",30259,351,,,,,,,Paul Desmarais Jr.,"Insurance: Life, Health (stock)",351,266,CEO,Paul Desmarais Jr.,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Montreal, Quebec, Canada",Website,http://www.powercorporation.com,Years on Global 500 List,19,Employees,30259,Company Information,Revenues ($M),38286,Profits ($M),855.5,Assets ($M),315387,Total Stockholder Equity ($M),10339,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8.3,Profit Ratios,Power Corp. of Canada,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37949,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5979,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),814949,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",55311,263,Fortune 500,76,World’s Most Admired Companies,100000,,,James P. Gorman,Banks: Commercial and Savings,263,267,CEO,James P. Gorman,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.morganstanley.com,Years on Global 500 List,20,Employees,55311,Company Information,Revenues ($M),37949,Profits ($M),5979,Assets ($M),814949,Total Stockholder Equity ($M),76050,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.8,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,7.9,Profit Ratios,Morgan Stanley,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37880,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),821.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),14838,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",61400,,,,,,,,Chen Jianhua,Textiles,0,268,CEO,Chen Jianhua,Sector,Industrials,Industry,Textiles,HQ Location,"Suzhou City, China",Website,http://www.hengli.com,Years on Global 500 List,1,Employees,61400,Company Information,Revenues ($M),37880,Profits ($M),821.7,Assets ($M),14838,Total Stockholder Equity ($M),5498,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,5.5,Profits as % of Stockholder Equity,14.9,Profit Ratios,Hengli Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37813,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2082.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29899,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,200.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",21157,216,,,,,,,Alistair Phillips-Davies,Utilities,216,269,CEO,Alistair Phillips-Davies,Sector,Energy,Industry,Utilities,HQ Location,"Perth, Britain",Website,http://www.sse.com,Years on Global 500 List,12,Employees,21157,Company Information,Revenues ($M),37813,Profits ($M),2082.9,Assets ($M),29899,Total Stockholder Equity ($M),7842,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7,Profits as % of Stockholder Equity,26.6,Profit Ratios,SSE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37788,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1273.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),271040,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",11737,258,Fortune 500,77,World’s Most Admired Companies,100000,,,Roger W. Crandall,"Insurance: Life, Health (Mutual)",258,270,CEO,Roger W. Crandall,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Springfield, MA",Website,http://www.massmutual.com,Years on Global 500 List,21,Employees,11737,Company Information,Revenues ($M),37788,Profits ($M),1273.5,Assets ($M),271040,Total Stockholder Equity ($M),15424,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,8.3,Profit Ratios,Massachusetts Mutual Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37712,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7398,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),860165,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",34400,252,Fortune 500,78,World’s Most Admired Companies,27,The 100 Best Companies to Work For,62,Lloyd C. Blankfein,Banks: Commercial and Savings,252,271,CEO,Lloyd C. Blankfein,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.gs.com,Years on Global 500 List,18,Employees,34400,Company Information,Revenues ($M),37712,Profits ($M),7398,Assets ($M),860165,Total Stockholder Equity ($M),86893,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.6,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,8.5,Profit Ratios,Goldman Sachs Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37674,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-868,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),63253,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-155.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",209000,,,,,,,,Alex A. Molinaroli,Industrial Machinery,0,272,CEO,Alex A. Molinaroli,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Cork, Ireland",Website,http://www.johnsoncontrols.com,Years on Global 500 List,13,Employees,209000,Company Information,Revenues ($M),37674,Profits ($M),-868,Assets ($M),63253,Total Stockholder Equity ($M),24118,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.3,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-3.6,Profit Ratios,Johnson Controls International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37642,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1230.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72985,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-90.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",99300,278,Change the World,1,,,,,Emma N. Walmsley,Pharmaceuticals,278,273,CEO,Emma N. Walmsley,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Brentford, Britain",Website,http://www.gsk.com,Years on Global 500 List,23,Employees,99300,Company Information,Revenues ($M),37642,Profits ($M),1230.9,Assets ($M),72985,Total Stockholder Equity ($M),1389,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,88.7,Profit Ratios,GlaxoSmithKline,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37543,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-85.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),144306,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-111.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",143691,217,,,,,,,Cao Peixi,Energy,217,274,CEO,Cao Peixi,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.chng.com.cn,Years on Global 500 List,9,Employees,143691,Company Information,Revenues ($M),37543,Profits ($M),-85.9,Assets ($M),144306,Total Stockholder Equity ($M),7512,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-1.1,Profit Ratios,China Huaneng Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37504,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),995,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79011,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",30992,225,Fortune 500,79,,,,,John W. McReynolds,Pipelines,225,275,CEO,John W. McReynolds,Sector,Energy,Industry,Pipelines,HQ Location,"Dallas, TX",Website,http://www.energytransfer.com,Years on Global 500 List,4,Employees,30992,Company Information,Revenues ($M),37504,Profits ($M),995,Assets ($M),79011,Total Stockholder Equity ($M),-1694,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,,Profit Ratios,Energy Transfer Equity,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37322,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1916.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),140911,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",202200,270,,,,,,,Ling Wen,"Mining, Crude-Oil Production",270,276,CEO,Ling Wen,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Beijing, China",Website,http://www.shenhuagroup.com.cn,Years on Global 500 List,8,Employees,202200,Company Information,Revenues ($M),37322,Profits ($M),1916.9,Assets ($M),140911,Total Stockholder Equity ($M),47962,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,4,Profit Ratios,Shenhua Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37240,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1085.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),105495,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1,"Total employees (full-time equivalent, if available) at fiscal year-end.",39887,311,,,,,,,Zhang Yuliang,Real estate,311,277,CEO,Zhang Yuliang,Sector,Financials,Industry,Real estate,HQ Location,"Shanghai, China",Website,http://www.ldjt.com.cn,Years on Global 500 List,6,Employees,39887,Company Information,Revenues ($M),37240,Profits ($M),1085.2,Assets ($M),105495,Total Stockholder Equity ($M),8333,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,1,Profits as % of Stockholder Equity,13,Profit Ratios,Greenland Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37105,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1492.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),523194,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",12997,291,Fortune 500,80,World’s Most Admired Companies,100000,,,Roger W. Ferguson Jr.,"Insurance: Life, Health (Mutual)",291,278,CEO,Roger W. Ferguson Jr.,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"New York, NY",Website,http://www.tiaa.org,Years on Global 500 List,20,Employees,12997,Company Information,Revenues ($M),37105,Profits ($M),1492.3,Assets ($M),523194,Total Stockholder Equity ($M),35583,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.2,Profit Ratios,TIAA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37051,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2503,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71523,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,39.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",430000,273,,,,,,,Ben Keswick,Motor Vehicles and Parts,273,279,CEO,Ben Keswick,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hong Kong, China",Website,http://www.jardines.com,Years on Global 500 List,18,Employees,430000,Company Information,Revenues ($M),37051,Profits ($M),2503,Assets ($M),71523,Total Stockholder Equity ($M),21800,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.5,Profit Ratios,Jardine Matheson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37047,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8901,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112180,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",136000,260,Fortune 500,81,,,,,Safra A. Catz,Computer Software,260,280,CEO,Safra A. Catz,Sector,Technology,Industry,Computer Software,HQ Location,"Redwood City, CA",Website,http://www.oracle.com,Years on Global 500 List,11,Employees,136000,Company Information,Revenues ($M),37047,Profits ($M),8901,Assets ($M),112180,Total Stockholder Equity ($M),47289,Key Financials (Last Fiscal Year),Profit as % of Revenues,24,Profits as % of Assets,7.9,Profits as % of Stockholder Equity,18.8,Profit Ratios,Oracle,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36992,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),830.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),35196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",117542,255,,,,,,,Florentino Perez Rodriguez,"Engineering, Construction",255,281,CEO,Florentino Perez Rodriguez,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Madrid, Spain",Website,http://www.grupoacs.com,Years on Global 500 List,13,Employees,117542,Company Information,Revenues ($M),36992,Profits ($M),830.5,Assets ($M),35196,Total Stockholder Equity ($M),3778,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,22,Profit Ratios,ACS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1577.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69669,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,154,"Total employees (full-time equivalent, if available) at fiscal year-end.",70900,308,,,,,,,Kuniharu Nakamura,Trading,308,282,CEO,Kuniharu Nakamura,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.sumitomocorp.co.jp,Years on Global 500 List,23,Employees,70900,Company Information,Revenues ($M),36888,Profits ($M),1577.1,Assets ($M),69669,Total Stockholder Equity ($M),21241,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,7.4,Profit Ratios,Sumitomo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36881,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1768,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22373,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,44.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",114000,235,Fortune 500,82,World’s Most Admired Companies,100000,,,Thomas P. Hayes,Food Production,235,283,CEO,Thomas P. Hayes,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Springdale, AR",Website,http://www.tysonfoods.com,Years on Global 500 List,16,Employees,114000,Company Information,Revenues ($M),36881,Profits ($M),1768,Assets ($M),22373,Total Stockholder Equity ($M),9608,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,7.9,Profits as % of Stockholder Equity,18.4,Profit Ratios,Tyson Foods,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36789,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-25.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2807.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1498612,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",119300,181,,,,,,,James E. Staley,Banks: Commercial and Savings,181,284,CEO,James E. Staley,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.barclays.com,Years on Global 500 List,23,Employees,119300,Company Information,Revenues ($M),36789,Profits ($M),2807.4,Assets ($M),1498612,Total Stockholder Equity ($M),80140,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.6,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.5,Profit Ratios,Barclays,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36617,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),203760,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",136739,305,,,,,,,Matteo Del Fante,"Insurance: Life, Health (stock)",305,285,CEO,Matteo Del Fante,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Rome, Italy",Website,http://www.posteitaliane.it,Years on Global 500 List,12,Employees,136739,Company Information,Revenues ($M),36617,Profits ($M),687.8,Assets ($M),203760,Total Stockholder Equity ($M),8578,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8,Profit Ratios,Poste Italiane,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36580,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2256.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27046,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",38278,220,,,,,,,Iain C. Conn,Utilities,220,286,CEO,Iain C. Conn,Sector,Energy,Industry,Utilities,HQ Location,"Windsor, Britain",Website,http://www.centrica.com,Years on Global 500 List,20,Employees,38278,Company Information,Revenues ($M),36580,Profits ($M),2256.7,Assets ($M),27046,Total Stockholder Equity ($M),3293,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,68.5,Profit Ratios,Centrica,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36556,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2263,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40140,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-69.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",88000,265,Fortune 500,83,World’s Most Admired Companies,100000,,,Oscar Munoz,Airlines,265,287,CEO,Oscar Munoz,Sector,Transportation,Industry,Airlines,HQ Location,"Chicago, IL",Website,http://www.unitedcontinentalholdings.com,Years on Global 500 List,22,Employees,88000,Company Information,Revenues ($M),36556,Profits ($M),2263,Assets ($M),40140,Total Stockholder Equity ($M),8659,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,26.1,Profit Ratios,United Continental Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36534,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1877,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108610,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",43275,283,Fortune 500,84,,,,,Thomas J. Wilson,Insurance: Property and Casualty (Stock),283,288,CEO,Thomas J. Wilson,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Northbrook, IL",Website,http://www.allstate.com,Years on Global 500 List,22,Employees,43275,Company Information,Revenues ($M),36534,Profits ($M),1877,Assets ($M),108610,Total Stockholder Equity ($M),20573,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,9.1,Profit Ratios,Allstate,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36487,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3147,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47233,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,121.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",27227,230,,,,,,,Elia Massa Manik,Petroleum Refining,230,289,CEO,Elia Massa Manik,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Jakarta, Indonesia",Website,http://www.pertamina.com,Years on Global 500 List,5,Employees,27227,Company Information,Revenues ($M),36487,Profits ($M),3147,Assets ($M),47233,Total Stockholder Equity ($M),21864,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.6,Profits as % of Assets,6.7,Profits as % of Stockholder Equity,14.4,Profit Ratios,Pertamina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36445,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2031,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22566,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",155450,306,,,,,,,Donald J. Walker,Motor Vehicles and Parts,306,290,CEO,Donald J. Walker,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Aurora, Ontario, Canada",Website,http://www.magna.com,Years on Global 500 List,17,Employees,155450,Company Information,Revenues ($M),36445,Profits ($M),2031,Assets ($M),22566,Total Stockholder Equity ($M),9768,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,9,Profits as % of Stockholder Equity,20.8,Profit Ratios,Magna International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36230,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3252.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),920291,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-49.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",59387,257,World’s Most Admired Companies,100000,,,,,Sergio P. Ermotti,Banks: Commercial and Savings,257,291,CEO,Sergio P. Ermotti,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Zurich, Switzerland",Website,http://www.ubs.com,Years on Global 500 List,23,Employees,59387,Company Information,Revenues ($M),36230,Profits ($M),3252.2,Assets ($M),920291,Total Stockholder Equity ($M),52777,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,6.2,Profit Ratios,UBS Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36225,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3440.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),764712,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",89126,224,,,,,,,Carlo Messina,Banks: Commercial and Savings,224,292,CEO,Carlo Messina,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Turin, Italy",Website,http://www.group.intesasanpaolo.com,Years on Global 500 List,19,Employees,89126,Company Information,Revenues ($M),36225,Profits ($M),3440.3,Assets ($M),764712,Total Stockholder Equity ($M),51583,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,6.7,Profit Ratios,Intesa Sanpaolo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36211,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),414.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28299,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,274,,,,,,,Galen G. Weston,Food and Drug Stores,274,293,CEO,Galen G. Weston,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Toronto, Ontario, Canada",Website,http://www.weston.ca,Years on Global 500 List,23,Employees,195000,Company Information,Revenues ($M),36211,Profits ($M),414.9,Assets ($M),28299,Total Stockholder Equity ($M),5790,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,7.2,Profit Ratios,George Weston,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36122,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),809.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49205,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",82728,307,,,,,,,Shunichi Miyanaga,Industrial Machinery,307,294,CEO,Shunichi Miyanaga,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Tokyo, Japan",Website,http://www.mhi.com,Years on Global 500 List,23,Employees,82728,Company Information,Revenues ($M),36122,Profits ($M),809.6,Assets ($M),49205,Total Stockholder Equity ($M),15074,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,5.4,Profit Ratios,Mitsubishi Heavy Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36114,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,43.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),185.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3717,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",328,423,,,,,,,Rajesh J. Mehta,Trading,423,295,CEO,Rajesh J. Mehta,Sector,Wholesalers,Industry,Trading,HQ Location,"Bengaluru, India",Website,http://www.rajeshindia.com,Years on Global 500 List,2,Employees,328,Company Information,Revenues ($M),36114,Profits ($M),185.8,Assets ($M),3717,Total Stockholder Equity ($M),868,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,5,Profits as % of Stockholder Equity,21.4,Profit Ratios,Rajesh Exports,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35891,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),599.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13776,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-20.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",196251,259,,,,,,,Syh-Jang Liao,"Computers, Office Equipment",259,296,CEO,Syh-Jang Liao,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taipei, Taiwan",Website,http://www.pegatroncorp.com,Years on Global 500 List,5,Employees,196251,Company Information,Revenues ($M),35891,Profits ($M),599.6,Assets ($M),13776,Total Stockholder Equity ($M),4601,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,13,Profit Ratios,Pegatron,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35767,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2064.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),362739,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",41872,284,,,,,,,Akio Negishi,"Insurance: Life, Health (Mutual)",284,297,CEO,Akio Negishi,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Tokyo, Japan",Website,http://www.meijiyasuda.co.jp,Years on Global 500 List,23,Employees,41872,Company Information,Revenues ($M),35767,Profits ($M),2064.8,Assets ($M),362739,Total Stockholder Equity ($M),12074,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,17.1,Profit Ratios,Meiji Yasuda Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35464,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1939,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61118,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-345.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",87736,240,,,,,,,Soren Skou,Shipping,240,298,CEO,Soren Skou,Sector,Transportation,Industry,Shipping,HQ Location,"Copenhagen, Denmark",Website,http://www.maersk.com,Years on Global 500 List,14,Employees,87736,Company Information,Revenues ($M),35464,Profits ($M),-1939,Assets ($M),61118,Total Stockholder Equity ($M),31258,Key Financials (Last Fiscal Year),Profit as % of Revenues,-5.5,Profits as % of Assets,-3.2,Profits as % of Stockholder Equity,-6.2,Profit Ratios,Maersk Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35421,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4757.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84489,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",35000,247,,,,,,,Yousef Abdullah Al-Benyan,Chemicals,247,299,CEO,Yousef Abdullah Al-Benyan,Sector,Chemicals,Industry,Chemicals,HQ Location,"Riyadh, Saudi Arabia",Website,http://www.sabic.com,Years on Global 500 List,13,Employees,35000,Company Information,Revenues ($M),35421,Profits ($M),4757.1,Assets ($M),84489,Total Stockholder Equity ($M),43471,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.4,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,10.9,Profit Ratios,SABIC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35277,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),809.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36758,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,81.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",117997,280,,,,,,,Martin Bouygues,"Engineering, Construction",280,300,CEO,Martin Bouygues,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Paris, France",Website,http://www.bouygues.com,Years on Global 500 List,23,Employees,117997,Company Information,Revenues ($M),35277,Profits ($M),809.5,Assets ($M),36758,Total Stockholder Equity ($M),8585,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,9.4,Profit Ratios,Bouygues,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35269,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1535.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),43924,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14,"Total employees (full-time equivalent, if available) at fiscal year-end.",89477,272,World’s Most Admired Companies,100000,,,,,Martin Lundstedt,Motor Vehicles and Parts,272,301,CEO,Martin Lundstedt,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Goteborg, Sweden",Website,http://www.volvogroup.com,Years on Global 500 List,23,Employees,89477,Company Information,Revenues ($M),35269,Profits ($M),1535.8,Assets ($M),43924,Total Stockholder Equity ($M),10577,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,14.5,Profit Ratios,Volvo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35101,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1003,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,23.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",20039,289,,,,,,,Herbert K. Haas,Insurance: Property and Casualty (Stock),289,302,CEO,Herbert K. Haas,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Hanover, Germany",Website,http://www.talanx.com,Years on Global 500 List,4,Employees,20039,Company Information,Revenues ($M),35101,Profits ($M),1003,Assets ($M),165124,Total Stockholder Equity ($M),9574,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,10.5,Profit Ratios,Talanx,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35011,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1964,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36593,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",107276,285,World’s Most Admired Companies,100000,,,,,Carsten Spohr,Airlines,285,303,CEO,Carsten Spohr,Sector,Transportation,Industry,Airlines,HQ Location,"Cologne, Germany",Website,http://www.lufthansagroup.com,Years on Global 500 List,23,Employees,107276,Company Information,Revenues ($M),35011,Profits ($M),1964,Assets ($M),36593,Total Stockholder Equity ($M),7446,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,26.4,Profit Ratios,Lufthansa Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34904,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7839.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),880724,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75510,297,,,,,,,David I. McKay,Banks: Commercial and Savings,297,304,CEO,David I. McKay,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.rbc.com,Years on Global 500 List,23,Employees,75510,Company Information,Revenues ($M),34904,Profits ($M),7839.6,Assets ($M),880724,Total Stockholder Equity ($M),52994,Key Financials (Last Fiscal Year),Profit as % of Revenues,22.5,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,14.8,Profit Ratios,Royal Bank of Canada,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34798,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4111.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,34.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",384000,312,World’s Most Admired Companies,41,The 100 Best Companies to Work For,88,Change the World,29,Pierre Nanterme,Information Technology Services,312,305,CEO,Pierre Nanterme,Sector,Technology,Industry,Information Technology Services,HQ Location,"Dublin, Ireland",Website,http://www.accenture.com,Years on Global 500 List,16,Employees,384000,Company Information,Revenues ($M),34798,Profits ($M),4111.9,Assets ($M),20609,Total Stockholder Equity ($M),7555,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,20,Profits as % of Stockholder Equity,54.4,Profit Ratios,Accenture,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34485,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1919.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),68392,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",24396,250,,,,,,,Josu Jon Imaz San Miguel,Petroleum Refining,250,306,CEO,Josu Jon Imaz San Miguel,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Madrid, Spain",Website,http://www.repsol.com,Years on Global 500 List,23,Employees,24396,Company Information,Revenues ($M),34485,Profits ($M),1919.7,Assets ($M),68392,Total Stockholder Equity ($M),32553,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,5.9,Profit Ratios,Repsol,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34458,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3164.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),119555,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",58280,356,,,,,,,Yu Liang,Real estate,356,307,CEO,Yu Liang,Sector,Financials,Industry,Real estate,HQ Location,"Shenzhen, China",Website,http://www.vanke.com,Years on Global 500 List,2,Employees,58280,Company Information,Revenues ($M),34458,Profits ($M),3164.5,Assets ($M),119555,Total Stockholder Equity ($M),16324,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,19.4,Profit Ratios,China Vanke,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34274,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2025.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17464,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",191000,317,Fortune 500,85,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,21,Randall T. Jones Sr.,Food and Drug Stores,317,308,CEO,Randall T. Jones Sr.,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Lakeland, FL",Website,http://www.publix.com,Years on Global 500 List,23,Employees,191000,Company Information,Revenues ($M),34274,Profits ($M),2025.7,Assets ($M),17464,Total Stockholder Equity ($M),13473,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.9,Profits as % of Assets,11.6,Profits as % of Stockholder Equity,15,Profit Ratios,Publix Super Markets,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34193,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),356,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),6921,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",351500,321,,,,,,,Markus Mosa,Wholesalers: Food and Grocery,321,309,CEO,Markus Mosa,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Hamburg, Germany",Website,http://www.edeka-verbund.de,Years on Global 500 List,19,Employees,351500,Company Information,Revenues ($M),34193,Profits ($M),356,Assets ($M),6921,Total Stockholder Equity ($M),1729,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,20.6,Profit Ratios,Edeka Zentrale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34149,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),490.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24674,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-30.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",118700,288,,,,,,,Michael Coupe,Food and Drug Stores,288,310,CEO,Michael Coupe,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"London, Britain",Website,http://www.j-sainsbury.co.uk,Years on Global 500 List,23,Employees,118700,Company Information,Revenues ($M),34149,Profits ($M),490.9,Assets ($M),24674,Total Stockholder Equity ($M),7971,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2,Profits as % of Stockholder Equity,6.2,Profit Ratios,J. Sainsbury,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34145,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1193.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12304,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,27.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",105000,301,,,,,,,Brian P. Hannasch,Food and Drug Stores,301,311,CEO,Brian P. Hannasch,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Laval, Quebec, Canada",Website,http://www.couche-tard.com,Years on Global 500 List,4,Employees,105000,Company Information,Revenues ($M),34145,Profits ($M),1193.5,Assets ($M),12304,Total Stockholder Equity ($M),5044,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.5,Profits as % of Assets,9.7,Profits as % of Stockholder Equity,23.7,Profit Ratios,Alimentation Couche-Tard,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33930,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),421,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44181,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22,"Total employees (full-time equivalent, if available) at fiscal year-end.",169173,309,,,,,,,Wang Jianping,"Engineering, Construction",309,312,CEO,Wang Jianping,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.ceec.net.cn,Years on Global 500 List,4,Employees,169173,Company Information,Revenues ($M),33930,Profits ($M),421,Assets ($M),44181,Total Stockholder Equity ($M),5140,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,1,Profits as % of Stockholder Equity,8.2,Profit Ratios,China Energy Engineering Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33881,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),469.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40783,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",30767,237,,,,,,,Hwan-Goo Kang,Industrial Machinery,237,313,CEO,Hwan-Goo Kang,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Ulsan, South Korea",Website,http://www.hyundaiheavy.com,Years on Global 500 List,11,Employees,30767,Company Information,Revenues ($M),33881,Profits ($M),469.8,Assets ($M),40783,Total Stockholder Equity ($M),13197,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,3.6,Profit Ratios,Hyundai Heavy Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33828,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1899,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39499,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",132300,286,World’s Most Admired Companies,100000,,,,,Ulrich Spiesshofer,Industrial Machinery,286,314,CEO,Ulrich Spiesshofer,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Zurich, Switzerland",Website,http://www.abb.com,Years on Global 500 List,23,Employees,132300,Company Information,Revenues ($M),33828,Profits ($M),1899,Assets ($M),39499,Total Stockholder Equity ($M),13395,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,14.2,Profit Ratios,ABB,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33823,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5408,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158893,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",56400,302,Fortune 500,86,World’s Most Admired Companies,17,The 100 Best Companies to Work For,69,Kenneth I. Chenault,Diversified Financials,302,315,CEO,Kenneth I. Chenault,Sector,Financials,Industry,Diversified Financials,HQ Location,"New York, NY",Website,http://www.americanexpress.com,Years on Global 500 List,23,Employees,56400,Company Information,Revenues ($M),33823,Profits ($M),5408,Assets ($M),158893,Total Stockholder Equity ($M),20501,Key Financials (Last Fiscal Year),Profit as % of Revenues,16,Profits as % of Assets,3.4,Profits as % of Stockholder Equity,26.4,Profit Ratios,American Express,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33781,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4617,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89263,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",51029,296,,,,,,,Jean-Sebastien Jacques,"Mining, Crude-Oil Production",296,316,CEO,Jean-Sebastien Jacques,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"London, Britain",Website,http://www.riotinto.com,Years on Global 500 List,12,Employees,51029,Company Information,Revenues ($M),33781,Profits ($M),4617,Assets ($M),89263,Total Stockholder Equity ($M),39290,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,11.8,Profit Ratios,Rio Tinto Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33747,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),565.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39993,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",193718,319,,,,,,,Guillaume Pepy,Railroads,319,317,CEO,Guillaume Pepy,Sector,Transportation,Industry,Railroads,HQ Location,"St. Denis, France",Website,http://www.sncf.com,Years on Global 500 List,23,Employees,193718,Company Information,Revenues ($M),33747,Profits ($M),565.1,Assets ($M),39993,Total Stockholder Equity ($M),4696,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,12,Profit Ratios,SNCF Mobilites,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33739,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1700.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",183061,266,,,,,,,Liu Hualong,Industrial Machinery,266,318,CEO,Liu Hualong,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.crrcgc.cc,Years on Global 500 List,2,Employees,183061,Company Information,Revenues ($M),33739,Profits ($M),1700.3,Assets ($M),48681,Total Stockholder Equity ($M),15088,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.3,Profit Ratios,CRRC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33475,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,47.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4252.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-72.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",290000,473,,,,,,,"Li Tzar Kuoi, Victor",Specialty Retailers,473,319,CEO,"Li Tzar Kuoi, Victor",Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Hong Kong, China",Website,http://www.ckh.com.hk,Years on Global 500 List,2,Employees,290000,Company Information,Revenues ($M),33475,Profits ($M),4252.4,Assets ($M),130721,Total Stockholder Equity ($M),54777,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.7,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,7.8,Profit Ratios,CK Hutchison Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33366,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-153.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",127298,267,,,,,,,Yang GuoZhan,"Mining, Crude-Oil Production",267,320,CEO,Yang GuoZhan,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xingtai, China",Website,http://www.jznyjt.com,Years on Global 500 List,7,Employees,127298,Company Information,Revenues ($M),33366,Profits ($M),-153.9,Assets ($M),30819,Total Stockholder Equity ($M),2042,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.5,Profits as % of Assets,-0.5,Profits as % of Stockholder Equity,-7.5,Profit Ratios,Jizhong Energy Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33184,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2298.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12884,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",235000,338,Fortune 500,87,World’s Most Admired Companies,100000,,,Ernie L. Herrman,Specialty Retailers,338,321,CEO,Ernie L. Herrman,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Framingham, MA",Website,http://www.tjx.com,Years on Global 500 List,16,Employees,235000,Company Information,Revenues ($M),33184,Profits ($M),2298.2,Assets ($M),12884,Total Stockholder Equity ($M),4511,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,17.8,Profits as % of Stockholder Equity,51,Profit Ratios,TJX,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33174,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),448.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18705,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",59429,318,,,,,,,Liu Mingzhong,Metals,318,322,CEO,Liu Mingzhong,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.xxcig.com,Years on Global 500 List,6,Employees,59429,Company Information,Revenues ($M),33174,Profits ($M),448.2,Assets ($M),18705,Total Stockholder Equity ($M),4585,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,Xinxing Cathay International Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32972,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2617.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34541,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",29499,310,,,,,,,Young-Deuk Lim,Motor Vehicles and Parts,310,323,CEO,Young-Deuk Lim,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://www.mobis.co.kr,Years on Global 500 List,6,Employees,29499,Company Information,Revenues ($M),32972,Profits ($M),2617.8,Assets ($M),34541,Total Stockholder Equity ($M),23596,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,7.6,Profits as % of Stockholder Equity,11.1,Profit Ratios,Hyundai Mobis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32879,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1168.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,39.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",99389,393,,,,,,,Yasumori Ihara,Motor Vehicles and Parts,393,324,CEO,Yasumori Ihara,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Kariya, Japan",Website,http://www.aisin.com,Years on Global 500 List,16,Employees,99389,Company Information,Revenues ($M),32879,Profits ($M),1168.9,Assets ($M),29964,Total Stockholder Equity ($M),11098,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.5,Profit Ratios,Aisin Seiki,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32845,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11594,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-97.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",70430,340,Fortune 500,91,,,,,John T. Standley,Food and Drug Stores,340,325,CEO,John T. Standley,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Camp Hill, PA",Website,http://www.riteaid.com,Years on Global 500 List,19,Employees,70430,Company Information,Revenues ($M),32845,Profits ($M),4.1,Assets ($M),11594,Total Stockholder Equity ($M),614,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.7,Profit Ratios,Rite Aid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32652,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-22.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),45552,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",134134,325,,,,,,,He Jiuchang,"Mining, Crude-Oil Production",325,326,CEO,He Jiuchang,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xi'an, China",Website,http://www.sxycpc.com,Years on Global 500 List,5,Employees,134134,Company Information,Revenues ($M),32652,Profits ($M),-22.6,Assets ($M),45552,Total Stockholder Equity ($M),14063,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.2,Profit Ratios,Shaanxi Yanchang Petroleum (Group),, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32636,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1623.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),537278,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",28264,334,,,,,,,Wolfgang Kirsch,Banks: Commercial and Savings,334,327,CEO,Wolfgang Kirsch,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Frankfurt, Germany",Website,http://www.dzbank.com,Years on Global 500 List,23,Employees,28264,Company Information,Revenues ($M),32636,Profits ($M),1623.4,Assets ($M),537278,Total Stockholder Equity ($M),21160,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,DZ Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32539,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-13038,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),906489,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-793.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",117659,300,,,,,,,Jean Pierre Mustier,Banks: Commercial and Savings,300,328,CEO,Jean Pierre Mustier,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Milan, Italy",Website,http://www.unicreditgroup.eu,Years on Global 500 List,22,Employees,117659,Company Information,Revenues ($M),32539,Profits ($M),-13038,Assets ($M),906489,Total Stockholder Equity ($M),41484,Key Financials (Last Fiscal Year),Profit as % of Revenues,-40.1,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-31.4,Profit Ratios,UniCredit Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32461,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1877.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),627701,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",61400,313,,,,,,,Tang Shuangning,Banks: Commercial and Savings,313,329,CEO,Tang Shuangning,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.ebchina.com,Years on Global 500 List,3,Employees,61400,Company Information,Revenues ($M),32461,Profits ($M),1877.8,Assets ($M),627701,Total Stockholder Equity ($M),15661,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,12,Profit Ratios,China Everbright Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32421,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1861.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31917,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,115.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",60539,402,,,,,,,Takeo Higuchi,"Engineering, Construction",402,330,CEO,Takeo Higuchi,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Osaka, Japan",Website,http://www.daiwahouse.co.jp,Years on Global 500 List,13,Employees,60539,Company Information,Revenues ($M),32421,Profits ($M),1861.5,Assets ($M),31917,Total Stockholder Equity ($M),10761,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,5.8,Profits as % of Stockholder Equity,17.3,Profit Ratios,Daiwa House Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32376,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3760,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",70700,343,Fortune 500,88,World’s Most Admired Companies,12,Change the World,6,Mark G. Parker,Apparel,343,331,CEO,Mark G. Parker,Sector,Apparel,Industry,Apparel,HQ Location,"Beaverton, OR",Website,http://www.nike.com,Years on Global 500 List,11,Employees,70700,Company Information,Revenues ($M),32376,Profits ($M),3760,Assets ($M),21396,Total Stockholder Equity ($M),12258,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.6,Profits as % of Assets,17.6,Profits as % of Stockholder Equity,30.7,Profit Ratios,Nike,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2991.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112536,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",28389,295,,,,,,,Jose Ignacio Sanchez Galan,Utilities,295,332,CEO,Jose Ignacio Sanchez Galan,Sector,Energy,Industry,Utilities,HQ Location,"Bilbao, Spain",Website,http://www.iberdrola.com,Years on Global 500 List,13,Employees,28389,Company Information,Revenues ($M),32308,Profits ($M),2991.3,Assets ($M),112536,Total Stockholder Equity ($M),38695,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.3,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,7.7,Profit Ratios,Iberdrola,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32287,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6712.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),694565,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",45129,269,,,,,,,Ian M. Narev,Banks: Commercial and Savings,269,333,CEO,Ian M. Narev,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sydney, Australia",Website,http://www.commbank.com.au,Years on Global 500 List,13,Employees,45129,Company Information,Revenues ($M),32287,Profits ($M),6712.9,Assets ($M),694565,Total Stockholder Equity ($M),44816,Key Financials (Last Fiscal Year),Profit as % of Revenues,20.8,Profits as % of Assets,1,Profits as % of Stockholder Equity,15,Profit Ratios,Commonwealth Bank of Australia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32237,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),502,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39142,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",115390,293,,,,,,,Ren Hongbin,Industrial Machinery,293,334,CEO,Ren Hongbin,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.sinomach.com.cn,Years on Global 500 List,7,Employees,115390,Company Information,Revenues ($M),32237,Profits ($M),502,Assets ($M),39142,Total Stockholder Equity ($M),8930,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,5.6,Profit Ratios,Sinomach,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32161,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1761.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48984,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",232873,341,,,,,,,Stephan Sturm,Health Care: Medical Facilities,341,335,CEO,Stephan Sturm,Sector,Health Care,Industry,Health Care: Medical Facilities,HQ Location,"Bad Homburg, Germany",Website,http://www.fresenius.com,Years on Global 500 List,8,Employees,232873,Company Information,Revenues ($M),32161,Profits ($M),1761.6,Assets ($M),48984,Total Stockholder Equity ($M),13186,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,Fresenius,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32094,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1996.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),55721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",170357,344,,,,,,,Lei Fanpei,Aerospace and Defense,344,336,CEO,Lei Fanpei,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.spacechina.com,Years on Global 500 List,3,Employees,170357,Company Information,Revenues ($M),32094,Profits ($M),1996.2,Assets ($M),55721,Total Stockholder Equity ($M),21440,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,9.3,Profit Ratios,China Aerospace Science & Technology,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31926,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-254.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64151,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",123559,347,,,,,,,Yang Zhaoqian,"Mining, Crude-Oil Production",347,337,CEO,Yang Zhaoqian,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xi'an, China",Website,http://www.shccig.com,Years on Global 500 List,3,Employees,123559,Company Information,Revenues ($M),31926,Profits ($M),-254.4,Assets ($M),64151,Total Stockholder Equity ($M),5769,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.8,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.4,Profit Ratios,Shaanxi Coal & Chemical Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31828,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2368.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),194384,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",89250,496,,,,,,,Hui Kayan,Real estate,496,338,CEO,Hui Kayan,Sector,Financials,Industry,Real estate,HQ Location,"Guangzhou, China",Website,http://www.evergrande.com,Years on Global 500 List,2,Employees,89250,Company Information,Revenues ($M),31828,Profits ($M),2368.8,Assets ($M),194384,Total Stockholder Equity ($M),22618,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,10.5,Profit Ratios,China Evergrande Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31680,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),20.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16108,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",25460,328,,,,,,,Li Baomin,"Mining, Crude-Oil Production",328,339,CEO,Li Baomin,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Guixi, China",Website,http://www.jxcc.com,Years on Global 500 List,5,Employees,25460,Company Information,Revenues ($M),31680,Profits ($M),20.4,Assets ($M),16108,Total Stockholder Equity ($M),2967,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.7,Profit Ratios,Jiangxi Copper,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31559,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,16.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1535.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),107092,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",47430,388,,,,,,,Kengo Sakurada,Insurance: Property and Casualty (Stock),388,340,CEO,Kengo Sakurada,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.sompo-hd.com,Years on Global 500 List,21,Employees,47430,Company Information,Revenues ($M),31559,Profits ($M),1535.7,Assets ($M),107092,Total Stockholder Equity ($M),8424,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,18.2,Profit Ratios,Sompo Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31508,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),744.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),95657,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",76425,401,,,,,,,Zhang Zhengao,Real estate,401,341,CEO,Zhang Zhengao,Sector,Financials,Industry,Real estate,HQ Location,"Beijing, China",Website,http://www.poly.com.cn,Years on Global 500 List,3,Employees,76425,Company Information,Revenues ($M),31508,Profits ($M),744.1,Assets ($M),95657,Total Stockholder Equity ($M),7676,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,9.7,Profit Ratios,China Poly Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31469,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,65.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4135,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),159786,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,45.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",31000,,,,,,,,Evan G. Greenberg,Insurance: Property and Casualty (Stock),0,342,CEO,Evan G. Greenberg,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.chubb.com,Years on Global 500 List,1,Employees,31000,Company Information,Revenues ($M),31469,Profits ($M),4135,Assets ($M),159786,Total Stockholder Equity ($M),48275,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.1,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,8.6,Profit Ratios,Chubb,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31430,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,19.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1265.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29749,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,341.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60712,410,,,,,,,Li Shufu,Motor Vehicles and Parts,410,343,CEO,Li Shufu,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hangzhou, China",Website,http://www.geely.com,Years on Global 500 List,6,Employees,60712,Company Information,Revenues ($M),31430,Profits ($M),1265.7,Assets ($M),29749,Total Stockholder Equity ($M),5896,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,21.5,Profit Ratios,Zhejiang Geely Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31360,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1134,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),114904,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-50,"Total employees (full-time equivalent, if available) at fiscal year-end.",34396,355,Fortune 500,89,World’s Most Admired Companies,100000,,,Christopher M. Crane,Utilities,355,344,CEO,Christopher M. Crane,Sector,Energy,Industry,Utilities,HQ Location,"Chicago, IL",Website,http://www.exeloncorp.com,Years on Global 500 List,14,Employees,34396,Company Information,Revenues ($M),31360,Profits ($M),1134,Assets ($M),114904,Total Stockholder Equity ($M),25837,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,4.4,Profit Ratios,Exelon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31353,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2955,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32872,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",98800,330,Fortune 500,90,World’s Most Admired Companies,100000,,,Phebe N. Novakovic,Aerospace and Defense,330,345,CEO,Phebe N. Novakovic,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Falls Church, VA",Website,http://www.generaldynamics.com,Years on Global 500 List,17,Employees,98800,Company Information,Revenues ($M),31353,Profits ($M),2955,Assets ($M),32872,Total Stockholder Equity ($M),10976,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.4,Profits as % of Assets,9,Profits as % of Stockholder Equity,26.9,Profit Ratios,General Dynamics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31333,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2484.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-36.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",106400,369,,,,,,,Gavin E. Patterson,Telecommunications,369,346,CEO,Gavin E. Patterson,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"London, Britain",Website,http://www.btplc.com,Years on Global 500 List,23,Employees,106400,Company Information,Revenues ($M),31333,Profits ($M),2484.6,Assets ($M),52972,Total Stockholder Equity ($M),10420,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,23.8,Profit Ratios,BT Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31271,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1385,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44062,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",197673,332,,,,,,,Fujio Mitarai,"Computers, Office Equipment",332,347,CEO,Fujio Mitarai,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Tokyo, Japan",Website,http://www.canon.com,Years on Global 500 List,23,Employees,197673,Company Information,Revenues ($M),31271,Profits ($M),1385,Assets ($M),44062,Total Stockholder Equity ($M),23865,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,5.8,Profit Ratios,Canon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31185,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),324.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11018,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,47.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",18150,359,,,,,,,Wang Tingge,Trading,359,348,CEO,Wang Tingge,Sector,Wholesalers,Industry,Trading,HQ Location,"Hangzhou, China",Website,http://www.wuchanzhongda.cn,Years on Global 500 List,7,Employees,18150,Company Information,Revenues ($M),31185,Profits ($M),324.3,Assets ($M),11018,Total Stockholder Equity ($M),2900,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,11.2,Profit Ratios,Wuchan Zhongda Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31158,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1442.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40064,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,237.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",69291,324,,,,,,,Hitoshi Ochi,Chemicals,324,349,CEO,Hitoshi Ochi,Sector,Chemicals,Industry,Chemicals,HQ Location,"Tokyo, Japan",Website,http://www.mitsubishichem-hd.co.jp,Years on Global 500 List,23,Employees,69291,Company Information,Revenues ($M),31158,Profits ($M),1442.1,Assets ($M),40064,Total Stockholder Equity ($M),9796,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,14.7,Profit Ratios,Mitsubishi Chemical Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30912,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-40.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6385,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),118953,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-434.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",26827,168,,,,,,,Andrew Mackenzie,"Mining, Crude-Oil Production",168,350,CEO,Andrew Mackenzie,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Melbourne, Australia",Website,http://www.bhpbilliton.com,Years on Global 500 List,23,Employees,26827,Company Information,Revenues ($M),30912,Profits ($M),-6385,Assets ($M),118953,Total Stockholder Equity ($M),54290,Key Financials (Last Fiscal Year),Profit as % of Revenues,-20.7,Profits as % of Assets,-5.4,Profits as % of Stockholder Equity,-11.8,Profit Ratios,BHP Billiton,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30855,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6646.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),878268,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",81233,350,,,,,,,Bharat B. Masrani,Banks: Commercial and Savings,350,351,CEO,Bharat B. Masrani,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.td.com,Years on Global 500 List,18,Employees,81233,Company Information,Revenues ($M),30855,Profits ($M),6646.1,Assets ($M),878268,Total Stockholder Equity ($M),54148,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.5,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,12.3,Profit Ratios,Toronto-Dominion Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30696,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2605.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24794,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",36668,395,,,,,,,Yasuyuki Yoshinaga,Motor Vehicles and Parts,395,352,CEO,Yasuyuki Yoshinaga,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.subaru.co.jp,Years on Global 500 List,15,Employees,36668,Company Information,Revenues ($M),30696,Profits ($M),2605.8,Assets ($M),24794,Total Stockholder Equity ($M),13285,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.5,Profits as % of Assets,10.5,Profits as % of Stockholder Equity,19.6,Profit Ratios,Subaru,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30678,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2441.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31901,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",143616,333,,,,,,,Masaaki Tsuya,Motor Vehicles and Parts,333,353,CEO,Masaaki Tsuya,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.bridgestone.com,Years on Global 500 List,23,Employees,143616,Company Information,Revenues ($M),30678,Profits ($M),2441.3,Assets ($M),31901,Total Stockholder Equity ($M),20268,Key Financials (Last Fiscal Year),Profit as % of Revenues,8,Profits as % of Assets,7.7,Profits as % of Stockholder Equity,12,Profit Ratios,Bridgestone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30588,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2750.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),806950,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",47170,292,,,,,,,Tidjane Thiam,Banks: Commercial and Savings,292,354,CEO,Tidjane Thiam,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Zurich, Switzerland",Website,http://www.credit-suisse.com,Years on Global 500 List,23,Employees,47170,Company Information,Revenues ($M),30588,Profits ($M),-2750.7,Assets ($M),806950,Total Stockholder Equity ($M),41237,Key Financials (Last Fiscal Year),Profit as % of Revenues,-9,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-6.7,Profit Ratios,Credit Suisse Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30582,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1443.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36999,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",148682,381,,,,,,,Gao Hongwei,Aerospace and Defense,381,355,CEO,Gao Hongwei,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.casic.com.cn,Years on Global 500 List,2,Employees,148682,Company Information,Revenues ($M),30582,Profits ($M),1443.7,Assets ($M),36999,Total Stockholder Equity ($M),13654,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.6,Profit Ratios,China Aerospace Science & Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30539,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),627,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38920,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,123.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60439,371,,,,,,,Eiji Hayashida,Metals,371,356,CEO,Eiji Hayashida,Sector,Materials,Industry,Metals,HQ Location,"Tokyo, Japan",Website,http://www.jfe-holdings.co.jp,Years on Global 500 List,15,Employees,60439,Company Information,Revenues ($M),30539,Profits ($M),627,Assets ($M),38920,Total Stockholder Equity ($M),15632,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,4,Profit Ratios,JFE Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30390,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,13.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5570.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1799736,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",59179,399,,,,,,,Yasuhiro Sato,Banks: Commercial and Savings,399,357,CEO,Yasuhiro Sato,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.mizuho-fg.co.jp,Years on Global 500 List,17,Employees,59179,Company Information,Revenues ($M),30390,Profits ($M),5570.1,Assets ($M),1799736,Total Stockholder Equity ($M),62843,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8.9,Profit Ratios,Mizuho Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30390,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13501,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56977,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",9000,316,Fortune 500,92,World’s Most Admired Companies,100000,100 Fastest-Growing Companies,17,John F. Milligan,Pharmaceuticals,316,358,CEO,John F. Milligan,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Foster City, CA",Website,http://www.gilead.com,Years on Global 500 List,3,Employees,9000,Company Information,Revenues ($M),30390,Profits ($M),13501,Assets ($M),56977,Total Stockholder Equity ($M),18887,Key Financials (Last Fiscal Year),Profit as % of Revenues,44.4,Profits as % of Assets,23.7,Profits as % of Stockholder Equity,71.5,Profit Ratios,Gilead Sciences,Change the World,4 Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30347,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),424.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17318,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",12157,299,Fortune 500,93,,,,,Jay D. Debertin,Food Production,299,359,CEO,Jay D. Debertin,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Inver Grove Heights, MN",Website,http://www.chsinc.com,Years on Global 500 List,10,Employees,12157,Company Information,Revenues ($M),30347,Profits ($M),424.2,Assets ($M),17318,Total Stockholder Equity ($M),7852,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.4,Profit Ratios,CHS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30316,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1300.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16801,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",13395,358,,,,,,,D. Rajkumar,Petroleum Refining,358,360,CEO,D. Rajkumar,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.bharatpetroleum.in,Years on Global 500 List,14,Employees,13395,Company Information,Revenues ($M),30316,Profits ($M),1300.5,Assets ($M),16801,Total Stockholder Equity ($M),4747,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,7.7,Profits as % of Stockholder Equity,27.4,Profit Ratios,Bharat Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30109,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5050,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32906,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",91584,348,Fortune 500,94,World’s Most Admired Companies,23,,,Inge G. Thulin,Miscellaneous,348,361,CEO,Inge G. Thulin,Sector,Industrials,Industry,Miscellaneous,HQ Location,"St. Paul, MN",Website,http://www.3m.com,Years on Global 500 List,23,Employees,91584,Company Information,Revenues ($M),30109,Profits ($M),5050,Assets ($M),32906,Total Stockholder Equity ($M),10298,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.8,Profits as % of Assets,15.3,Profits as % of Stockholder Equity,49,Profit Ratios,3M,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30010,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),321.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36575,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,82.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",144659,329,,,,,,,Rui Xiaowu,"Electronics, Electrical Equip.",329,362,CEO,Rui Xiaowu,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Beijing, China",Website,http://www.cec.com.cn,Years on Global 500 List,7,Employees,144659,Company Information,Revenues ($M),30010,Profits ($M),321.9,Assets ($M),36575,Total Stockholder Equity ($M),4831,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,6.7,Profit Ratios,China Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29973,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1374.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33320,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,71.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",86778,411,,,,,,,Albert Manifold,"Building Materials, Glass",411,363,CEO,Albert Manifold,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Dublin, Ireland",Website,http://www.crh.com,Years on Global 500 List,14,Employees,86778,Company Information,Revenues ($M),29973,Profits ($M),1374.6,Assets ($M),33320,Total Stockholder Equity ($M),14654,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,9.4,Profit Ratios,CRH,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29877,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),367.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40773,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",68025,349,,,,,,,Wu Qiang,Industrial Machinery,349,364,CEO,Wu Qiang,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.cssc.net.cn,Years on Global 500 List,2,Employees,68025,Company Information,Revenues ($M),29877,Profits ($M),367.6,Assets ($M),40773,Total Stockholder Equity ($M),9164,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,4,Profit Ratios,China State Shipbuilding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29862,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),352.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23720,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,148.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",35133,314,,,,,,,Shen Wenrong,Metals,314,365,CEO,Shen Wenrong,Sector,Materials,Industry,Metals,HQ Location,"Zhangjiagang, China",Website,http://www.shasteel.cn,Years on Global 500 List,9,Employees,35133,Company Information,Revenues ($M),29862,Profits ($M),352.1,Assets ($M),23720,Total Stockholder Equity ($M),5584,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,6.3,Profit Ratios,Jiangsu Shagang Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29743,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,29.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1489,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),94792,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,30.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",106478,465,,,,,,,Xu Lirong,Shipping,465,366,CEO,Xu Lirong,Sector,Transportation,Industry,Shipping,HQ Location,"Shanghai, China",Website,http://www.coscoshipping.com,Years on Global 500 List,10,Employees,106478,Company Information,Revenues ($M),29743,Profits ($M),1489,Assets ($M),94792,Total Stockholder Equity ($M),24148,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,6.2,Profit Ratios,China COSCO Shipping,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29665,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),865.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22660,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",48849,373,,,,,,,Masamichi Kogai,Motor Vehicles and Parts,373,367,CEO,Masamichi Kogai,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hiroshima, Japan",Website,http://www.mazda.com,Years on Global 500 List,23,Employees,48849,Company Information,Revenues ($M),29665,Profits ($M),865.5,Assets ($M),22660,Total Stockholder Equity ($M),8455,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,10.2,Profit Ratios,Mazda Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29493,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),436.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),126068,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,50.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",127343,342,,,,,,,Wang Binghua,Energy,342,368,CEO,Wang Binghua,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.spic.com.cn,Years on Global 500 List,6,Employees,127343,Company Information,Revenues ($M),29493,Profits ($M),436.6,Assets ($M),126068,Total Stockholder Equity ($M),8477,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,5.2,Profit Ratios,State Power Investment,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29388,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10283.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),58535,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",46968,403,World’s Most Admired Companies,100000,,,,,Mark Liu,Semiconductors and Other Electronic Components,403,369,CEO,Mark Liu,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Hsinchu, Taiwan",Website,http://www.tsmc.com,Years on Global 500 List,3,Employees,46968,Company Information,Revenues ($M),29388,Profits ($M),10283.7,Assets ($M),58535,Total Stockholder Equity ($M),42174,Key Financials (Last Fiscal Year),Profit as % of Revenues,35,Profits as % of Assets,17.6,Profits as % of Stockholder Equity,24.4,Profit Ratios,Taiwan Semiconductor Manufacturing,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29363,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3982,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99014,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",73062,417,,,,,,,Fabio Schvartsman,"Mining, Crude-Oil Production",417,370,CEO,Fabio Schvartsman,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Rio de Janeiro, Brazil",Website,http://www.vale.com,Years on Global 500 List,11,Employees,73062,Company Information,Revenues ($M),29363,Profits ($M),3982,Assets ($M),99014,Total Stockholder Equity ($M),39042,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,4,Profits as % of Stockholder Equity,10.2,Profit Ratios,Vale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29318,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3926,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65966,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",25000,376,Fortune 500,95,World’s Most Admired Companies,100000,,,Jeffrey L. Bewkes,Entertainment,376,371,CEO,Jeffrey L. Bewkes,Sector,Media,Industry,Entertainment,HQ Location,"New York, NY",Website,http://www.timewarner.com,Years on Global 500 List,16,Employees,25000,Company Information,Revenues ($M),29318,Profits ($M),3926,Assets ($M),65966,Total Stockholder Equity ($M),24335,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.4,Profits as % of Assets,6,Profits as % of Stockholder Equity,16.1,Profit Ratios,Time Warner,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29299,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,16.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),39.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39887,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",179689,426,,,,,,,Li Weimin,"Mining, Crude-Oil Production",426,372,CEO,Li Weimin,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Jinan , China",Website,http://www.snjt.com,Years on Global 500 List,6,Employees,179689,Company Information,Revenues ($M),29299,Profits ($M),39.2,Assets ($M),39887,Total Stockholder Equity ($M),6575,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.6,Profit Ratios,Shandong Energy Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29252,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1476.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,51.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",62992,405,,,,,,,Toshihiro Suzuki,Motor Vehicles and Parts,405,373,CEO,Toshihiro Suzuki,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hamamatsu, Japan",Website,http://www.globalsuzuki.com,Years on Global 500 List,23,Employees,62992,Company Information,Revenues ($M),29252,Profits ($M),1476.2,Assets ($M),27969,Total Stockholder Equity ($M),10318,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,5.3,Profits as % of Stockholder Equity,14.3,Profit Ratios,Suzuki Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29183,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3836,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23442,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",13000,315,,,,,,,Bhavesh V. Patel,Chemicals,315,374,CEO,Bhavesh V. Patel,Sector,Chemicals,Industry,Chemicals,HQ Location,"Rotterdam, Netherlands",Website,http://www.lyb.com,Years on Global 500 List,10,Employees,13000,Company Information,Revenues ($M),29183,Profits ($M),3836,Assets ($M),23442,Total Stockholder Equity ($M),6048,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.1,Profits as % of Assets,16.4,Profits as % of Stockholder Equity,63.4,Profit Ratios,LyondellBasell Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1601.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34068,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,123.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",114731,368,World’s Most Admired Companies,100000,,,,,Frans A. van Houten,Medical Products and Equipment,368,375,CEO,Frans A. van Houten,Sector,Health Care,Industry,Medical Products and Equipment,HQ Location,"Amsterdam, Netherlands",Website,http://www.philips.com,Years on Global 500 List,23,Employees,114731,Company Information,Revenues ($M),29003,Profits ($M),1601.3,Assets ($M),34068,Total Stockholder Equity ($M),13289,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,12,Profit Ratios,Royal Philips,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,197.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3522,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),149067,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",91500,,Fortune 500,96,,,,,Thomas M. Rutledge,Telecommunications,0,376,CEO,Thomas M. Rutledge,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Stamford, CT",Website,http://www.charter.com,Years on Global 500 List,1,Employees,91500,Company Information,Revenues ($M),29003,Profits ($M),3522,Assets ($M),149067,Total Stockholder Equity ($M),40139,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,8.8,Profit Ratios,Charter Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28833,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,42.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3538,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99782,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,32.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",98017,,World’s Most Admired Companies,100000,,,,,Omar S. Ishrak,Medical Products and Equipment,0,377,CEO,Omar S. Ishrak,Sector,Health Care,Industry,Medical Products and Equipment,HQ Location,"Dublin, Ireland",Website,http://www.medtronic.com,Years on Global 500 List,1,Employees,98017,Company Information,Revenues ($M),28833,Profits ($M),3538,Assets ($M),99782,Total Stockholder Equity ($M),52063,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.3,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,6.8,Profit Ratios,Medtronic,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),818,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),250441,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",5646,377,Fortune 500,97,World’s Most Admired Companies,100000,,,John E. Schlifske,"Insurance: Life, Health (Mutual)",377,378,CEO,John E. Schlifske,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Milwaukee, WI",Website,http://www.northwesternmutual.com,Years on Global 500 List,23,Employees,5646,Company Information,Revenues ($M),28799,Profits ($M),818,Assets ($M),250441,Total Stockholder Equity ($M),20226,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4,Profit Ratios,Northwestern Mutual,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28572,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3434.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37577,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",89331,378,World’s Most Admired Companies,100000,,,,,Jean-Paul Agon,Household and Personal Products,378,379,CEO,Jean-Paul Agon,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"Clichy, France",Website,http://www.loreal.com,Years on Global 500 List,23,Employees,89331,Company Information,Revenues ($M),28572,Profits ($M),3434.5,Assets ($M),37577,Total Stockholder Equity ($M),25840,Key Financials (Last Fiscal Year),Profit as % of Revenues,12,Profits as % of Assets,9.1,Profits as % of Stockholder Equity,13.3,Profit Ratios,L’Oreal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28483,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),110.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),152701,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-95.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",155905,385,,,,,,,Wang Jianlin,Real estate,385,380,CEO,Wang Jianlin,Sector,Financials,Industry,Real estate,HQ Location,"Beijing, China",Website,http://www.wanda-group.com,Years on Global 500 List,2,Employees,155905,Company Information,Revenues ($M),28483,Profits ($M),110.3,Assets ($M),152701,Total Stockholder Equity ($M),17237,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.6,Profit Ratios,Dalian Wanda Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28277,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),267.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13696,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",15745,424,,,,,,,Shuichi Watanabe,Wholesalers: Health Care,424,381,CEO,Shuichi Watanabe,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Tokyo, Japan",Website,http://www.medipal.co.jp,Years on Global 500 List,15,Employees,15745,Company Information,Revenues ($M),28277,Profits ($M),267.7,Assets ($M),13696,Total Stockholder Equity ($M),3607,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,2,Profits as % of Stockholder Equity,7.4,Profit Ratios,Medipal Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28204,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),360.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-70.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",107000,331,,,,,,,Zhao Jianguo,Utilities,331,382,CEO,Zhao Jianguo,Sector,Energy,Industry,Utilities,HQ Location,"Beijing, China",Website,http://www.chd.com.cn,Years on Global 500 List,6,Employees,107000,Company Information,Revenues ($M),28204,Profits ($M),360.6,Assets ($M),112115,Total Stockholder Equity ($M),7947,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.5,Profit Ratios,China Huadian,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28196,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4164,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),185074,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,54.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",20000,456,,,,,,,Ng Keng Hooi,"Insurance: Life, Health (stock)",456,383,CEO,Ng Keng Hooi,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Hong Kong, China",Website,http://www.aia.com,Years on Global 500 List,3,Employees,20000,Company Information,Revenues ($M),28196,Profits ($M),4164,Assets ($M),185074,Total Stockholder Equity ($M),34984,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.8,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,11.9,Profit Ratios,AIA Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28166,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1228.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12370,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,63.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",10422,367,,,,,,,Mukesh Kumar Surana,Petroleum Refining,367,384,CEO,Mukesh Kumar Surana,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.hindustanpetroleum.com,Years on Global 500 List,14,Employees,10422,Company Information,Revenues ($M),28166,Profits ($M),1228.1,Assets ($M),12370,Total Stockholder Equity ($M),3245,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,9.9,Profits as % of Stockholder Equity,37.8,Profit Ratios,Hindustan Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),693.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62536,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",77704,372,,,,,,,Herbert Bolliger,Food and Drug Stores,372,385,CEO,Herbert Bolliger,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Zurich, Switzerland",Website,http://www.migros.ch,Years on Global 500 List,23,Employees,77704,Company Information,Revenues ($M),28155,Profits ($M),693.3,Assets ($M),62536,Total Stockholder Equity ($M),17132,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,4,Profit Ratios,Migros Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27920,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),875.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24185,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,569.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",82175,363,World’s Most Admired Companies,100000,,,,,Jean-Marc Janaillac,Airlines,363,386,CEO,Jean-Marc Janaillac,Sector,Transportation,Industry,Airlines,HQ Location,"Paris, France",Website,http://www.airfranceklm.com,Years on Global 500 List,21,Employees,82175,Company Information,Revenues ($M),27920,Profits ($M),875.8,Assets ($M),24185,Total Stockholder Equity ($M),1354,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,64.7,Profit Ratios,Air France-KLM Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27837,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1408.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13693,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",527180,387,Change the World,33,,,,,Richard J. Cousins,Food Services,387,387,CEO,Richard J. Cousins,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Chertsey, Britain",Website,http://www.compass-group.com,Years on Global 500 List,16,Employees,527180,Company Information,Revenues ($M),27837,Profits ($M),1408.5,Assets ($M),13693,Total Stockholder Equity ($M),3254,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,10.3,Profits as % of Stockholder Equity,43.3,Profit Ratios,Compass Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27810,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1687,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),77956,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-181.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",100000,287,,,,,,,Paal Kibsgaard,Oil & Gas Equipment Services,287,388,CEO,Paal Kibsgaard,Sector,Energy,Industry,Oil & Gas Equipment Services,HQ Location,"Houston, TX",Website,http://www.slb.com,Years on Global 500 List,17,Employees,100000,Company Information,Revenues ($M),27810,Profits ($M),-1687,Assets ($M),77956,Total Stockholder Equity ($M),41078,Key Financials (Last Fiscal Year),Profit as % of Revenues,-6.1,Profits as % of Assets,-2.2,Profits as % of Stockholder Equity,-4.1,Profit Ratios,Schlumberger,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27792,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1299.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61513,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",32666,391,,,,,,,Shigeki Iwane,Utilities,391,389,CEO,Shigeki Iwane,Sector,Energy,Industry,Utilities,HQ Location,"Osaka, Japan",Website,http://www.kepco.co.jp,Years on Global 500 List,23,Employees,32666,Company Information,Revenues ($M),27792,Profits ($M),1299.3,Assets ($M),61513,Total Stockholder Equity ($M),11205,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,2.1,Profits as % of Stockholder Equity,11.6,Profit Ratios,Kansai Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27715,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),469.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18229,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",92698,326,,,,,,,Barry Lam,"Computers, Office Equipment",326,390,CEO,Barry Lam,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taoyuan, Taiwan",Website,http://www.quantatw.com,Years on Global 500 List,12,Employees,92698,Company Information,Revenues ($M),27715,Profits ($M),469.3,Assets ($M),18229,Total Stockholder Equity ($M),4123,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,11.4,Profit Ratios,Quanta Computer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27704,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5477,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),642083,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",35280,336,,,,,,,Brian C. Hartzer,Banks: Commercial and Savings,336,391,CEO,Brian C. Hartzer,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sydney, Australia",Website,http://www.westpac.com.au,Years on Global 500 List,13,Employees,35280,Company Information,Revenues ($M),27704,Profits ($M),5477,Assets ($M),642083,Total Stockholder Equity ($M),44468,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.8,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,12.3,Profit Ratios,Westpac Banking,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27669,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),482.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18369,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",73451,396,,,,,,,Joos Sutter,Food and Drug Stores,396,392,CEO,Joos Sutter,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Basel, Switzerland",Website,http://www.coop.ch,Years on Global 500 List,8,Employees,73451,Company Information,Revenues ($M),27669,Profits ($M),482.1,Assets ($M),18369,Total Stockholder Equity ($M),8250,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,5.8,Profit Ratios,Coop Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27638,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,54.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10217,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64961,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,177,"Total employees (full-time equivalent, if available) at fiscal year-end.",17048,,Fortune 500,98,World’s Most Admired Companies,9,100 Fastest-Growing Companies,3,Mark Zuckerberg,Internet Services and Retailing,0,393,CEO,Mark Zuckerberg,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Menlo Park, CA",Website,http://www.facebook.com,Years on Global 500 List,1,Employees,17048,Company Information,Revenues ($M),27638,Profits ($M),10217,Assets ($M),64961,Total Stockholder Equity ($M),59194,Key Financials (Last Fiscal Year),Profit as % of Revenues,37,Profits as % of Assets,15.7,Profits as % of Stockholder Equity,17.3,Profit Ratios,Facebook,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27625,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3014,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),100245,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",30900,397,Fortune 500,99,World’s Most Admired Companies,100000,,,Alan D. Schnitzer,Insurance: Property and Casualty (Stock),397,394,CEO,Alan D. Schnitzer,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"New York, NY",Website,http://www.travelers.com,Years on Global 500 List,14,Employees,30900,Company Information,Revenues ($M),27625,Profits ($M),3014,Assets ($M),100245,Total Stockholder Equity ($M),23221,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.9,Profits as % of Assets,3,Profits as % of Stockholder Equity,13,Profit Ratios,Travelers Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27519,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3751,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),357033,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",47300,430,Fortune 500,100,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,17,Richard D. Fairbank,Banks: Commercial and Savings,430,395,CEO,Richard D. Fairbank,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"McLean, VA",Website,http://www.capitalone.com,Years on Global 500 List,7,Employees,47300,Company Information,Revenues ($M),27519,Profits ($M),3751,Assets ($M),357033,Total Stockholder Equity ($M),47514,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,7.9,Profit Ratios,Capital One Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27326,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2755,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48365,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-66.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",21500,360,Fortune 500,101,,,,,James R. Murdoch,Entertainment,360,396,CEO,James R. Murdoch,Sector,Media,Industry,Entertainment,HQ Location,"New York, NY",Website,http://www.21cf.com,Years on Global 500 List,23,Employees,21500,Company Information,Revenues ($M),27326,Profits ($M),2755,Assets ($M),48365,Total Stockholder Equity ($M),13661,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.1,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,20.2,Profit Ratios,Twenty-First Century Fox,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27315,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),268.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),114611,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-67.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",124056,345,,,,,,,Qiao Baoping,Energy,345,397,CEO,Qiao Baoping,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.cgdc.com.cn,Years on Global 500 List,8,Employees,124056,Company Information,Revenues ($M),27315,Profits ($M),268.7,Assets ($M),114611,Total Stockholder Equity ($M),7496,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.6,Profit Ratios,China Guodian,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1817.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),68521,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",90903,438,,,,,,,Eric Olsen,"Building Materials, Glass",438,398,CEO,Eric Olsen,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Jona, Switzerland",Website,http://www.lafargeholcim.com,Years on Global 500 List,9,Employees,90903,Company Information,Revenues ($M),27308,Profits ($M),1817.9,Assets ($M),68521,Total Stockholder Equity ($M),30337,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6,Profit Ratios,LafargeHolcim,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27307,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1935.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44137,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,24,"Total employees (full-time equivalent, if available) at fiscal year-end.",143901,354,Change the World,24,,,,,Jean-Pascal Tricoire,"Electronics, Electrical Equip.",354,399,CEO,Jean-Pascal Tricoire,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Rueil-Malmaison, France",Website,http://www.schneider-electric.com,Years on Global 500 List,16,Employees,143901,Company Information,Revenues ($M),27307,Profits ($M),1935.2,Assets ($M),44137,Total Stockholder Equity ($M),21614,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.1,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,9,Profit Ratios,Schneider Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1611.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),35898,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",158064,408,,,,,,,Xiong Qun Li,Aerospace and Defense,408,400,CEO,Xiong Qun Li,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.cetc.com.cn,Years on Global 500 List,2,Employees,158064,Company Information,Revenues ($M),27292,Profits ($M),1611.6,Assets ($M),35898,Total Stockholder Equity ($M),15895,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.9,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,10.1,Profit Ratios,China Electronics Technology Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27131,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1779.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),147290,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",29943,444,Fortune 500,102,World’s Most Admired Companies,25,The 100 Best Companies to Work For,35,Stuart Parker,Insurance: Property and Casualty (Stock),444,401,CEO,Stuart Parker,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"San Antonio, TX",Website,http://www.usaa.com,Years on Global 500 List,4,Employees,29943,Company Information,Revenues ($M),27131,Profits ($M),1779.1,Assets ($M),147290,Total Stockholder Equity ($M),28840,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.6,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,6.2,Profit Ratios,USAA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27016,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),126.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),5413,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-27.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",5000,346,Fortune 500,103,World’s Most Admired Companies,100000,,,Michael J. Kasbar,Energy,346,402,CEO,Michael J. Kasbar,Sector,Energy,Industry,Energy,HQ Location,"Miami, FL",Website,http://www.wfscorp.com,Years on Global 500 List,6,Employees,5000,Company Information,Revenues ($M),27016,Profits ($M),126.5,Assets ($M),5413,Total Stockholder Equity ($M),1925,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,6.6,Profit Ratios,World Fuel Services,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26976,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),135.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9292,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",26611,416,,,,,,,Oliver Windholz,Wholesalers: Health Care,416,403,CEO,Oliver Windholz,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Mannheim, Germany",Website,http://www.phoenixgroup.eu,Years on Global 500 List,7,Employees,26611,Company Information,Revenues ($M),26976,Profits ($M),135.4,Assets ($M),9292,Total Stockholder Equity ($M),2732,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,5,Profit Ratios,Phoenix Pharmahandel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26972,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),423.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40022,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-15.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",156225,382,,,,,,,Antoine Frerot,Utilities,382,404,CEO,Antoine Frerot,Sector,Energy,Industry,Utilities,HQ Location,"Paris, France",Website,http://www.veolia.com,Years on Global 500 List,15,Employees,156225,Company Information,Revenues ($M),26972,Profits ($M),423.6,Assets ($M),40022,Total Stockholder Equity ($M),8173,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,5.2,Profit Ratios,Veolia Environnement,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26958,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),259,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),594967,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-94.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",34263,304,Change the World,22,,,,,Andrew G. Thorburn,Banks: Commercial and Savings,304,405,CEO,Andrew G. Thorburn,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Docklands, Australia",Website,http://www.nab.com.au,Years on Global 500 List,22,Employees,34263,Company Information,Revenues ($M),26958,Profits ($M),259,Assets ($M),594967,Total Stockholder Equity ($M),39244,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.7,Profit Ratios,National Australia Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26685,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6967,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36851,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",79500,398,Fortune 500,104,,,,,Andre Calantzopoulos,Tobacco,398,406,CEO,Andre Calantzopoulos,Sector,"Food, Beverages & Tobacco",Industry,Tobacco,HQ Location,"New York, NY",Website,http://www.pmi.com,Years on Global 500 List,9,Employees,79500,Company Information,Revenues ($M),26685,Profits ($M),6967,Assets ($M),36851,Total Stockholder Equity ($M),-12688,Key Financials (Last Fiscal Year),Profit as % of Revenues,26.1,Profits as % of Assets,18.9,Profits as % of Stockholder Equity,,Profit Ratios,Philip Morris International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26644,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1523.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57981,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",56767,364,Fortune 500,105,World’s Most Admired Companies,50,,,Samuel R. Allen,Construction and Farm Machinery,364,407,CEO,Samuel R. Allen,Sector,Industrials,Industry,Construction and Farm Machinery,HQ Location,"Moline, IL",Website,http://www.johndeere.com,Years on Global 500 List,23,Employees,56767,Company Information,Revenues ($M),26644,Profits ($M),1523.9,Assets ($M),57981,Total Stockholder Equity ($M),6520,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,23.4,Profit Ratios,Deere,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26587,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2565,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71009,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,25.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",85834,447,,,,,,,Tetsuro Tomita,Railroads,447,408,CEO,Tetsuro Tomita,Sector,Transportation,Industry,Railroads,HQ Location,"Tokyo, Japan",Website,http://www.jreast.co.jp,Years on Global 500 List,23,Employees,85834,Company Information,Revenues ($M),26587,Profits ($M),2565,Assets ($M),71009,Total Stockholder Equity ($M),23253,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.6,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,11,Profit Ratios,East Japan Railway,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26494,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-423.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),98096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-199.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",14921,413,,,,,,,Willem A.J. van Duin,"Insurance: Life, Health (Mutual)",413,409,CEO,Willem A.J. van Duin,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Zeist, Netherlands",Website,http://www.achmea.nl,Years on Global 500 List,4,Employees,14921,Company Information,Revenues ($M),26494,Profits ($M),-423.5,Assets ($M),98096,Total Stockholder Equity ($M),10308,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.6,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.1,Profit Ratios,Achmea,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26487,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,44.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3632,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),120480,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,472.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",41000,,Fortune 500,106,,,,,Bernardo Hees,Food Consumer Products,0,410,CEO,Bernardo Hees,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Pittsburgh, PA",Website,http://www.kraftheinzcompany.com,Years on Global 500 List,3,Employees,41000,Company Information,Revenues ($M),26487,Profits ($M),3632,Assets ($M),120480,Total Stockholder Equity ($M),57358,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,3,Profits as % of Stockholder Equity,6.3,Profit Ratios,Kraft Heinz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),934,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),172442,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",36578,468,,,,,,,Ming-Ho Hsiung,"Insurance: Life, Health (stock)",468,411,CEO,Ming-Ho Hsiung,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Taipei, Taiwan",Website,http://www.cathaylife.com.tw,Years on Global 500 List,16,Employees,36578,Company Information,Revenues ($M),26292,Profits ($M),934,Assets ($M),172442,Total Stockholder Equity ($M),11212,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,8.3,Profit Ratios,Cathay Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26235,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),195.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),7932,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-26.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",9500,409,Fortune 500,107,World’s Most Admired Companies,100000,,,Robert M. Dutkowsky,Wholesalers: Electronics and Office Equipment,409,412,CEO,Robert M. Dutkowsky,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Clearwater, FL",Website,http://www.techdata.com,Years on Global 500 List,19,Employees,9500,Company Information,Revenues ($M),26235,Profits ($M),195.1,Assets ($M),7932,Total Stockholder Equity ($M),2170,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,9,Profit Ratios,Tech Data,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26222,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1770.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),219157,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,65.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",5284,439,,,,,,,Chang-Soo Kim,"Insurance: Life, Health (stock)",439,413,CEO,Chang-Soo Kim,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Seoul, South Korea",Website,http://www.samsunglife.com,Years on Global 500 List,21,Employees,5284,Company Information,Revenues ($M),26222,Profits ($M),1770.3,Assets ($M),219157,Total Stockholder Equity ($M),22064,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,8,Profit Ratios,Samsung Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26219,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),506.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11240,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",17700,380,Fortune 500,108,World’s Most Admired Companies,100000,,,William J. Amelio,Wholesalers: Electronics and Office Equipment,380,414,CEO,William J. Amelio,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Phoenix, AZ",Website,http://www.avnet.com,Years on Global 500 List,7,Employees,17700,Company Information,Revenues ($M),26219,Profits ($M),506.5,Assets ($M),11240,Total Stockholder Equity ($M),4691,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,10.8,Profit Ratios,Avnet,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,73.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-847.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47354,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-131,"Total employees (full-time equivalent, if available) at fiscal year-end.",102687,,World’s Most Admired Companies,100000,,,,,Rajeev Suri,Network and Other Communications Equipment,0,415,CEO,Rajeev Suri,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Espoo, Finland",Website,http://www.nokia.com,Years on Global 500 List,19,Employees,102687,Company Information,Revenues ($M),26113,Profits ($M),-847.1,Assets ($M),47354,Total Stockholder Equity ($M),21192,Key Financials (Last Fiscal Year),Profit as % of Revenues,-3.2,Profits as % of Assets,-1.8,Profits as % of Stockholder Equity,-4,Profit Ratios,Nokia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26073,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1560.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64011,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,695,"Total employees (full-time equivalent, if available) at fiscal year-end.",7733,407,,,,,,,Al Monaco,Pipelines,407,416,CEO,Al Monaco,Sector,Energy,Industry,Pipelines,HQ Location,"Calgary, Alberta, Canada",Website,http://www.enbridge.com,Years on Global 500 List,4,Employees,7733,Company Information,Revenues ($M),26073,Profits ($M),1560.9,Assets ($M),64011,Total Stockholder Equity ($M),15949,Key Financials (Last Fiscal Year),Profit as % of Revenues,6,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,Enbridge,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26070,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1489.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49688,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",17229,365,,,,,,,Rafael Villaseca Marco,Utilities,365,417,CEO,Rafael Villaseca Marco,Sector,Energy,Industry,Utilities,HQ Location,"Barcelona, Spain",Website,http://www.gasnaturalfenosa.com,Years on Global 500 List,9,Employees,17229,Company Information,Revenues ($M),26070,Profits ($M),1489.6,Assets ($M),49688,Total Stockholder Equity ($M),16057,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,3,Profits as % of Stockholder Equity,9.3,Profit Ratios,Gas Natural Fenosa,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26032,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4199.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),699976,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",46554,362,,,,,,,Shayne Elliott,Banks: Commercial and Savings,362,418,CEO,Shayne Elliott,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Docklands, Australia",Website,http://www.anz.com,Years on Global 500 List,14,Employees,46554,Company Information,Revenues ($M),26032,Profits ($M),4199.9,Assets ($M),699976,Total Stockholder Equity ($M),44237,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.1,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,9.5,Profit Ratios,Australia & New Zealand Banking Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26004,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),200.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31199,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-87.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",111464,357,World’s Most Admired Companies,100000,,,,,Borje Ekholm,Network and Other Communications Equipment,357,419,CEO,Borje Ekholm,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Stockholm, Sweden",Website,http://www.ericsson.com,Years on Global 500 List,23,Employees,111464,Company Information,Revenues ($M),26004,Profits ($M),200.5,Assets ($M),31199,Total Stockholder Equity ($M),15395,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,1.3,Profit Ratios,LM Ericsson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25975,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),992.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),26062,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,31,"Total employees (full-time equivalent, if available) at fiscal year-end.",248330,440,,,,,,,Masayoshi Matsumoto,Motor Vehicles and Parts,440,420,CEO,Masayoshi Matsumoto,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Osaka, Japan",Website,http://www.global-sei.com,Years on Global 500 List,23,Employees,248330,Company Information,Revenues ($M),25975,Profits ($M),992.7,Assets ($M),26062,Total Stockholder Equity ($M),11769,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,8.4,Profit Ratios,Sumitomo Electric Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25923,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61538,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-77.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",90000,352,Fortune 500,109,World’s Most Admired Companies,100000,,,Irene B. Rosenfeld,Food Consumer Products,352,421,CEO,Irene B. Rosenfeld,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Deerfield, IL",Website,http://www.mondelezinternational.com,Years on Global 500 List,10,Employees,90000,Company Information,Revenues ($M),25923,Profits ($M),1659,Assets ($M),61538,Total Stockholder Equity ($M),25161,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.4,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6.6,Profit Ratios,Mondelez International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25913,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,23.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),769.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),211943,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18,"Total employees (full-time equivalent, if available) at fiscal year-end.",68527,500,,,,,,,Bruce Hemphill,"Insurance: Life, Health (stock)",500,422,CEO,Bruce Hemphill,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.oldmutualplc.com,Years on Global 500 List,16,Employees,68527,Company Information,Revenues ($M),25913,Profits ($M),769.3,Assets ($M),211943,Total Stockholder Equity ($M),9949,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,7.7,Profit Ratios,Old Mutual,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),813.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23711,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",9139,412,,,,,,,Takashi Tsukioka,Petroleum Refining,412,423,CEO,Takashi Tsukioka,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Tokyo, Japan",Website,http://www.idemitsu.com,Years on Global 500 List,23,Employees,9139,Company Information,Revenues ($M),25888,Profits ($M),813.7,Assets ($M),23711,Total Stockholder Equity ($M),3852,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.4,Profits as % of Stockholder Equity,21.1,Profit Ratios,Idemitsu Kosan,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25817,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5362.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),668805,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",88901,428,,,,,,,Brian J. Porter,Banks: Commercial and Savings,428,424,CEO,Brian J. Porter,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.scotiabank.com,Years on Global 500 List,20,Employees,88901,Company Information,Revenues ($M),25817,Profits ($M),5362.2,Assets ($M),668805,Total Stockholder Equity ($M),41975,Key Financials (Last Fiscal Year),Profit as % of Revenues,20.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,12.8,Profit Ratios,Bank of Nova Scotia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25778,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),619,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19851,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",148300,389,Fortune 500,110,World’s Most Admired Companies,100000,,,Jeffrey Gennette,General Merchandisers,389,425,CEO,Jeffrey Gennette,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Cincinnati, OH",Website,http://www.macysinc.com,Years on Global 500 List,23,Employees,148300,Company Information,Revenues ($M),25778,Profits ($M),619,Assets ($M),19851,Total Stockholder Equity ($M),4323,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,14.3,Profit Ratios,Macy’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25775,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),857.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71590,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",37020,434,,,,,,,Antonio Huertas Mejias,Insurance: Property and Casualty (Stock),434,426,CEO,Antonio Huertas Mejias,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Madrid, Spain",Website,http://www.mapfre.com,Years on Global 500 List,10,Employees,37020,Company Information,Revenues ($M),25775,Profits ($M),857.5,Assets ($M),71590,Total Stockholder Equity ($M),9625,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,8.9,Profit Ratios,Mapfre Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25760,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),938.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),257526,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,33.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",240407,418,,,,,,,Philippe Wahl,"Mail, Package, and Freight Delivery",418,427,CEO,Philippe Wahl,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Paris, France",Website,http://www.laposte.fr,Years on Global 500 List,22,Employees,240407,Company Information,Revenues ($M),25760,Profits ($M),938.9,Assets ($M),257526,Total Stockholder Equity ($M),11513,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.2,Profit Ratios,La Poste,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25733,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3485,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21203,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",162450,463,,,,,,,Pablo Isla Alvarez de Tejera,Specialty Retailers,463,428,CEO,Pablo Isla Alvarez de Tejera,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Arteixo, Spain",Website,http://www.inditex.com,Years on Global 500 List,2,Employees,162450,Company Information,Revenues ($M),25733,Profits ($M),3485,Assets ($M),21203,Total Stockholder Equity ($M),13738,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.5,Profits as % of Assets,16.4,Profits as % of Stockholder Equity,25.4,Profit Ratios,Inditex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25638,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5953,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),66099,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",30000,469,Fortune 500,111,World’s Most Admired Companies,100000,,,Richard A. Gonzalez,Pharmaceuticals,469,429,CEO,Richard A. Gonzalez,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"North Chicago, IL",Website,http://www.abbvie.com,Years on Global 500 List,2,Employees,30000,Company Information,Revenues ($M),25638,Profits ($M),5953,Assets ($M),66099,Total Stockholder Equity ($M),4636,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.2,Profits as % of Assets,9,Profits as % of Stockholder Equity,128.4,Profit Ratios,AbbVie,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25630,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-19.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-214.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40012,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",162542,322,,,,,,,Zhang Youxi,"Mining, Crude-Oil Production",322,430,CEO,Zhang Youxi,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Datong, China",Website,http://www.dtcoalmine.com,Years on Global 500 List,5,Employees,162542,Company Information,Revenues ($M),25630,Profits ($M),-214.8,Assets ($M),40012,Total Stockholder Equity ($M),3169,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.8,Profits as % of Assets,-0.5,Profits as % of Stockholder Equity,-6.8,Profit Ratios,Datong Coal Mine Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25444,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),144.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34710,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",26357,414,,,,,,,Hee-Tae Kang,General Merchandisers,414,431,CEO,Hee-Tae Kang,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Seoul, South Korea",Website,http://www.lotteshopping.com,Years on Global 500 List,4,Employees,26357,Company Information,Revenues ($M),25444,Profits ($M),144.9,Assets ($M),34710,Total Stockholder Equity ($M),13502,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.1,Profit Ratios,Lotte Shopping,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25279,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,46.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),496.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),235324,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-77.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",6302,,,,,,,,Keith Skeoch,Diversified Financials,0,432,CEO,Keith Skeoch,Sector,Financials,Industry,Diversified Financials,HQ Location,"Edinburgh, Britain",Website,http://www.standardlife.com,Years on Global 500 List,19,Employees,6302,Company Information,Revenues ($M),25279,Profits ($M),496.7,Assets ($M),235324,Total Stockholder Equity ($M),5370,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,9.2,Profit Ratios,Standard Life,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25123,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-19.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-10,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-113.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",209817,337,,,,,,,Wu Huatai,"Mining, Crude-Oil Production",337,433,CEO,Wu Huatai,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Taiyuan, China",Website,http://www.sxcc.com.cn,Years on Global 500 List,5,Employees,209817,Company Information,Revenues ($M),25123,Profits ($M),-10,Assets ($M),39206,Total Stockholder Equity ($M),4318,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.2,Profit Ratios,Shanxi Coking Coal Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25112,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),799.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10651,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8909.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",33000,442,,,,,,,Alain Dehaze,Temporary Help,442,434,CEO,Alain Dehaze,Sector,Business Services,Industry,Temporary Help,HQ Location,"Glattbrugg, Switzerland",Website,http://www.adeccogroup.com,Years on Global 500 List,19,Employees,33000,Company Information,Revenues ($M),25112,Profits ($M),799.5,Assets ($M),10651,Total Stockholder Equity ($M),3918,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,7.5,Profits as % of Stockholder Equity,20.4,Profit Ratios,Adecco Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24956,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2135.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28868,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",63387,421,,,,,,,Willie Walsh,Airlines,421,435,CEO,Willie Walsh,Sector,Transportation,Industry,Airlines,HQ Location,"Harmondsworth, Britain",Website,http://www.iairgroup.com,Years on Global 500 List,20,Employees,63387,Company Information,Revenues ($M),24956,Profits ($M),2135.4,Assets ($M),28868,Total Stockholder Equity ($M),5649,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.6,Profits as % of Assets,7.4,Profits as % of Stockholder Equity,37.8,Profit Ratios,International Airlines Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24622,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4686.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31024,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",375000,420,Fortune 500,112,World’s Most Admired Companies,48,Change the World,25,Stephen J. Easterbrook,Food Services,420,436,CEO,Stephen J. Easterbrook,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Oak Brook, IL",Website,http://www.aboutmcdonalds.com,Years on Global 500 List,23,Employees,375000,Company Information,Revenues ($M),24622,Profits ($M),4686.5,Assets ($M),31024,Total Stockholder Equity ($M),-2204,Key Financials (Last Fiscal Year),Profit as % of Revenues,19,Profits as % of Assets,15.1,Profits as % of Stockholder Equity,,Profit Ratios,McDonald’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24596,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),252,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24091,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-60.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",107729,452,,,,,,,Takashi Niino,Information Technology Services,452,437,CEO,Takashi Niino,Sector,Technology,Industry,Information Technology Services,HQ Location,"Tokyo, Japan",Website,http://www.nec.com,Years on Global 500 List,23,Employees,107729,Company Information,Revenues ($M),24596,Profits ($M),252,Assets ($M),24091,Total Stockholder Equity ($M),7668,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,1,Profits as % of Stockholder Equity,3.3,Profit Ratios,NEC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24594,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2513,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",46000,379,Fortune 500,113,World’s Most Admired Companies,100000,,,Edward D. Breen,Chemicals,379,438,CEO,Edward D. Breen,Sector,Chemicals,Industry,Chemicals,HQ Location,"Wilmington, DE",Website,http://www.dupont.com,Years on Global 500 List,23,Employees,46000,Company Information,Revenues ($M),24594,Profits ($M),2513,Assets ($M),39964,Total Stockholder Equity ($M),9998,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.2,Profits as % of Assets,6.3,Profits as % of Stockholder Equity,25.1,Profit Ratios,DuPont,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24588,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),320,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),6093,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",11739,484,,,,,,,Zhou Qiang,Wholesalers: Diversified,484,439,CEO,Zhou Qiang,Sector,Wholesalers,Industry,Wholesalers: Diversified,HQ Location,"Beijing, China",Website,http://www.cnaf.com,Years on Global 500 List,7,Employees,11739,Company Information,Revenues ($M),24588,Profits ($M),320,Assets ($M),6093,Total Stockholder Equity ($M),2263,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,5.3,Profits as % of Stockholder Equity,14.1,Profit Ratios,China National Aviation Fuel Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24508,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2200,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25614,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",67000,450,Fortune 500,114,World’s Most Admired Companies,100000,,,Wesley G. Bush,Aerospace and Defense,450,440,CEO,Wesley G. Bush,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Falls Church, VA",Website,http://www.northropgrumman.com,Years on Global 500 List,18,Employees,67000,Company Information,Revenues ($M),24508,Profits ($M),2200,Assets ($M),25614,Total Stockholder Equity ($M),5259,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,41.8,Profit Ratios,Northrop Grumman,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24411,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,22.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1651,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),159826,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-29.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",55700,,,,,,,,J. Bruce Flatt,Diversified Financials,0,441,CEO,J. Bruce Flatt,Sector,Financials,Industry,Diversified Financials,HQ Location,"Toronto, Ontario, Canada",Website,http://www.brookfield.com,Years on Global 500 List,1,Employees,55700,Company Information,Revenues ($M),24411,Profits ($M),1651,Assets ($M),159826,Total Stockholder Equity ($M),26453,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,1,Profits as % of Stockholder Equity,6.2,Profit Ratios,Brookfield Asset Management,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2004.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),148659,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",8370,,,,,,,,Gustavo J. Vollmer A.,Banks: Commercial and Savings,0,442,CEO,Gustavo J. Vollmer A.,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Caracas, Venezuela",Website,http://www.msf.com,Years on Global 500 List,1,Employees,8370,Company Information,Revenues ($M),24403,Profits ($M),2004.2,Assets ($M),148659,Total Stockholder Equity ($M),7550,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.2,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,26.5,Profit Ratios,Mercantil Servicios Financieros,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24397,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4031.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46696,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",84183,462,World’s Most Admired Companies,100000,,,,,William R. McDermott,Computer Software,462,443,CEO,William R. McDermott,Sector,Technology,Industry,Computer Software,HQ Location,"Walldorf, Germany",Website,http://www.sap.com,Years on Global 500 List,2,Employees,84183,Company Information,Revenues ($M),24397,Profits ($M),4031.9,Assets ($M),46696,Total Stockholder Equity ($M),27817,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.5,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,14.5,Profit Ratios,SAP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24360,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-3615,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89772,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",13300,339,Fortune 500,115,,,,,Ryan M. Lance,"Mining, Crude-Oil Production",339,444,CEO,Ryan M. Lance,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Houston, TX",Website,http://www.conocophillips.com,Years on Global 500 List,23,Employees,13300,Company Information,Revenues ($M),24360,Profits ($M),-3615,Assets ($M),89772,Total Stockholder Equity ($M),34974,Key Financials (Last Fiscal Year),Profit as % of Revenues,-14.8,Profits as % of Assets,-4,Profits as % of Stockholder Equity,-10.3,Profit Ratios,ConocoPhillips,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24284,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),11.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30793,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",146236,374,,,,,,,Zhai Hong,"Mining, Crude-Oil Production",374,445,CEO,Zhai Hong,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Yangquan, China",Website,http://www.ymjt.com.cn%20,Years on Global 500 List,5,Employees,146236,Company Information,Revenues ($M),24284,Profits ($M),11.1,Assets ($M),30793,Total Stockholder Equity ($M),1783,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.6,Profit Ratios,Yangquan Coal Industry Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24267,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1902.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46350,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,33.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",99187,433,World’s Most Admired Companies,100000,,,,,Emmanuel Faber,Food Consumer Products,433,446,CEO,Emmanuel Faber,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Paris, France",Website,http://www.danone.com,Years on Global 500 List,23,Employees,99187,Company Information,Revenues ($M),24267,Profits ($M),1902.1,Assets ($M),46350,Total Stockholder Equity ($M),13825,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,13.8,Profit Ratios,Danone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24217,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),92.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36816,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-96.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",13898,,,,,,,,Chi-Hun Choi,"Engineering, Construction",0,447,CEO,Chi-Hun Choi,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Seoul, South Korea",Website,http://www.samsungcnt.com,Years on Global 500 List,1,Employees,13898,Company Information,Revenues ($M),24217,Profits ($M),92.5,Assets ($M),36816,Total Stockholder Equity ($M),15155,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,0.6,Profit Ratios,Samsung C&T,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24087,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-106.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",95666,370,,,,,,,Li Jinping,"Mining, Crude-Oil Production",370,448,CEO,Li Jinping,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Changzhi, China",Website,http://www.chinaluan.com,Years on Global 500 List,5,Employees,95666,Company Information,Revenues ($M),24087,Profits ($M),-106.9,Assets ($M),29026,Total Stockholder Equity ($M),2542,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.4,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.2,Profit Ratios,Shanxi LuAn Mining Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24069,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2211,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30052,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",63000,457,Fortune 500,116,World’s Most Admired Companies,100000,,,Thomas A. Kennedy,Aerospace and Defense,457,449,CEO,Thomas A. Kennedy,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Waltham, MA",Website,http://www.raytheon.com,Years on Global 500 List,22,Employees,63000,Company Information,Revenues ($M),24069,Profits ($M),2211,Assets ($M),30052,Total Stockholder Equity ($M),10066,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,7.4,Profits as % of Stockholder Equity,22,Profit Ratios,Raytheon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24060,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2210.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24549,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",126418,481,,,,,,,Fang Hongbo,"Electronics, Electrical Equip.",481,450,CEO,Fang Hongbo,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Foshan, China",Website,http://www.midea.com,Years on Global 500 List,2,Employees,126418,Company Information,Revenues ($M),24060,Profits ($M),2210.4,Assets ($M),24549,Total Stockholder Equity ($M),8796,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,9,Profits as % of Stockholder Equity,25.1,Profit Ratios,Midea Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24028,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1058.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48580,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",30635,448,,,,,,,Satoru Katsuno,Utilities,448,451,CEO,Satoru Katsuno,Sector,Energy,Industry,Utilities,HQ Location,"Nagoya, Japan",Website,http://www.chuden.co.jp,Years on Global 500 List,23,Employees,30635,Company Information,Revenues ($M),24028,Profits ($M),1058.2,Assets ($M),48580,Total Stockholder Equity ($M),14695,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,7.2,Profit Ratios,Chubu Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24011,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1232.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28383,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",76000,415,World’s Most Admired Companies,100000,,,,,Charles Woodburn,Aerospace and Defense,415,452,CEO,Charles Woodburn,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"London, Britain",Website,http://www.baesystems.com,Years on Global 500 List,23,Employees,76000,Company Information,Revenues ($M),24011,Profits ($M),1232.3,Assets ($M),28383,Total Stockholder Equity ($M),4247,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,29,Profit Ratios,BAE Systems,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24005,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),734,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20398,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",6308,375,Fortune 500,117,,,,,Gregory J. Goff,Petroleum Refining,375,453,CEO,Gregory J. Goff,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Antonio, TX",Website,http://www.tsocorp.com,Years on Global 500 List,11,Employees,6308,Company Information,Revenues ($M),24005,Profits ($M),734,Assets ($M),20398,Total Stockholder Equity ($M),5465,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,Andeavor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23871,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),243.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),101631,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,32.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",97091,406,,,,,,,Chen Jinhang,Energy,406,454,CEO,Chen Jinhang,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.china-cdt.com,Years on Global 500 List,8,Employees,97091,Company Information,Revenues ($M),23871,Profits ($M),243.9,Assets ($M),101631,Total Stockholder Equity ($M),7371,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.3,Profit Ratios,China Datang,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),319.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12593,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28,"Total employees (full-time equivalent, if available) at fiscal year-end.",200000,441,World’s Most Admired Companies,100000,,,,,Michael M. McNamara,Semiconductors and Other Electronic Components,441,455,CEO,Michael M. McNamara,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,Singapore,Website,http://www.flex.com,Years on Global 500 List,17,Employees,200000,Company Information,Revenues ($M),23863,Profits ($M),319.6,Assets ($M),12593,Total Stockholder Equity ($M),2645,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,12.1,Profit Ratios,Flex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23825,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),522.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),14206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",18700,455,Fortune 500,118,World’s Most Admired Companies,100000,,,Michael J. Long,Wholesalers: Electronics and Office Equipment,455,456,CEO,Michael J. Long,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Centennial, CO",Website,http://www.arrow.com,Years on Global 500 List,4,Employees,18700,Company Information,Revenues ($M),23825,Profits ($M),522.8,Assets ($M),14206,Total Stockholder Equity ($M),4413,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,11.8,Profit Ratios,Arrow Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23793,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,65.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),4982,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",12369,,,,,,,,Jan Rinnert,Metals,0,457,CEO,Jan Rinnert,Sector,Materials,Industry,Metals,HQ Location,"Hanau, Germany",Website,http://www.heraeus.com,Years on Global 500 List,7,Employees,12369,Company Information,Revenues ($M),23793,Profits ($M),,Assets ($M),4982,Total Stockholder Equity ($M),3160,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,,Profit Ratios,Heraeus Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23773,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),252.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10769,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",64728,400,,,,,,,Jui-Tsung Chen,"Computers, Office Equipment",400,458,CEO,Jui-Tsung Chen,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taipei, Taiwan",Website,http://www.compal.com,Years on Global 500 List,6,Employees,64728,Company Information,Revenues ($M),23773,Profits ($M),252.1,Assets ($M),10769,Total Stockholder Equity ($M),3283,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,Compal Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23657,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),159.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24231,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-59,"Total employees (full-time equivalent, if available) at fiscal year-end.",10234,,,,,,,,Lin Tengjiao,Diversified Financials,0,459,CEO,Lin Tengjiao,Sector,Financials,Industry,Diversified Financials,HQ Location,"Fuzhou, China",Website,http://www.yangofinance.com,Years on Global 500 List,1,Employees,10234,Company Information,Revenues ($M),23657,Profits ($M),159.2,Assets ($M),24231,Total Stockholder Equity ($M),1925,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.3,Profit Ratios,Yango Financial Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23554,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5705,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52359,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",30500,422,Fortune 500,119,World’s Most Admired Companies,100000,,,Steven M. Mollenkopf,Semiconductors and Other Electronic Components,422,460,CEO,Steven M. Mollenkopf,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"San Diego, CA",Website,http://www.qualcomm.com,Years on Global 500 List,4,Employees,30500,Company Information,Revenues ($M),23554,Profits ($M),5705,Assets ($M),52359,Total Stockholder Equity ($M),31778,Key Financials (Last Fiscal Year),Profit as % of Revenues,24.2,Profits as % of Assets,10.9,Profits as % of Stockholder Equity,18,Profit Ratios,Qualcomm,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23551,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),285.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11273,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",13217,492,,,,,,,Taizo Kubo,Wholesalers: Health Care,492,461,CEO,Taizo Kubo,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Tokyo, Japan",Website,http://www.alfresa.com,Years on Global 500 List,8,Employees,13217,Company Information,Revenues ($M),23551,Profits ($M),285.1,Assets ($M),11273,Total Stockholder Equity ($M),2993,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,9.5,Profit Ratios,Alfresa Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23517,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,47.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6489.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),73538,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",50097,,,,,,,,Daniel Zhang,Internet Services and Retailing,0,462,CEO,Daniel Zhang,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Hangzhou, China",Website,http://www.alibabagroup.com,Years on Global 500 List,1,Employees,50097,Company Information,Revenues ($M),23517,Profits ($M),6489.5,Assets ($M),73538,Total Stockholder Equity ($M),40454,Key Financials (Last Fiscal Year),Profit as % of Revenues,27.6,Profits as % of Assets,8.8,Profits as % of Stockholder Equity,16,Profit Ratios,Alibaba Group Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23456,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1144.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25047,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",95456,419,,,,,,,Levent Cakiroglu,Energy,419,463,CEO,Levent Cakiroglu,Sector,Energy,Industry,Energy,HQ Location,"Istanbul, Turkey",Website,http://www.koc.com.tr,Years on Global 500 List,16,Employees,95456,Company Information,Revenues ($M),23456,Profits ($M),1144.2,Assets ($M),25047,Total Stockholder Equity ($M),7345,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,4.6,Profits as % of Stockholder Equity,15.6,Profit Ratios,Koc Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23441,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1031,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33428,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",31721,,Fortune 500,120,,,,,Susan Patricia Griffith,Insurance: Property and Casualty (Stock),0,464,CEO,Susan Patricia Griffith,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Mayfield Village, OH",Website,http://www.progressive.com,Years on Global 500 List,4,Employees,31721,Company Information,Revenues ($M),23441,Profits ($M),1031,Assets ($M),33428,Total Stockholder Equity ($M),7957,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,13,Profit Ratios,Progressive,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23369,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2152,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),132761,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",28798,446,Fortune 500,121,,,,,Lynn J. Good,Utilities,446,465,CEO,Lynn J. Good,Sector,Energy,Industry,Utilities,HQ Location,"Charlotte, NC",Website,http://www.duke-energy.com,Years on Global 500 List,14,Employees,28798,Company Information,Revenues ($M),23369,Profits ($M),2152,Assets ($M),132761,Total Stockholder Equity ($M),41033,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,5.2,Profit Ratios,Duke Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23120,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1853.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),26705,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43,"Total employees (full-time equivalent, if available) at fiscal year-end.",105654,451,World’s Most Admired Companies,100000,,,,,Jean-Dominique Senard,Motor Vehicles and Parts,451,466,CEO,Jean-Dominique Senard,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Clermont-Ferrand, France",Website,http://www.michelin.com,Years on Global 500 List,23,Employees,105654,Company Information,Revenues ($M),23120,Profits ($M),1853.4,Assets ($M),26705,Total Stockholder Equity ($M),11178,Key Financials (Last Fiscal Year),Profit as % of Revenues,8,Profits as % of Assets,6.9,Profits as % of Stockholder Equity,16.6,Profit Ratios,Michelin,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23044,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1733.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),85124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,17.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",94450,,,,,,,,Mo Bin,Real estate,0,467,CEO,Mo Bin,Sector,Financials,Industry,Real estate,HQ Location,"Foshan, China",Website,http://www.countrygarden.com.cn,Years on Global 500 List,1,Employees,94450,Company Information,Revenues ($M),23044,Profits ($M),1733.6,Assets ($M),85124,Total Stockholder Equity ($M),10091,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.5,Profits as % of Assets,2,Profits as % of Stockholder Equity,17.2,Profit Ratios,Country Garden Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23044,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),861.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),41469,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",73525,459,World’s Most Admired Companies,100000,Change the World,43,,,Jean-Francois van Boxmeer,Beverages,459,468,CEO,Jean-Francois van Boxmeer,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Amsterdam, Netherlands",Website,http://www.theheinekencompany.com,Years on Global 500 List,11,Employees,73525,Company Information,Revenues ($M),23044,Profits ($M),861.5,Assets ($M),41469,Total Stockholder Equity ($M),6958,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,2.1,Profits as % of Stockholder Equity,12.4,Profit Ratios,Heineken Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23022,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2513.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52194,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",6800,392,Fortune 500,122,,,,,A. James Teague,Pipelines,392,469,CEO,A. James Teague,Sector,Energy,Industry,Pipelines,HQ Location,"Houston, TX",Website,http://www.enterpriseproducts.com,Years on Global 500 List,7,Employees,6800,Company Information,Revenues ($M),23022,Profits ($M),2513.1,Assets ($M),52194,Total Stockholder Equity ($M),22047,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.9,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,11.4,Profit Ratios,Enterprise Products Partners,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23002,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3499,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62526,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,23.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",59700,435,,,,,,,Pascal Soriot,Pharmaceuticals,435,470,CEO,Pascal Soriot,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Cambridge, Britain",Website,http://www.astrazeneca.com,Years on Global 500 List,19,Employees,59700,Company Information,Revenues ($M),23002,Profits ($M),3499,Assets ($M),62526,Total Stockholder Equity ($M),14854,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,23.6,Profit Ratios,AstraZeneca,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22991,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7722,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),77626,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",19200,487,Fortune 500,123,World’s Most Admired Companies,100000,,,Robert A. Bradway,Pharmaceuticals,487,471,CEO,Robert A. Bradway,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Thousand Oaks, CA",Website,http://www.amgen.com,Years on Global 500 List,2,Employees,19200,Company Information,Revenues ($M),22991,Profits ($M),7722,Assets ($M),77626,Total Stockholder Equity ($M),29875,Key Financials (Last Fiscal Year),Profit as % of Revenues,33.6,Profits as % of Assets,9.9,Profits as % of Stockholder Equity,25.8,Profit Ratios,Amgen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22956,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),828.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),698790,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-15.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",40029,445,,,,,,,Wiebe Draijer,Banks: Commercial and Savings,445,472,CEO,Wiebe Draijer,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Utrecht, Netherlands",Website,http://www.rabobank.com,Years on Global 500 List,23,Employees,40029,Company Information,Revenues ($M),22956,Profits ($M),828.3,Assets ($M),698790,Total Stockholder Equity ($M),27232,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,3,Profit Ratios,Rabobank Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22953,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,42.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1722.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84805,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",49732,,,,,,,,Michel Combes,Telecommunications,0,473,CEO,Michel Combes,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Amsterdam, Netherlands",Website,http://www.altice.net,Years on Global 500 List,1,Employees,49732,Company Information,Revenues ($M),22953,Profits ($M),-1722.5,Assets ($M),84805,Total Stockholder Equity ($M),-2668,Key Financials (Last Fiscal Year),Profit as % of Revenues,-7.5,Profits as % of Assets,-2,Profits as % of Stockholder Equity,,Profit Ratios,Altice,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22943,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-130,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42913,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",161000,483,,,,,,,Gerald W. Schwartz,Semiconductors and Other Electronic Components,483,474,CEO,Gerald W. Schwartz,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Toronto, Ontario, Canada",Website,http://www.onex.com,Years on Global 500 List,18,Employees,161000,Company Information,Revenues ($M),22943,Profits ($M),-130,Assets ($M),42913,Total Stockholder Equity ($M),-490,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,,Profit Ratios,Onex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),209.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),8945,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,25.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",25000,461,Fortune 500,124,,,,,Pietro Satriano,Wholesalers: Food and Grocery,461,475,CEO,Pietro Satriano,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Rosemont, IL",Website,http://www.usfoods.com,Years on Global 500 List,2,Employees,25000,Company Information,Revenues ($M),22919,Profits ($M),209.8,Assets ($M),8945,Total Stockholder Equity ($M),2538,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,8.3,Profit Ratios,US Foods Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22875,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32954,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",135691,384,,,,,,,He Tiancai,"Mining, Crude-Oil Production",384,476,CEO,He Tiancai,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Jincheng, China",Website,http://www.jamg.cn,Years on Global 500 List,5,Employees,135691,Company Information,Revenues ($M),22875,Profits ($M),3,Assets ($M),32954,Total Stockholder Equity ($M),2988,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,Shanxi Jincheng Anthracite Coal Mining Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),650.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9624,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13,"Total employees (full-time equivalent, if available) at fiscal year-end.",32280,494,World’s Most Admired Companies,100000,,,,,Jacques van den Broek,Temporary Help,494,477,CEO,Jacques van den Broek,Sector,Business Services,Industry,Temporary Help,HQ Location,"Diemen, Netherlands",Website,http://www.randstad.com,Years on Global 500 List,5,Employees,32280,Company Information,Revenues ($M),22873,Profits ($M),650.2,Assets ($M),9624,Total Stockholder Equity ($M),4366,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,6.8,Profits as % of Stockholder Equity,14.9,Profit Ratios,Randstad Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22871,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,39.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6185.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,35,"Total employees (full-time equivalent, if available) at fiscal year-end.",38775,,,,,,,,Pony Ma,Internet Services and Retailing,0,478,CEO,Pony Ma,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Shenzhen, China",Website,http://www.tencent.com,Years on Global 500 List,1,Employees,38775,Company Information,Revenues ($M),22871,Profits ($M),6185.9,Assets ($M),56968,Total Stockholder Equity ($M),25128,Key Financials (Last Fiscal Year),Profit as % of Revenues,27,Profits as % of Assets,10.9,Profits as % of Stockholder Equity,24.6,Profit Ratios,Tencent Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22840,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),781.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20606,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",49094,429,,,,,,,Sang-Beom Han,"Electronics, Electrical Equip.",429,479,CEO,Sang-Beom Han,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Seoul, South Korea",Website,http://www.lgdisplay.com,Years on Global 500 List,6,Employees,49094,Company Information,Revenues ($M),22840,Profits ($M),781.4,Assets ($M),20606,Total Stockholder Equity ($M),10729,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,7.3,Profit Ratios,LG Display,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),340.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-82.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",64768,472,,,,,,,Sheikh Ahmed bin Saeed Al Maktoum,Airlines,472,480,CEO,Sheikh Ahmed bin Saeed Al Maktoum,Sector,Transportation,Industry,Airlines,HQ Location,"Dubai, U.A.E",Website,http://www.theemiratesgroup.com,Years on Global 500 List,2,Employees,64768,Company Information,Revenues ($M),22799,Profits ($M),340.3,Assets ($M),33096,Total Stockholder Equity ($M),9395,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,1,Profits as % of Stockholder Equity,3.6,Profit Ratios,Emirates Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22744,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5888,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),445964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",71191,490,Fortune 500,125,World’s Most Admired Companies,100000,,,Andrew J. Cecere,Banks: Commercial and Savings,490,481,CEO,Andrew J. Cecere,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Minneapolis, MN",Website,http://www.usbank.com,Years on Global 500 List,12,Employees,71191,Company Information,Revenues ($M),22744,Profits ($M),5888,Assets ($M),445964,Total Stockholder Equity ($M),47298,Key Financials (Last Fiscal Year),Profit as % of Revenues,25.9,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,12.4,Profit Ratios,U.S. Bancorp,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22618,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2192.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",114586,488,,,,,,,Karl-Johan Persson,Specialty Retailers,488,482,CEO,Karl-Johan Persson,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Stockholm, Sweden",Website,http://www.hm.com,Years on Global 500 List,2,Employees,114586,Company Information,Revenues ($M),22618,Profits ($M),2192.3,Assets ($M),10681,Total Stockholder Equity ($M),6635,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.7,Profits as % of Assets,20.5,Profits as % of Stockholder Equity,33,Profit Ratios,H & M Hennes & Mauritz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22559,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),129819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",10212,,Fortune 500,126,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,91,Daniel P. Amos,"Insurance: Life, Health (stock)",0,483,CEO,Daniel P. Amos,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Columbus, GA",Website,http://www.aflac.com,Years on Global 500 List,10,Employees,10212,Company Information,Revenues ($M),22559,Profits ($M),2659,Assets ($M),129819,Total Stockholder Equity ($M),20482,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,2,Profits as % of Stockholder Equity,13,Profit Ratios,Aflac,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22477,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),707.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),15766,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",425594,466,World’s Most Admired Companies,100000,,,,,Michel Landel,Food Services,466,484,CEO,Michel Landel,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Issy-les-Moulineaux, France",Website,http://www.sodexo.com,Years on Global 500 List,18,Employees,425594,Company Information,Revenues ($M),22477,Profits ($M),707.2,Assets ($M),15766,Total Stockholder Equity ($M),4085,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,17.3,Profit Ratios,Sodexo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22366,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),106,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19738,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60354,,,,,,,,Ren Jun,Specialty Retailers,0,485,CEO,Ren Jun,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Nanjing, China",Website,http://www.suning.com,Years on Global 500 List,1,Employees,60354,Company Information,Revenues ($M),22366,Profits ($M),106,Assets ($M),19738,Total Stockholder Equity ($M),9455,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,1.1,Profit Ratios,Suning Commerce Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22207,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1221.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),15969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,42.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",2949,431,,,,,,,Jin-Soo Huh,Petroleum Refining,431,486,CEO,Jin-Soo Huh,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Seoul, South Korea",Website,http://www.gscaltex.com,Years on Global 500 List,6,Employees,2949,Company Information,Revenues ($M),22207,Profits ($M),1221.1,Assets ($M),15969,Total Stockholder Equity ($M),8150,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7.6,Profits as % of Stockholder Equity,15,Profit Ratios,GS Caltex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22167,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),447.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),7426,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",15173,474,,,,,,,Thilo Mannhardt,Energy,474,487,CEO,Thilo Mannhardt,Sector,Energy,Industry,Energy,HQ Location,"Sao Paulo, Brazil",Website,http://www.ultra.com.br,Years on Global 500 List,8,Employees,15173,Company Information,Revenues ($M),22167,Profits ($M),447.5,Assets ($M),7426,Total Stockholder Equity ($M),2621,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,6,Profits as % of Stockholder Equity,17.1,Profit Ratios,Ultrapar Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22145,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),280.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21729,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",18381,,,,,,,,Huang Wenzhou,Trading,0,488,CEO,Huang Wenzhou,Sector,Wholesalers,Industry,Trading,HQ Location,"Xiamen, China",Website,http://www.chinacdc.com,Years on Global 500 List,1,Employees,18381,Company Information,Revenues ($M),22145,Profits ($M),280.2,Assets ($M),21729,Total Stockholder Equity ($M),3985,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,7,Profit Ratios,Xiamen C&D,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22138,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2221,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9362,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",140000,425,Fortune 500,127,,,,,Edward S. Lampert,General Merchandisers,425,489,CEO,Edward S. Lampert,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Hoffman Estates, IL",Website,http://www.searsholdings.com,Years on Global 500 List,23,Employees,140000,Company Information,Revenues ($M),22138,Profits ($M),-2221,Assets ($M),9362,Total Stockholder Equity ($M),-3824,Key Financials (Last Fiscal Year),Profit as % of Revenues,-10,Profits as % of Assets,-23.7,Profits as % of Stockholder Equity,,Profit Ratios,Sears Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-20.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),413.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20860,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-20.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",38589,383,,,,,,,Xu Xianping,"Engineering, Construction",383,490,CEO,Xu Xianping,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.genertec.com.cn,Years on Global 500 List,4,Employees,38589,Company Information,Revenues ($M),22113,Profits ($M),413.6,Assets ($M),20860,Total Stockholder Equity ($M),5114,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,2,Profits as % of Stockholder Equity,8.1,Profit Ratios,China General Technology,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22036,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10150.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),82310,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,160.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",22132,471,,,,,,,John Pettigrew,Utilities,471,491,CEO,John Pettigrew,Sector,Energy,Industry,Utilities,HQ Location,"London, Britain",Website,http://www.nationalgrid.com,Years on Global 500 List,12,Employees,22132,Company Information,Revenues ($M),22036,Profits ($M),10150.6,Assets ($M),82310,Total Stockholder Equity ($M),25463,Key Financials (Last Fiscal Year),Profit as % of Revenues,46.1,Profits as % of Assets,12.3,Profits as % of Stockholder Equity,39.9,Profit Ratios,National Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21987,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1251.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11672,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",121000,,Fortune 500,128,,,,,Todd J. Vasos,Specialty Retailers,0,492,CEO,Todd J. Vasos,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Goodlettsville, TN",Website,http://www.dollargeneral.com,Years on Global 500 List,1,Employees,121000,Company Information,Revenues ($M),21987,Profits ($M),1251.1,Assets ($M),11672,Total Stockholder Equity ($M),5406,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,10.7,Profits as % of Stockholder Equity,23.1,Profit Ratios,Dollar General,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21941,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1999.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74295,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",61227,404,,,,,,,Flavio Cattaneo,Telecommunications,404,493,CEO,Flavio Cattaneo,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Milan, Italy",Website,http://www.telecomitalia.com,Years on Global 500 List,18,Employees,61227,Company Information,Revenues ($M),21941,Profits ($M),1999.4,Assets ($M),74295,Total Stockholder Equity ($M),22366,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.1,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,8.9,Profit Ratios,Telecom Italia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21930,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,34.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),35.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12161,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",18454,,,,,,,,Xu Xiaoxi,Trading,0,494,CEO,Xu Xiaoxi,Sector,Wholesalers,Industry,Trading,HQ Location,"Xiamen, China",Website,http://www.itgholding.com.cn,Years on Global 500 List,1,Employees,18454,Company Information,Revenues ($M),21930,Profits ($M),35.6,Assets ($M),12161,Total Stockholder Equity ($M),1066,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,3.3,Profit Ratios,Xiamen ITG Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),251.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31957,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,49.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",65616,,,,,,,,Shang Jiqiang,Trading,0,495,CEO,Shang Jiqiang,Sector,Wholesalers,Industry,Trading,HQ Location,"Urumqi, China",Website,http://www.guanghui.com,Years on Global 500 List,1,Employees,65616,Company Information,Revenues ($M),21919,Profits ($M),251.8,Assets ($M),31957,Total Stockholder Equity ($M),4563,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,5.5,Profit Ratios,Xinjiang Guanghui Industry Investment,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21903,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),329,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),92890,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-79.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",56960,,,,,,,,Yitzhak Peterburg,Pharmaceuticals,0,496,CEO,Yitzhak Peterburg,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Petach Tikva, Israel",Website,http://www.tevapharm.com,Years on Global 500 List,1,Employees,56960,Company Information,Revenues ($M),21903,Profits ($M),329,Assets ($M),92890,Total Stockholder Equity ($M),33337,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1,Profit Ratios,Teva Pharmaceutical Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21796,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),743.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),100609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",54378,427,,,,,,,Wan Feng,"Insurance: Life, Health (stock)",427,497,CEO,Wan Feng,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Beijing, China",Website,http://www.newchinalife.com,Years on Global 500 List,2,Employees,54378,Company Information,Revenues ($M),21796,Profits ($M),743.9,Assets ($M),100609,Total Stockholder Equity ($M),8507,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.7,Profit Ratios,New China Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21741,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),406.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11630,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",77210,437,,,,,,,David T. Potts,Food and Drug Stores,437,498,CEO,David T. Potts,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Bradford, Britain",Website,http://www.morrisons.com,Years on Global 500 List,13,Employees,77210,Company Information,Revenues ($M),21741,Profits ($M),406.4,Assets ($M),11630,Total Stockholder Equity ($M),5111,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,8,Profit Ratios,Wm. Morrison Supermarkets,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21655,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1151.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16247,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,195.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",66779,467,,,,,,,Friedrich Joussen,Travel Services,467,499,CEO,Friedrich Joussen,Sector,Business Services,Industry,Travel Services,HQ Location,"Hanover, Germany",Website,http://www.tuigroup.com,Years on Global 500 List,23,Employees,66779,Company Information,Revenues ($M),21655,Profits ($M),1151.7,Assets ($M),16247,Total Stockholder Equity ($M),3006,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.3,Profits as % of Assets,7.1,Profits as % of Stockholder Equity,38.3,Profit Ratios,TUI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21609,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),430.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10060,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",26000,,Fortune 500,129,,,,,Michael J. Jackson,Specialty Retailers,0,500,CEO,Michael J. Jackson,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Fort Lauderdale, FL",Website,http://www.autonation.com,Years on Global 500 List,12,Employees,26000,Company Information,Revenues ($M),21609,Profits ($M),430.5,Assets ($M),10060,Total Stockholder Equity ($M),2310,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,18.6,Profit Ratios,AutoNation,, ================================================ FILE: data/hacker_news.csv ================================================ 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 ================================================ FILE: data/melina_trump_speech.txt ================================================ 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. ================================================ FILE: data/michelle_obama_speech.txt ================================================ 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. ================================================ FILE: data/obama_speech.txt ================================================ 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. ================================================ FILE: data/result.csv ================================================ highlights/0/description,highlights/0/title,highlights/0/value,highlights/1/description,highlights/1/title,highlights/1/value,highlights/2/description,highlights/2/title,highlights/2/value,highlights/3/description,highlights/3/title,highlights/3/value,highlights/4/description,highlights/4/title,highlights/4/value,highlights/5/description,highlights/5/value,highlights/6/value,lists/0/name,lists/0/rank,lists/1/name,lists/1/rank,lists/2/name,lists/2/rank,meta/ceo,meta/industry,meta/previousRank,meta/rank,tables/0/data/0/name,tables/0/data/0/value,tables/0/data/1/name,tables/0/data/1/value,tables/0/data/2/name,tables/0/data/2/value,tables/0/data/3/name,tables/0/data/3/value,tables/0/data/4/name,tables/0/data/4/value,tables/0/data/5/name,tables/0/data/5/value,tables/0/data/6/name,tables/0/data/6/value,tables/0/name,tables/1/data/0/name,tables/1/data/0/value,tables/1/data/1/name,tables/1/data/1/value,tables/1/data/2/name,tables/1/data/2/value,tables/1/data/3/name,tables/1/data/3/value,tables/1/name,tables/2/data/0/name,tables/2/data/0/value,tables/2/data/1/name,tables/2/data/1/value,tables/2/data/2/name,tables/2/data/2/value,tables/2/name,title,lists/3/name,lists/3/rank Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),485873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13643,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),198825,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",2300000,1,Fortune 500,1,World’s Most Admired Companies,42,Change the World,15,C. Douglas McMillon,General Merchandisers,1,1,CEO,C. Douglas McMillon,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Bentonville, AR",Website,http://www.walmart.com,Years on Global 500 List,23,Employees,2300000,Company Information,Revenues ($M),485873,Profits ($M),13643,Assets ($M),198825,Total Stockholder Equity ($M),77798,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,6.9,Profits as % of Stockholder Equity,17.5,Profit Ratios,Walmart,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),315199,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9571.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),489838,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",926067,2,,,,,,,Kou Wei,Utilities,2,2,CEO,Kou Wei,Sector,Energy,Industry,Utilities,HQ Location,"Beijing, China",Website,http://www.sgcc.com.cn,Years on Global 500 List,17,Employees,926067,Company Information,Revenues ($M),315199,Profits ($M),9571.3,Assets ($M),489838,Total Stockholder Equity ($M),209456,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,2,Profits as % of Stockholder Equity,4.6,Profit Ratios,State Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),267518,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1257.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),310726,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-65,"Total employees (full-time equivalent, if available) at fiscal year-end.",713288,4,,,,,,,Wang Yupu,Petroleum Refining,4,3,CEO,Wang Yupu,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Beijing, China",Website,http://www.sinopec.com,Years on Global 500 List,19,Employees,713288,Company Information,Revenues ($M),267518,Profits ($M),1257.9,Assets ($M),310726,Total Stockholder Equity ($M),106523,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.2,Profit Ratios,Sinopec Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),262573,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1867.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),585619,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-73.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",1512048,3,,,,,,,Zhang Jianhua,Petroleum Refining,3,4,CEO,Zhang Jianhua,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Beijing, China",Website,http://www.cnpc.com.cn,Years on Global 500 List,17,Employees,1512048,Company Information,Revenues ($M),262573,Profits ($M),1867.5,Assets ($M),585619,Total Stockholder Equity ($M),301893,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,0.6,Profit Ratios,China National Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),254694,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16899.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),437575,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",364445,8,World’s Most Admired Companies,34,,,,,Akio Toyoda,Motor Vehicles and Parts,8,5,CEO,Akio Toyoda,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Toyota, Japan",Website,http://www.toyota-global.com,Years on Global 500 List,23,Employees,364445,Company Information,Revenues ($M),254694,Profits ($M),16899.3,Assets ($M),437575,Total Stockholder Equity ($M),157210,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.6,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.7,Profit Ratios,Toyota Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),240264,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5937.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),432116,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",626715,7,,,,,,,Matthias Muller,Motor Vehicles and Parts,7,6,CEO,Matthias Muller,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Wolfsburg, Germany",Website,http://www.volkswagen.com,Years on Global 500 List,23,Employees,626715,Company Information,Revenues ($M),240264,Profits ($M),5937.3,Assets ($M),432116,Total Stockholder Equity ($M),97753,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,6.1,Profit Ratios,Volkswagen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),240033,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4575,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),411275,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,135.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",89000,5,,,,,,,Ben van Beurden,Petroleum Refining,5,7,CEO,Ben van Beurden,Sector,Energy,Industry,Petroleum Refining,HQ Location,"The Hague, Netherlands",Website,http://www.shell.com,Years on Global 500 List,23,Employees,89000,Company Information,Revenues ($M),240033,Profits ($M),4575,Assets ($M),411275,Total Stockholder Equity ($M),186646,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,2.5,Profit Ratios,Royal Dutch Shell,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),223604,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24074,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),620854,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",367700,11,Fortune 500,2,World’s Most Admired Companies,4,,,Warren E. Buffett,Insurance: Property and Casualty (Stock),11,8,CEO,Warren E. Buffett,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Omaha, NE",Website,http://www.berkshirehathaway.com,Years on Global 500 List,21,Employees,367700,Company Information,Revenues ($M),223604,Profits ($M),24074,Assets ($M),620854,Total Stockholder Equity ($M),283001,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.8,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,8.5,Profit Ratios,Berkshire Hathaway,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),215639,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),45687,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),321686,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",116000,9,Fortune 500,3,World’s Most Admired Companies,1,,,Timothy D. Cook,"Computers, Office Equipment",9,9,CEO,Timothy D. Cook,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Cupertino, CA",Website,http://www.apple.com,Years on Global 500 List,15,Employees,116000,Company Information,Revenues ($M),215639,Profits ($M),45687,Assets ($M),321686,Total Stockholder Equity ($M),128249,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.2,Profits as % of Assets,14.2,Profits as % of Stockholder Equity,35.6,Profit Ratios,Apple,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),205004,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7840,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),330314,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-51.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",72700,6,Fortune 500,4,World’s Most Admired Companies,40,,,Darren W. Woods,Petroleum Refining,6,10,CEO,Darren W. Woods,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Irving, TX",Website,http://www.exxonmobil.com,Years on Global 500 List,23,Employees,72700,Company Information,Revenues ($M),205004,Profits ($M),7840,Assets ($M),330314,Total Stockholder Equity ($M),167325,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,4.7,Profit Ratios,Exxon Mobil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),198533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5070,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),60969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,124.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",64500,12,Fortune 500,5,World’s Most Admired Companies,100000,,,John H. Hammergren,Wholesalers: Health Care,12,11,CEO,John H. Hammergren,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"San Francisco, CA",Website,http://www.mckesson.com,Years on Global 500 List,23,Employees,64500,Company Information,Revenues ($M),198533,Profits ($M),5070,Assets ($M),60969,Total Stockholder Equity ($M),11095,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,45.7,Profit Ratios,McKesson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),186606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),115,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),263316,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",74500,10,,,,,,,Robert W. Dudley,Petroleum Refining,10,12,CEO,Robert W. Dudley,Sector,Energy,Industry,Petroleum Refining,HQ Location,"London, Britain",Website,http://www.bp.com,Years on Global 500 List,23,Employees,74500,Company Information,Revenues ($M),186606,Profits ($M),115,Assets ($M),263316,Total Stockholder Equity ($M),95286,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,BP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),184840,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7017,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),122810,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",230000,17,Fortune 500,6,World’s Most Admired Companies,100000,,,Stephen J. Hemsley,Health Care: Insurance and Managed Care,17,13,CEO,Stephen J. Hemsley,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Minnetonka, MN",Website,http://www.unitedhealthgroup.com,Years on Global 500 List,21,Employees,230000,Company Information,Revenues ($M),184840,Profits ($M),7017,Assets ($M),122810,Total Stockholder Equity ($M),38274,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,18.3,Profit Ratios,UnitedHealth Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),177526,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,15.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5317,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),94462,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",204000,18,Fortune 500,7,World’s Most Admired Companies,45,Change the World,28,Larry J. Merlo,Health Care: Pharmacy and Other Services,18,14,CEO,Larry J. Merlo,Sector,Health Care,Industry,Health Care: Pharmacy and Other Services,HQ Location,"Woonsocket, RI",Website,http://www.cvshealth.com,Years on Global 500 List,22,Employees,204000,Company Information,Revenues ($M),177526,Profits ($M),5317,Assets ($M),94462,Total Stockholder Equity ($M),36830,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,14.4,Profit Ratios,CVS Health,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),173957,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),19316.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),217104,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",325000,13,World’s Most Admired Companies,100000,,,,,Oh-Hyun Kwon,"Electronics, Electrical Equip.",13,15,CEO,Oh-Hyun Kwon,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Suwon, South Korea",Website,http://www.samsung.com,Years on Global 500 List,23,Employees,325000,Company Information,Revenues ($M),173957,Profits ($M),19316.5,Assets ($M),217104,Total Stockholder Equity ($M),154376,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.1,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,12.5,Profit Ratios,Samsung Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),173883,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1379,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),124600,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",93123,14,,,,,,,Ivan Glasenberg,"Mining, Crude-Oil Production",14,16,CEO,Ivan Glasenberg,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Baar, Switzerland",Website,http://www.glencore.com,Years on Global 500 List,7,Employees,93123,Company Information,Revenues ($M),173883,Profits ($M),1379,Assets ($M),124600,Total Stockholder Equity ($M),44243,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,3.1,Profit Ratios,Glencore,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),169483,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9428.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),256262,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",282488,16,World’s Most Admired Companies,100000,,,,,Dieter Zetsche,Motor Vehicles and Parts,16,17,CEO,Dieter Zetsche,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Stuttgart, Germany",Website,http://www.daimler.com,Years on Global 500 List,23,Employees,282488,Company Information,Revenues ($M),169483,Profits ($M),9428.4,Assets ($M),256262,Total Stockholder Equity ($M),61116,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,15.4,Profit Ratios,Daimler,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),166380,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9427,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),221690,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",225000,20,Fortune 500,8,World’s Most Admired Companies,100000,,,Mary T. Barra,Motor Vehicles and Parts,20,18,CEO,Mary T. Barra,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Detroit, MI",Website,http://www.gm.com,Years on Global 500 List,23,Employees,225000,Company Information,Revenues ($M),166380,Profits ($M),9427,Assets ($M),221690,Total Stockholder Equity ($M),43836,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,21.5,Profit Ratios,General Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),163786,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),12976,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),403821,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",268540,23,Fortune 500,9,World’s Most Admired Companies,37,The 100 Best Companies to Work For,93,Randall L. Stephenson,Telecommunications,23,19,CEO,Randall L. Stephenson,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Dallas, TX",Website,http://www.att.com,Years on Global 500 List,23,Employees,268540,Company Information,Revenues ($M),163786,Profits ($M),12976,Assets ($M),403821,Total Stockholder Equity ($M),123135,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,3.2,Profits as % of Stockholder Equity,10.5,Profit Ratios,AT&T,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),154894,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),651.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),186172,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",302562,19,,,,,,,John Elkann,Diversified Financials,19,20,CEO,John Elkann,Sector,Financials,Industry,Diversified Financials,HQ Location,"Amsterdam, Netherlands",Website,http://www.exor.com,Years on Global 500 List,7,Employees,302562,Company Information,Revenues ($M),154894,Profits ($M),651.3,Assets ($M),186172,Total Stockholder Equity ($M),11582,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,5.6,Profit Ratios,EXOR Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),151800,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4596,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),237951,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-37.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",201000,21,Fortune 500,10,World’s Most Admired Companies,100000,,,James P. Hackett,Motor Vehicles and Parts,21,21,CEO,James P. Hackett,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Dearborn, MI",Website,http://www.ford.com,Years on Global 500 List,23,Employees,201000,Company Information,Revenues ($M),151800,Profits ($M),4596,Assets ($M),237951,Total Stockholder Equity ($M),29170,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,15.8,Profit Ratios,Ford Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),147675,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),41883.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3473238,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",461749,15,,,,,,,Gu Shu,Banks: Commercial and Savings,15,22,CEO,Gu Shu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.icbc-ltd.com,Years on Global 500 List,19,Employees,461749,Company Information,Revenues ($M),147675,Profits ($M),41883.9,Assets ($M),3473238,Total Stockholder Equity ($M),283438,Key Financials (Last Fiscal Year),Profit as % of Revenues,28.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,14.8,Profit Ratios,Industrial & Commercial Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),146850,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1427.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33656,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",18500,28,Fortune 500,11,World’s Most Admired Companies,100000,,,Steven H. Collis,Wholesalers: Health Care,28,23,CEO,Steven H. Collis,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Chesterbrook, PA",Website,http://www.amerisourcebergen.com,Years on Global 500 List,18,Employees,18500,Company Information,Revenues ($M),146850,Profits ($M),1427.9,Assets ($M),33656,Total Stockholder Equity ($M),2129,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,67.1,Profit Ratios,AmerisourceBergen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),144505,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2492.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),201269,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",263915,27,,,,,,,Guan Qing,"Engineering, Construction",27,24,CEO,Guan Qing,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.cscec.com,Years on Global 500 List,6,Employees,263915,Company Information,Revenues ($M),144505,Profits ($M),2492.9,Assets ($M),201269,Total Stockholder Equity ($M),15344,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,16.2,Profit Ratios,China State Construction Engineering,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),143722,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6446,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),941556,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",97707,33,,,,,,,Thomas Buberl,"Insurance: Life, Health (stock)",33,25,CEO,Thomas Buberl,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Paris, France",Website,http://www.axa.com,Years on Global 500 List,23,Employees,97707,Company Information,Revenues ($M),143722,Profits ($M),6446,Assets ($M),941556,Total Stockholder Equity ($M),74454,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.5,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.7,Profit Ratios,AXA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135987,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2371,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),83402,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,297.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",341400,44,Fortune 500,12,World’s Most Admired Companies,2,,,Jeffrey P. Bezos,Internet Services and Retailing,44,26,CEO,Jeffrey P. Bezos,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Seattle, WA",Website,http://www.amazon.com,Years on Global 500 List,9,Employees,341400,Company Information,Revenues ($M),135987,Profits ($M),2371,Assets ($M),83402,Total Stockholder Equity ($M),19285,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,12.3,Profit Ratios,Amazon.com,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135129,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4608.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80436,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",726772,25,,,,,,,Terry Gou,"Electronics, Electrical Equip.",25,27,CEO,Terry Gou,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"New Taipei City, Taiwan",Website,http://www.foxconn.com,Years on Global 500 List,13,Employees,726772,Company Information,Revenues ($M),135129,Profits ($M),4608.8,Assets ($M),80436,Total Stockholder Equity ($M),33476,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,13.8,Profit Ratios,Hon Hai Precision Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),135093,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),34840.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3016578,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4,"Total employees (full-time equivalent, if available) at fiscal year-end.",362482,22,,,,,,,Wang Hongzhang,Banks: Commercial and Savings,22,28,CEO,Wang Hongzhang,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.ccb.com,Years on Global 500 List,18,Employees,362482,Company Information,Revenues ($M),135093,Profits ($M),34840.9,Assets ($M),3016578,Total Stockholder Equity ($M),226851,Key Financials (Last Fiscal Year),Profit as % of Revenues,25.8,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,15.4,Profit Ratios,China Construction Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),129198,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5690.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),170165,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,98.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",211915,36,World’s Most Admired Companies,100000,,,,,Takahiro Hachigo,Motor Vehicles and Parts,36,29,CEO,Takahiro Hachigo,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.honda.com,Years on Global 500 List,23,Employees,211915,Company Information,Revenues ($M),129198,Profits ($M),5690.3,Assets ($M),170165,Total Stockholder Equity ($M),65482,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,8.7,Profit Ratios,Honda Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),127925,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6196,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),230978,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",102168,24,,,,,,,Patrick Pouyanne,Petroleum Refining,24,30,CEO,Patrick Pouyanne,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Courbevoie, France",Website,http://www.total.com,Years on Global 500 List,23,Employees,102168,Company Information,Revenues ($M),127925,Profits ($M),6196,Assets ($M),230978,Total Stockholder Equity ($M),98680,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6.3,Profit Ratios,Total,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),126661,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8831,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),365183,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",295000,26,Fortune 500,13,World’s Most Admired Companies,7,Change the World,3,Jeffrey R. Immelt,Industrial Machinery,26,31,CEO,Jeffrey R. Immelt,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Boston, MA",Website,http://www.ge.com,Years on Global 500 List,23,Employees,295000,Company Information,Revenues ($M),126661,Profits ($M),8831,Assets ($M),365183,Total Stockholder Equity ($M),75828,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,11.6,Profit Ratios,General Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),125980,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13127,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),244180,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-26.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",160900,30,Fortune 500,14,World’s Most Admired Companies,100000,,,Lowell C. McAdam,Telecommunications,30,32,CEO,Lowell C. McAdam,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"New York, NY",Website,http://www.verizon.com,Years on Global 500 List,23,Employees,160900,Company Information,Revenues ($M),125980,Profits ($M),13127,Assets ($M),244180,Total Stockholder Equity ($M),22524,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.4,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,58.3,Profit Ratios,Verizon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),122990,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-267.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2631385,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-107.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",248384,37,,,,,,,Masatsugu Nagato,"Insurance: Life, Health (stock)",37,33,CEO,Masatsugu Nagato,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Tokyo, Japan",Website,http://www.japanpost.jp,Years on Global 500 List,21,Employees,248384,Company Information,Revenues ($M),122990,Profits ($M),-267.4,Assets ($M),2631385,Total Stockholder Equity ($M),91532,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.3,Profit Ratios,Japan Post Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),122196,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7611.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),932091,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",140253,34,World’s Most Admired Companies,100000,,,,,Oliver Bate,Insurance: Property and Casualty (Stock),34,34,CEO,Oliver Bate,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Munich, Germany",Website,http://www.allianz.com,Years on Global 500 List,23,Employees,140253,Company Information,Revenues ($M),122196,Profits ($M),7611.5,Assets ($M),932091,Total Stockholder Equity ($M),71020,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,10.7,Profit Ratios,Allianz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),121546,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1427,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34122,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,17.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",37300,50,Fortune 500,15,World’s Most Admired Companies,100000,,,George S. Barrett,Wholesalers: Health Care,50,35,CEO,George S. Barrett,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Dublin, OH",Website,http://www.cardinalhealth.com,Years on Global 500 List,20,Employees,37300,Company Information,Revenues ($M),121546,Profits ($M),1427,Assets ($M),34122,Total Stockholder Equity ($M),6554,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,21.8,Profit Ratios,Cardinal Health,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),118719,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2350,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33163,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",172000,38,Fortune 500,16,World’s Most Admired Companies,15,,,W. Craig Jelinek,General Merchandisers,38,36,CEO,W. Craig Jelinek,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Issaquah, WA",Website,http://www.costco.com,Years on Global 500 List,23,Employees,172000,Company Information,Revenues ($M),118719,Profits ($M),2350,Assets ($M),33163,Total Stockholder Equity ($M),12079,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,7.1,Profits as % of Stockholder Equity,19.5,Profit Ratios,Costco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),117351,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,13.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4173,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72688,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",300000,47,Fortune 500,17,World’s Most Admired Companies,100000,,,Stefano Pessina,Food and Drug Stores,47,37,CEO,Stefano Pessina,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Deerfield, IL",Website,http://www.walgreensbootsalliance.com,Years on Global 500 List,23,Employees,300000,Company Information,Revenues ($M),117351,Profits ($M),4173,Assets ($M),72688,Total Stockholder Equity ($M),29880,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,14,Profit Ratios,Walgreens Boots Alliance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),117275,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),27687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2816039,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",501368,29,,,,,,,Zhao Huan,Banks: Commercial and Savings,29,38,CEO,Zhao Huan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.abchina.com,Years on Global 500 List,18,Employees,501368,Company Information,Revenues ($M),117275,Profits ($M),27687.8,Assets ($M),2816039,Total Stockholder Equity ($M),189682,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,14.6,Profit Ratios,Agricultural Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),116581,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9392,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),802490,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",318588,41,,,,,,,Ma Mingzhe,"Insurance: Life, Health (stock)",41,39,CEO,Ma Mingzhe,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Shenzhen, China",Website,http://www.pingan.com,Years on Global 500 List,8,Employees,318588,Company Information,Revenues ($M),116581,Profits ($M),9392,Assets ($M),802490,Total Stockholder Equity ($M),55177,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.1,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,17,Profit Ratios,Ping An Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),115337,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1975,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36505,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",443000,42,Fortune 500,18,World’s Most Admired Companies,100000,,,W. Rodney McMullen,Food and Drug Stores,42,40,CEO,W. Rodney McMullen,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Cincinnati, OH",Website,http://www.thekrogerco.com,Years on Global 500 List,23,Employees,443000,Company Information,Revenues ($M),115337,Profits ($M),1975,Assets ($M),36505,Total Stockholder Equity ($M),6698,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,29.5,Profit Ratios,Kroger,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),113861,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4818.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84989,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",97582,46,,,,,,,Chen Zhixin,Motor Vehicles and Parts,46,41,CEO,Chen Zhixin,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Shanghai, China",Website,http://www.saicmotor.com,Years on Global 500 List,6,Employees,97582,Company Information,Revenues ($M),113861,Profits ($M),4818.2,Assets ($M),84989,Total Stockholder Equity ($M),27617,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,17.4,Profit Ratios,SAIC Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),113708,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24773.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2611539,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",308900,35,,,,,,,Chen Siqing,Banks: Commercial and Savings,35,42,CEO,Chen Siqing,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.boc.cn,Years on Global 500 List,23,Employees,308900,Company Information,Revenues ($M),113708,Profits ($M),24773.4,Assets ($M),2611539,Total Stockholder Equity ($M),203134,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.8,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,12.2,Profit Ratios,Bank of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),109026,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8517.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2190423,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",184839,39,,,,,,,Jean-Laurent Bonnafe,Banks: Commercial and Savings,39,43,CEO,Jean-Laurent Bonnafe,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.bnpparibas.com,Years on Global 500 List,23,Employees,184839,Company Information,Revenues ($M),109026,Profits ($M),8517.2,Assets ($M),2190423,Total Stockholder Equity ($M),106164,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8,Profit Ratios,BNP Paribas,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),108164,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6123.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165344,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,40.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",137250,53,World’s Most Admired Companies,100000,,,,,Hiroto Saikawa,Motor Vehicles and Parts,53,44,CEO,Hiroto Saikawa,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Yokohama, Japan",Website,http://www.nissan-global.com,Years on Global 500 List,23,Employees,137250,Company Information,Revenues ($M),108164,Profits ($M),6123.4,Assets ($M),165344,Total Stockholder Equity ($M),50550,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,12.1,Profit Ratios,Nissan Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107567,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-497,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),260078,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-110.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",55200,31,Fortune 500,19,,,,,John S. Watson,Petroleum Refining,31,45,CEO,John S. Watson,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Ramon, CA",Website,http://www.chevron.com,Years on Global 500 List,23,Employees,55200,Company Information,Revenues ($M),107567,Profits ($M),-497,Assets ($M),260078,Total Stockholder Equity ($M),145556,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.5,Profits as % of Assets,-0.2,Profits as % of Stockholder Equity,-0.3,Profit Ratios,Chevron,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107162,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),12313,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3287968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",7000,40,Fortune 500,20,,,,,Timothy J. Mayopoulos,Diversified Financials,40,46,CEO,Timothy J. Mayopoulos,Sector,Financials,Industry,Diversified Financials,HQ Location,"Washington, DC",Website,http://www.fanniemae.com,Years on Global 500 List,20,Employees,7000,Company Information,Revenues ($M),107162,Profits ($M),12313,Assets ($M),3287968,Total Stockholder Equity ($M),6071,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,202.8,Profit Ratios,Fannie Mae,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),107117,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9614.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),246446,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",463712,45,,,,,,,Li Yue,Telecommunications,45,47,CEO,Li Yue,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.10086.cn,Years on Global 500 List,17,Employees,463712,Company Information,Revenues ($M),107117,Profits ($M),9614.3,Assets ($M),246446,Total Stockholder Equity ($M),130459,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,7.4,Profit Ratios,China Mobile Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105486,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),24733,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2490972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",243355,55,Fortune 500,21,World’s Most Admired Companies,22,,,James Dimon,Banks: Commercial and Savings,55,48,CEO,James Dimon,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.jpmorganchase.com,Years on Global 500 List,23,Employees,243355,Company Information,Revenues ($M),105486,Profits ($M),24733,Assets ($M),2490972,Total Stockholder Equity ($M),254190,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.4,Profits as % of Assets,1,Profits as % of Stockholder Equity,9.7,Profit Ratios,J.P. Morgan Chase,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105235,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,442.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1697.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),577954,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",8939,,,,,,,,Nigel Wilson,"Insurance: Life, Health (stock)",0,49,CEO,Nigel Wilson,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.legalandgeneralgroup.com,Years on Global 500 List,17,Employees,8939,Company Information,Revenues ($M),105235,Profits ($M),1697.9,Assets ($M),577954,Total Stockholder Equity ($M),8579,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,19.8,Profit Ratios,Legal & General Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),105128,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7384.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),190740,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",274844,60,World’s Most Admired Companies,100000,,,,,Hiroo Unoura,Telecommunications,60,50,CEO,Hiroo Unoura,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.ntt.co.jp,Years on Global 500 List,23,Employees,274844,Company Information,Revenues ($M),105128,Profits ($M),7384.4,Assets ($M),190740,Total Stockholder Equity ($M),81254,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,9.1,Profit Ratios,Nippon Telegraph & Telephone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),104818,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),162.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),483026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-96.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",143676,54,,,,,,,Yang Mingsheng,"Insurance: Life, Health (stock)",54,51,CEO,Yang Mingsheng,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Beijing, China",Website,http://www.chinalife.com.cn,Years on Global 500 List,15,Employees,143676,Company Information,Revenues ($M),104818,Profits ($M),162.4,Assets ($M),483026,Total Stockholder Equity ($M),14079,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,,Profits as % of Stockholder Equity,1.2,Profit Ratios,China Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),104130,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7589.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),198835,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",124729,51,World’s Most Admired Companies,21,,,,,Harald Kruger,Motor Vehicles and Parts,51,52,CEO,Harald Kruger,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Munich, Germany",Website,http://www.bmwgroup.com,Years on Global 500 List,23,Employees,124729,Company Information,Revenues ($M),104130,Profits ($M),7589.4,Assets ($M),198835,Total Stockholder Equity ($M),49682,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.3,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,15.3,Profit Ratios,BMW Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),100288,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3404.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51745,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",25600,52,Fortune 500,22,World’s Most Admired Companies,100000,,,Timothy C. Wentworth,Health Care: Pharmacy and Other Services,52,53,CEO,Timothy C. Wentworth,Sector,Health Care,Industry,Health Care: Pharmacy and Other Services,HQ Location,"St. Louis, MO",Website,http://www.express-scripts.com,Years on Global 500 List,15,Employees,25600,Company Information,Revenues ($M),100288,Profits ($M),3404.4,Assets ($M),51745,Total Stockholder Equity ($M),16236,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,6.6,Profits as % of Stockholder Equity,21,Profit Ratios,Express Scripts Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),98098,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),750.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),41230,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",4107,59,,,,,,,Jeremy Weir,Trading,59,54,CEO,Jeremy Weir,Sector,Wholesalers,Industry,Trading,HQ Location,Singapore,Website,http://www.trafigura.com,Years on Global 500 List,3,Employees,4107,Company Information,Revenues ($M),98098,Profits ($M),750.8,Assets ($M),41230,Total Stockholder Equity ($M),5548,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,13.5,Profit Ratios,Trafigura Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),96979,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),924.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108864,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6,"Total employees (full-time equivalent, if available) at fiscal year-end.",292215,57,,,,,,,Zhang Zongyan,"Engineering, Construction",57,55,CEO,Zhang Zongyan,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.crecg.com,Years on Global 500 List,3,Employees,292215,Company Information,Revenues ($M),96979,Profits ($M),924.1,Assets ($M),108864,Total Stockholder Equity ($M),10806,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,8.6,Profit Ratios,China Railway Engineering,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),96965,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,53.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2592.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),581221,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",23673,126,,,,,,,Michael A. Wells,"Insurance: Life, Health (stock)",126,56,CEO,Michael A. Wells,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.prudential.co.uk,Years on Global 500 List,22,Employees,23673,Company Information,Revenues ($M),96965,Profits ($M),2592.8,Assets ($M),581221,Total Stockholder Equity ($M),18117,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,14.3,Profit Ratios,Prudential,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),95217,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2301.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),549656,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",73727,49,,,,,,,Philippe R. Donnet,"Insurance: Life, Health (stock)",49,57,CEO,Philippe R. Donnet,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Trieste, Italy",Website,http://www.generali.com,Years on Global 500 List,23,Employees,73727,Company Information,Revenues ($M),95217,Profits ($M),2301.3,Assets ($M),549656,Total Stockholder Equity ($M),25886,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Assicurazioni Generali,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94877,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1192.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),109968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",336872,62,,,,,,,Meng Fengchao,"Engineering, Construction",62,58,CEO,Meng Fengchao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.crcc.cn,Years on Global 500 List,6,Employees,336872,Company Information,Revenues ($M),94877,Profits ($M),1192.4,Assets ($M),109968,Total Stockholder Equity ($M),10146,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,11.8,Profit Ratios,China Railway Construction,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94595,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7957,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42966,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",406000,69,Fortune 500,23,World’s Most Admired Companies,32,,,Craig A. Menear,Specialty Retailers,69,59,CEO,Craig A. Menear,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Atlanta, GA",Website,http://www.homedepot.com,Years on Global 500 List,23,Employees,406000,Company Information,Revenues ($M),94595,Profits ($M),7957,Assets ($M),42966,Total Stockholder Equity ($M),4333,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.4,Profits as % of Assets,18.5,Profits as % of Stockholder Equity,183.6,Profit Ratios,Home Depot,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94571,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4895,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89997,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",150540,61,Fortune 500,24,World’s Most Admired Companies,30,,,Dennis A. Muilenburg,Aerospace and Defense,61,60,CEO,Dennis A. Muilenburg,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Chicago, IL",Website,http://www.boeing.com,Years on Global 500 List,23,Employees,150540,Company Information,Revenues ($M),94571,Profits ($M),4895,Assets ($M),89997,Total Stockholder Equity ($M),817,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,599.1,Profit Ratios,Boeing,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),94176,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),21938,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1930115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",269100,67,Fortune 500,25,,,,,Timothy J. Sloan,Banks: Commercial and Savings,67,61,CEO,Timothy J. Sloan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"San Francisco, CA",Website,http://www.wellsfargo.com,Years on Global 500 List,20,Employees,269100,Company Information,Revenues ($M),94176,Profits ($M),21938,Assets ($M),1930115,Total Stockholder Equity ($M),199581,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.3,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,11,Profit Ratios,Wells Fargo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),93662,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),17906,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2187702,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",208024,64,Fortune 500,26,World’s Most Admired Companies,100000,Change the World,16,Brian T. Moynihan,Banks: Commercial and Savings,64,62,CEO,Brian T. Moynihan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Charlotte, NC",Website,http://www.bankofamerica.com,Years on Global 500 List,23,Employees,208024,Company Information,Revenues ($M),93662,Profits ($M),17906,Assets ($M),2187702,Total Stockholder Equity ($M),266840,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.7,Profit Ratios,Bank of America Corp.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),91382,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),14222.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),277262,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",467400,56,,,,,,,Alexey B. Miller,Energy,56,63,CEO,Alexey B. Miller,Sector,Energy,Industry,Energy,HQ Location,"Moscow, Russia",Website,http://www.gazprom.com,Years on Global 500 List,21,Employees,467400,Company Information,Revenues ($M),91382,Profits ($M),14222.6,Assets ($M),277262,Total Stockholder Equity ($M),181813,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.6,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,7.8,Profit Ratios,Gazprom,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),90814,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8659.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),129824,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",328000,66,World’s Most Admired Companies,36,Change the World,5,,,Ulf Mark Schneider,Food Consumer Products,66,64,CEO,Ulf Mark Schneider,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Vevey, Switzerland",Website,http://www.nestle.com,Years on Global 500 List,23,Employees,328000,Company Information,Revenues ($M),90814,Profits ($M),8659.2,Assets ($M),129824,Total Stockholder Equity ($M),63573,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,6.7,Profits as % of Stockholder Equity,13.6,Profit Ratios,Nestle,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),90272,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),19478,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),167497,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",72053,94,Fortune 500,27,World’s Most Admired Companies,6,The 100 Best Companies to Work For,1,Larry Page,Internet Services and Retailing,94,65,CEO,Larry Page,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Mountain View, CA",Website,http://www.abc.xyz,Years on Global 500 List,9,Employees,72053,Company Information,Revenues ($M),90272,Profits ($M),19478,Assets ($M),167497,Total Stockholder Equity ($M),139036,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.6,Profits as % of Assets,11.6,Profits as % of Stockholder Equity,14,Profit Ratios,Alphabet,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),88419,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6050.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141271,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-27.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",351000,71,World’s Most Admired Companies,100000,Change the World,21,,,Josef Kaeser,Industrial Machinery,71,66,CEO,Josef Kaeser,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Munich, Germany",Website,http://www.siemens.com,Years on Global 500 List,23,Employees,351000,Company Information,Revenues ($M),88419,Profits ($M),6050.5,Assets ($M),141271,Total Stockholder Equity ($M),38444,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,15.7,Profit Ratios,Siemens,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),87112,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),825,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51513,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-24.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",384151,73,,,,,,,Georges Plassat,Food and Drug Stores,73,67,CEO,Georges Plassat,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Boulogne-Billancourt, France",Website,http://www.carrefour.com,Years on Global 500 List,23,Employees,384151,Company Information,Revenues ($M),87112,Profits ($M),825,Assets ($M),51513,Total Stockholder Equity ($M),10996,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,7.5,Profit Ratios,Carrefour,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),86194,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1415,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59532,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",189795,81,,,,,,,Li Shaozhu,Motor Vehicles and Parts,81,68,CEO,Li Shaozhu,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Wuhan, China",Website,http://www.dfmc.com.cn,Years on Global 500 List,8,Employees,189795,Company Information,Revenues ($M),86194,Profits ($M),1415,Assets ($M),59532,Total Stockholder Equity ($M),11464,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,12.3,Profit Ratios,Dongfeng Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),85320,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16798,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),193694,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",114000,63,Fortune 500,28,World’s Most Admired Companies,9,,,Satya Nadella,Computer Software,63,69,CEO,Satya Nadella,Sector,Technology,Industry,Computer Software,HQ Location,"Redmond, WA",Website,http://www.microsoft.com,Years on Global 500 List,20,Employees,114000,Company Information,Revenues ($M),85320,Profits ($M),16798,Assets ($M),193694,Total Stockholder Equity ($M),71997,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.7,Profits as % of Assets,8.7,Profits as % of Stockholder Equity,23.3,Profit Ratios,Microsoft,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),84863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2469.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65083,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",53000,85,Fortune 500,29,,,,,Joseph R. Swedish,Health Care: Insurance and Managed Care,85,70,CEO,Joseph R. Swedish,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Indianapolis, IN",Website,http://www.antheminc.com,Years on Global 500 List,16,Employees,53000,Company Information,Revenues ($M),84863,Profits ($M),2469.8,Assets ($M),65083,Total Stockholder Equity ($M),25100,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,9.8,Profit Ratios,Anthem,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),84558,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2134.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86742,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,48.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",303887,79,World’s Most Admired Companies,100000,,,,,Toshiaki Higashihara,"Electronics, Electrical Equip.",79,71,CEO,Toshiaki Higashihara,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.hitachi.com,Years on Global 500 List,23,Employees,303887,Company Information,Revenues ($M),84558,Profits ($M),2134.3,Assets ($M),86742,Total Stockholder Equity ($M),26632,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,8,Profit Ratios,Hitachi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82892,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13163.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),221113,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,233.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",68402,92,,,,,,,Masayoshi Son,Telecommunications,92,72,CEO,Masayoshi Son,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.softbank.jp,Years on Global 500 List,10,Employees,68402,Company Information,Revenues ($M),82892,Profits ($M),13163.4,Assets ($M),221113,Total Stockholder Equity ($M),32191,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.9,Profits as % of Assets,6,Profits as % of Stockholder Equity,40.9,Profit Ratios,SoftBank Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82801,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6860.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1412281,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",185606,75,,,,,,,Jose Antonio Alvarez,Banks: Commercial and Savings,75,73,CEO,Jose Antonio Alvarez,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Madrid, Spain",Website,http://www.santander.com,Years on Global 500 List,23,Employees,185606,Company Information,Revenues ($M),82801,Profits ($M),6860.7,Assets ($M),1412281,Total Stockholder Equity ($M),95906,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.3,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.2,Profit Ratios,Banco Santander,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),82386,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),14912,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1792077,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",219000,70,Fortune 500,30,World’s Most Admired Companies,100000,,,Michael L. Corbat,Banks: Commercial and Savings,70,74,CEO,Michael L. Corbat,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.citigroup.com,Years on Global 500 List,23,Employees,219000,Company Information,Revenues ($M),82386,Profits ($M),14912,Assets ($M),1792077,Total Stockholder Equity ($M),225120,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.6,Profit Ratios,Citigroup,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),81405,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-4838,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),246983,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",68829,58,,,,,,,Pedro Pullen Parente,Petroleum Refining,58,75,CEO,Pedro Pullen Parente,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Rio de Janeiro, Brazil",Website,http://www.petrobras.com.br,Years on Global 500 List,23,Employees,68829,Company Information,Revenues ($M),81405,Profits ($M),-4838,Assets ($M),246983,Total Stockholder Equity ($M),76779,Key Financials (Last Fiscal Year),Profit as % of Revenues,-5.9,Profits as % of Assets,-2,Profits as % of Stockholder Equity,-6.3,Profit Ratios,Petrobras,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80869,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2155.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86348,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",389281,87,World’s Most Admired Companies,100000,,,,,Volkmar Denner,Motor Vehicles and Parts,87,76,CEO,Volkmar Denner,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Stuttgart, Germany",Website,http://www.bosch.com,Years on Global 500 List,23,Employees,389281,Company Information,Revenues ($M),80869,Profits ($M),2155.3,Assets ($M),86348,Total Stockholder Equity ($M),36316,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,5.9,Profit Ratios,Robert Bosch,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80832,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2958.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),156597,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18,"Total employees (full-time equivalent, if available) at fiscal year-end.",221000,90,,,,,,,Timotheus Hottges,Telecommunications,90,77,CEO,Timotheus Hottges,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Bonn, Germany",Website,http://www.telekom.com,Years on Global 500 List,23,Employees,221000,Company Information,Revenues ($M),80832,Profits ($M),2958.1,Assets ($M),156597,Total Stockholder Equity ($M),30906,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,9.6,Profit Ratios,Deutsche Telekom,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80701,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),148092,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",129315,84,,,,,,,Mong-Koo Chung,Motor Vehicles and Parts,84,78,CEO,Mong-Koo Chung,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://worldwide.hyundai.com,Years on Global 500 List,22,Employees,129315,Company Information,Revenues ($M),80701,Profits ($M),4659,Assets ($M),148092,Total Stockholder Equity ($M),55639,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,8.4,Profit Ratios,Hyundai Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8695,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),180500,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",159000,96,Fortune 500,31,World’s Most Admired Companies,100000,,,Brian L. Roberts,Telecommunications,96,79,CEO,Brian L. Roberts,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Philadelphia, PA",Website,http://www.comcastcorporation.com,Years on Global 500 List,15,Employees,159000,Company Information,Revenues ($M),80403,Profits ($M),8695,Assets ($M),180500,Total Stockholder Equity ($M),53943,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.8,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,16.1,Profit Ratios,Comcast,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),80258,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3914.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1607501,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",70830,77,,,,,,,Philippe Brassac,Banks: Commercial and Savings,77,80,CEO,Philippe Brassac,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.credit-agricole.com,Years on Global 500 List,23,Employees,70830,Company Information,Revenues ($M),80258,Profits ($M),3914.7,Assets ($M),1607501,Total Stockholder Equity ($M),61460,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,6.4,Profit Ratios,Credit Agricole,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),79919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),11872,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),117470,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10,"Total employees (full-time equivalent, if available) at fiscal year-end.",414400,82,Fortune 500,32,World’s Most Admired Companies,24,Change the World,47,Virginia M. Rometty,Information Technology Services,82,81,CEO,Virginia M. Rometty,Sector,Technology,Industry,Information Technology Services,HQ Location,"Armonk, NY",Website,http://www.ibm.com,Years on Global 500 List,23,Employees,414400,Company Information,Revenues ($M),79919,Profits ($M),11872,Assets ($M),117470,Total Stockholder Equity ($M),18246,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.9,Profits as % of Assets,10.1,Profits as % of Stockholder Equity,65.1,Profit Ratios,IBM,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78740,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3152.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),297026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,139.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",154808,80,,,,,,,Jean-Bernard Levy,Utilities,80,82,CEO,Jean-Bernard Levy,Sector,Energy,Industry,Utilities,HQ Location,"Paris, France",Website,http://www.edf.fr,Years on Global 500 List,23,Employees,154808,Company Information,Revenues ($M),78740,Profits ($M),3152.8,Assets ($M),297026,Total Stockholder Equity ($M),36319,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,8.7,Profit Ratios,Electricite de France,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78511,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,24.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5579.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),63837,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",180000,129,,,,,,,Ren Zhengfei,Network and Other Communications Equipment,129,83,CEO,Ren Zhengfei,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Shenzhen, China",Website,http://www.huawei.com,Years on Global 500 List,8,Employees,180000,Company Information,Revenues ($M),78511,Profits ($M),5579.4,Assets ($M),63837,Total Stockholder Equity ($M),20159,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.1,Profits as % of Assets,8.7,Profits as % of Stockholder Equity,27.7,Profit Ratios,Huawei Investment & Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),78064,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2842,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),164096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",62080,78,,,,,,,Francesco Starace,Utilities,78,84,CEO,Francesco Starace,Sector,Energy,Industry,Utilities,HQ Location,"Rome, Italy",Website,http://www.enel.com,Years on Global 500 List,23,Employees,62080,Company Information,Revenues ($M),78064,Profits ($M),2842,Assets ($M),164096,Total Stockholder Equity ($M),36704,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,7.7,Profit Ratios,Enel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),76132,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),350.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),256030,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-94.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",68234,93,Fortune 500,33,World’s Most Admired Companies,100000,,,Michael L. Tipsord,Insurance: Property and Casualty (Mutual),93,85,CEO,Michael L. Tipsord,Sector,Financials,Industry,Insurance: Property and Casualty (Mutual),HQ Location,"Bloomington, IL",Website,http://www.statefarm.com,Years on Global 500 List,23,Employees,68234,Company Information,Revenues ($M),76132,Profits ($M),350.3,Assets ($M),256030,Total Stockholder Equity ($M),87592,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.4,Profit Ratios,State Farm Insurance Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75776,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2580.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158291,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",420572,91,,,,,,,Luo Xi,Pharmaceuticals,91,86,CEO,Luo Xi,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Hong Kong, China",Website,http://www.crc.com.hk,Years on Global 500 List,8,Employees,420572,Company Information,Revenues ($M),75776,Profits ($M),2580.2,Assets ($M),158291,Total Stockholder Equity ($M),23605,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,10.9,Profit Ratios,China Resources National,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75772,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),103.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),78223,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,108.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",274760,111,,,,,,,Motoya Okada,General Merchandisers,111,87,CEO,Motoya Okada,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Chiba, Japan",Website,http://www.aeon.info,Years on Global 500 List,23,Employees,274760,Company Information,Revenues ($M),75772,Profits ($M),103.9,Assets ($M),78223,Total Stockholder Equity ($M),9567,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.1,Profit Ratios,AEON,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),75329,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2479,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2374986,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-81.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",241000,68,World’s Most Admired Companies,100000,,,,,Stuart T. Gulliver,Banks: Commercial and Savings,68,88,CEO,Stuart T. Gulliver,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.hsbc.com,Years on Global 500 List,23,Employees,241000,Company Information,Revenues ($M),75329,Profits ($M),2479,Assets ($M),2374986,Total Stockholder Equity ($M),175386,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.4,Profit Ratios,HSBC Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74629,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3168.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",362128,99,,,,,,,Yan Hao,"Engineering, Construction",99,89,CEO,Yan Hao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Nanjing, China",Website,http://www.cpcg.com.cn,Years on Global 500 List,4,Employees,362128,Company Information,Revenues ($M),74629,Profits ($M),3168.1,Assets ($M),48196,Total Stockholder Equity ($M),19835,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,6.6,Profits as % of Stockholder Equity,16,Profit Ratios,Pacific Construction Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74628,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),948.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),544063,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-32.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",29530,279,,,,,,,Mark Wilson,"Insurance: Life, Health (stock)",279,90,CEO,Mark Wilson,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.aviva.com,Years on Global 500 List,23,Employees,29530,Company Information,Revenues ($M),74628,Profits ($M),948.8,Assets ($M),544063,Total Stockholder Equity ($M),21004,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,4.5,Profit Ratios,Aviva,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74407,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-3557.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51541,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",12890,,,,,,,,Klaus Schafer,Energy,0,91,CEO,Klaus Schafer,Sector,Energy,Industry,Energy,HQ Location,"Dusseldorf, Germany",Website,http://www.uniper.energy,Years on Global 500 List,1,Employees,12890,Company Information,Revenues ($M),74407,Profits ($M),-3557.5,Assets ($M),51541,Total Stockholder Equity ($M),12889,Key Financials (Last Fiscal Year),Profit as % of Revenues,-4.8,Profits as % of Assets,-6.9,Profits as % of Stockholder Equity,-27.6,Profit Ratios,Uniper,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),74393,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-52.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57052,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-125.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",342770,72,,,,,,,David J. Lewis,Food and Drug Stores,72,92,CEO,David J. Lewis,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Welwyn Garden City, Britain",Website,http://www.tescoplc.com,Years on Global 500 List,23,Employees,342770,Company Information,Revenues ($M),74393,Profits ($M),-52.7,Assets ($M),57052,Total Stockholder Equity ($M),8011,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.1,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-0.7,Profit Ratios,Tesco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),73692,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-458.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),167158,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",153090,89,,,,,,,Isabelle Kocher,Energy,89,93,CEO,Isabelle Kocher,Sector,Energy,Industry,Energy,HQ Location,"Courbevoie, France",Website,http://www.engie.com,Years on Global 500 List,22,Employees,153090,Company Information,Revenues ($M),73692,Profits ($M),-458.9,Assets ($M),167158,Total Stockholder Equity ($M),41740,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-1.1,Profit Ratios,Engie,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),73628,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1100.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),117204,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-63.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",133782,100,World’s Most Admired Companies,100000,,,,,Thomas Enders,Aerospace and Defense,100,94,CEO,Thomas Enders,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Leiden, Netherlands",Website,http://www.airbusgroup.com,Years on Global 500 List,23,Employees,133782,Company Information,Revenues ($M),73628,Profits ($M),1100.3,Assets ($M),117204,Total Stockholder Equity ($M),3857,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,28.5,Profit Ratios,Airbus Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),72579,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,107.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),659.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),85332,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-86,"Total employees (full-time equivalent, if available) at fiscal year-end.",84000,294,,,,,,,Tae Won Chey,Petroleum Refining,294,95,CEO,Tae Won Chey,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Seoul, South Korea",Website,http://www.sk.co.kr,Years on Global 500 List,2,Employees,84000,Company Information,Revenues ($M),72579,Profits ($M),659.7,Assets ($M),85332,Total Stockholder Equity ($M),10858,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,6.1,Profit Ratios,SK Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),72396,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1555,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51653,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-63.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",14800,74,Fortune 500,34,,,,,Greg C. Garland,Petroleum Refining,74,96,CEO,Greg C. Garland,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Houston, TX",Website,http://www.phillips66.com,Years on Global 500 List,5,Employees,14800,Company Information,Revenues ($M),72396,Profits ($M),1555,Assets ($M),51653,Total Stockholder Equity ($M),22390,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,3,Profits as % of Stockholder Equity,6.9,Profit Ratios,Phillips 66,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71890,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),16540,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141208,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",126400,103,Fortune 500,35,World’s Most Admired Companies,13,Change the World,31,Alex Gorsky,Pharmaceuticals,103,97,CEO,Alex Gorsky,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"New Brunswick, NJ",Website,http://www.jnj.com,Years on Global 500 List,17,Employees,126400,Company Information,Revenues ($M),71890,Profits ($M),16540,Assets ($M),141208,Total Stockholder Equity ($M),70418,Key Financials (Last Fiscal Year),Profit as % of Revenues,23,Profits as % of Assets,11.7,Profits as % of Stockholder Equity,23.5,Profit Ratios,Johnson & Johnson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71726,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10508,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),127136,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,49.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",105000,86,Fortune 500,36,World’s Most Admired Companies,19,,,David S. Taylor,Household and Personal Products,86,98,CEO,David S. Taylor,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"Cincinnati, OH",Website,http://www.pg.com,Years on Global 500 List,23,Employees,105000,Company Information,Revenues ($M),71726,Profits ($M),10508,Assets ($M),127136,Total Stockholder Equity ($M),57341,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.7,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,18.3,Profit Ratios,Procter & Gamble,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71498,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-5591,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25219,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",574349,107,,,,,,,Megan J. Brennan,"Mail, Package, and Freight Delivery",107,99,CEO,Megan J. Brennan,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Washington, DC",Website,http://www.usps.com,Years on Global 500 List,23,Employees,574349,Company Information,Revenues ($M),71498,Profits ($M),-5591,Assets ($M),25219,Total Stockholder Equity ($M),-55982,Key Financials (Last Fiscal Year),Profit as % of Revenues,-7.8,Profits as % of Assets,-22.2,Profits as % of Stockholder Equity,,Profit Ratios,U.S. Postal Service,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71242,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2329.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99187,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",302421,95,,,,,,,Li Qingkui,Utilities,95,100,CEO,Li Qingkui,Sector,Energy,Industry,Utilities,HQ Location,"Guangzhou, China",Website,http://www.csg.cn,Years on Global 500 List,13,Employees,302421,Company Information,Revenues ($M),71242,Profits ($M),2329.8,Assets ($M),99187,Total Stockholder Equity ($M),38384,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,6.1,Profit Ratios,China Southern Power Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),71151,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),580.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51857,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-61,"Total employees (full-time equivalent, if available) at fiscal year-end.",232817,102,,,,,,,Xu Liuping,Aerospace and Defense,102,101,CEO,Xu Liuping,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.chinasouth.com.cn,Years on Global 500 List,8,Employees,232817,Company Information,Revenues ($M),71151,Profits ($M),580.3,Assets ($M),51857,Total Stockholder Equity ($M),7508,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,7.7,Profit Ratios,China South Industries Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70897,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3090.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),82179,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-35.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",105500,76,,,,,,,Vagit Y. Alekperov,Petroleum Refining,76,102,CEO,Vagit Y. Alekperov,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Moscow, Russia",Website,http://www.lukoil.com,Years on Global 500 List,18,Employees,105500,Company Information,Revenues ($M),70897,Profits ($M),3090.6,Assets ($M),82179,Total Stockholder Equity ($M),52783,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,5.9,Profit Ratios,Lukoil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70751,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1431.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),146763,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",152666,110,,,,,,,Liu Qitao,"Engineering, Construction",110,103,CEO,Liu Qitao,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.ccccltd.cn,Years on Global 500 List,10,Employees,152666,Company Information,Revenues ($M),70751,Profits ($M),1431.3,Assets ($M),146763,Total Stockholder Equity ($M),14824,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,1,Profits as % of Stockholder Equity,9.7,Profit Ratios,China Communications Construction,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70517,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,25.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4410.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1302721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",102827,155,,,,,,,Francois Perol,Banks: Commercial and Savings,155,104,CEO,Francois Perol,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.groupebpce.fr,Years on Global 500 List,8,Employees,102827,Company Information,Revenues ($M),70517,Profits ($M),4410.1,Assets ($M),1302721,Total Stockholder Equity ($M),64820,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,6.8,Profit Ratios,Groupe BPCE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70170,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),676.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158519,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",128400,113,World’s Most Admired Companies,100000,,,,,Kazuo Hirai,"Electronics, Electrical Equip.",113,105,CEO,Kazuo Hirai,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.sony.net,Years on Global 500 List,23,Employees,128400,Company Information,Revenues ($M),70170,Profits ($M),676.4,Assets ($M),158519,Total Stockholder Equity ($M),22415,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,3,Profit Ratios,Sony,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),70166,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2289,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46173,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",9996,83,Fortune 500,37,,,,,Joseph W. Gorder,Petroleum Refining,83,106,CEO,Joseph W. Gorder,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Antonio, TX",Website,http://www.valero.com,Years on Global 500 List,17,Employees,9996,Company Information,Revenues ($M),70166,Profits ($M),2289,Assets ($M),46173,Total Stockholder Equity ($M),20024,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,5,Profits as % of Stockholder Equity,11.4,Profit Ratios,Valero Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),69495,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2737,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37431,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",323000,97,Fortune 500,38,World’s Most Admired Companies,44,,,Brian C. Cornell,General Merchandisers,97,107,CEO,Brian C. Cornell,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Minneapolis, MN",Website,http://www.target.com,Years on Global 500 List,23,Employees,323000,Company Information,Revenues ($M),69495,Profits ($M),2737,Assets ($M),37431,Total Stockholder Equity ($M),10953,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.9,Profits as % of Assets,7.3,Profits as % of Stockholder Equity,25,Profit Ratios,Target,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),69335,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4284,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1457753,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",151341,43,,,,,,,Frederic Oudea,Banks: Commercial and Savings,43,108,CEO,Frederic Oudea,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Paris, France",Website,http://www.societegenerale.com,Years on Global 500 List,21,Employees,151341,Company Information,Revenues ($M),69335,Profits ($M),4284,Assets ($M),1457753,Total Stockholder Equity ($M),65338,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,6.6,Profit Ratios,Societe Generale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),68700,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2853.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),282435,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",43428,106,Change the World,13,,,,,Joachim Wenning,Insurance: Property and Casualty (Stock),106,109,CEO,Joachim Wenning,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Munich, Germany",Website,http://www.munichre.com,Years on Global 500 List,23,Employees,43428,Company Information,Revenues ($M),68700,Profits ($M),2853.1,Assets ($M),282435,Total Stockholder Equity ($M),33238,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.2,Profits as % of Assets,1,Profits as % of Stockholder Equity,8.6,Profit Ratios,Munich Re Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67775,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1378.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),53702,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",257533,128,World’s Most Admired Companies,100000,Change the World,39,,,Kazuhiro Tsuga,"Electronics, Electrical Equip.",128,110,CEO,Kazuhiro Tsuga,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Osaka, Japan",Website,http://www.panasonic.com/global,Years on Global 500 List,23,Employees,257533,Company Information,Revenues ($M),67775,Profits ($M),1378.4,Assets ($M),53702,Total Stockholder Equity ($M),14109,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,9.8,Profit Ratios,Panasonic,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67388,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2786.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),650429,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-17.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",85171,114,,,,,,,Yoshinobu Tsutsui,"Insurance: Life, Health (Mutual)",114,111,CEO,Yoshinobu Tsutsui,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Osaka, Japan",Website,http://www.nissay.co.jp,Years on Global 500 List,23,Employees,85171,Company Information,Revenues ($M),67388,Profits ($M),2786.9,Assets ($M),650429,Total Stockholder Equity ($M),17261,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,16.1,Profit Ratios,Nippon Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),67245,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3211,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),382679,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,74.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",52473,141,,,,,,,Mario Greco,Insurance: Property and Casualty (Stock),141,112,CEO,Mario Greco,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.zurich.com,Years on Global 500 List,23,Employees,52473,Company Information,Revenues ($M),67245,Profits ($M),3211,Assets ($M),382679,Total Stockholder Equity ($M),30660,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,10.5,Profit Ratios,Zurich Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),66876,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6666.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),415972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",94779,159,,,,,,,Candido Botelho Bracher,Banks: Commercial and Savings,159,113,CEO,Candido Botelho Bracher,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sao Paulo, Brazil",Website,http://www.itau.com.br,Years on Global 500 List,4,Employees,94779,Company Information,Revenues ($M),66876,Profits ($M),6666.4,Assets ($M),415972,Total Stockholder Equity ($M),37680,Key Financials (Last Fiscal Year),Profit as % of Revenues,10,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,17.7,Profit Ratios,Itau Unibanco Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),66732,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2144.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),134132,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-31,"Total employees (full-time equivalent, if available) at fiscal year-end.",188570,119,,,,,,,Wu Yan,Insurance: Property and Casualty (Stock),119,114,CEO,Wu Yan,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Beijing, China",Website,http://www.picc.com.cn,Years on Global 500 List,8,Employees,188570,Company Information,Revenues ($M),66732,Profits ($M),2144.3,Assets ($M),134132,Total Stockholder Equity ($M),18145,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,11.8,Profit Ratios,People’s Insurance Co. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65892,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1752.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),166595,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62,"Total employees (full-time equivalent, if available) at fiscal year-end.",100821,109,,,,,,,Yang Hua,"Mining, Crude-Oil Production",109,115,CEO,Yang Hua,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Beijing, China",Website,http://www.cnooc.com.cn,Years on Global 500 List,11,Employees,100821,Company Information,Revenues ($M),65892,Profits ($M),1752.4,Assets ($M),166595,Total Stockholder Equity ($M),70827,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,2.5,Profit Ratios,China National Offshore Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65792,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1433.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61904,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,176.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",39952,138,,,,,,,Fumiya Kokubu,Trading,138,116,CEO,Fumiya Kokubu,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.marubeni.com,Years on Global 500 List,23,Employees,39952,Company Information,Revenues ($M),65792,Profits ($M),1433.7,Assets ($M),61904,Total Stockholder Equity ($M),15113,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,9.5,Profit Ratios,Marubeni,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65787,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2918.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40387,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,70.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",459262,108,World’s Most Admired Companies,100000,,,,,Frank Appel,"Mail, Package, and Freight Delivery",108,117,CEO,Frank Appel,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Bonn, Germany",Website,http://www.dpdhl.com,Years on Global 500 List,23,Employees,459262,Company Information,Revenues ($M),65787,Profits ($M),2918.3,Assets ($M),40387,Total Stockholder Equity ($M),11693,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,7.2,Profits as % of Stockholder Equity,25,Profit Ratios,Deutsche Post DHL Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65665,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7815,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2023376,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",5982,124,Fortune 500,39,,,,,Donald H. Layton,Diversified Financials,124,118,CEO,Donald H. Layton,Sector,Financials,Industry,Diversified Financials,HQ Location,"McLean, VA",Website,http://www.freddiemac.com,Years on Global 500 List,21,Employees,5982,Company Information,Revenues ($M),65665,Profits ($M),7815,Assets ($M),2023376,Total Stockholder Equity ($M),5075,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.9,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,154,Profit Ratios,Freddie Mac,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65605,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4980.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1221649,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",941211,105,,,,,,,Li Guohua,"Mail, Package, and Freight Delivery",105,119,CEO,Li Guohua,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Beijing, China",Website,http://www.chinapost.com.cn,Years on Global 500 List,7,Employees,941211,Company Information,Revenues ($M),65605,Profits ($M),4980.3,Assets ($M),1221649,Total Stockholder Equity ($M),43114,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,11.6,Profit Ratios,China Post Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65547,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-446.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),109334,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",212406,323,World’s Most Admired Companies,100000,,,,,He Wenbo,Metals,323,120,CEO,He Wenbo,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.minmetals.com,Years on Global 500 List,11,Employees,212406,Company Information,Revenues ($M),65547,Profits ($M),-446.7,Assets ($M),109334,Total Stockholder Equity ($M),4631,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.7,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-9.6,Profit Ratios,China Minmetals,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65208,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,38.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2784.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1010245,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,111.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",70433,193,,,,,,,Antonio Horta-Osorio,Banks: Commercial and Savings,193,121,CEO,Antonio Horta-Osorio,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.lloydsbankinggroup.com,Years on Global 500 List,23,Employees,70433,Company Information,Revenues ($M),65208,Profits ($M),2784.4,Assets ($M),1010245,Total Stockholder Equity ($M),59327,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.7,Profit Ratios,Lloyds Banking Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),65017,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3093,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34408,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",240000,148,Fortune 500,40,World’s Most Admired Companies,100000,,,Robert A. Niblock,Specialty Retailers,148,122,CEO,Robert A. Niblock,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Mooresville, NC",Website,http://www.lowes.com,Years on Global 500 List,20,Employees,240000,Company Information,Revenues ($M),65017,Profits ($M),3093,Assets ($M),34408,Total Stockholder Equity ($M),6434,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,9,Profits as % of Stockholder Equity,48.1,Profit Ratios,Lowe’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64853,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),665,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28039,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",196540,101,,,,,,,Olaf Koch,Food and Drug Stores,101,123,CEO,Olaf Koch,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Dusseldorf, Germany",Website,http://www.metrogroup.de,Years on Global 500 List,22,Employees,196540,Company Information,Revenues ($M),64853,Profits ($M),665,Assets ($M),28039,Total Stockholder Equity ($M),5978,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,11.1,Profit Ratios,Metro,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64806,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1672,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),118206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",138000,,Fortune 500,41,,,,,Michael S. Dell,"Computers, Office Equipment",0,124,CEO,Michael S. Dell,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Round Rock, TX",Website,http://www.delltechnologies.com,Years on Global 500 List,17,Employees,138000,Company Information,Revenues ($M),64806,Profits ($M),-1672,Assets ($M),118206,Total Stockholder Equity ($M),13243,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.6,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-12.6,Profit Ratios,Dell Technologies,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),64784,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2411.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54772,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",122323,130,,,,,,,Xu Ping,Motor Vehicles and Parts,130,125,CEO,Xu Ping,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Changchun, China",Website,http://www.faw.com.,Years on Global 500 List,13,Employees,122323,Company Information,Revenues ($M),64784,Profits ($M),2411.3,Assets ($M),54772,Total Stockholder Equity ($M),24489,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,China FAW Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63641,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4485.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80675,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",109543,88,World’s Most Admired Companies,100000,,,,,Kurt W. Bock,Chemicals,88,126,CEO,Kurt W. Bock,Sector,Chemicals,Industry,Chemicals,HQ Location,"Ludwigshafen, Germany",Website,http://www.basf.com,Years on Global 500 List,23,Employees,109543,Company Information,Revenues ($M),63641,Profits ($M),4485.3,Assets ($M),80675,Total Stockholder Equity ($M),33545,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,BASF,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63629,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1477.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59767,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",26247,131,,,,,,,Yukio Uchida,Petroleum Refining,131,127,CEO,Yukio Uchida,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Tokyo, Japan",Website,http://www.hd.jxtg-group.co.jp,Years on Global 500 List,23,Employees,26247,Company Information,Revenues ($M),63629,Profits ($M),1477.3,Assets ($M),59767,Total Stockholder Equity ($M),12829,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,11.5,Profit Ratios,JXTG Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63476,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),800,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),898764,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-84.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",58000,104,Fortune 500,42,,,,,Steven A. Kandarian,"Insurance: Life, Health (stock)",104,128,CEO,Steven A. Kandarian,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"New York, NY",Website,http://www.metlife.com,Years on Global 500 List,23,Employees,58000,Company Information,Revenues ($M),63476,Profits ($M),800,Assets ($M),898764,Total Stockholder Equity ($M),67309,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.2,Profit Ratios,MetLife,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63324,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),141.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34713,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",17353,122,,,,,,,Wang Yuzhu,Trading,122,129,CEO,Wang Yuzhu,Sector,Wholesalers,Industry,Trading,HQ Location,"Tianjin, China",Website,http://www.tewoo.com,Years on Global 500 List,6,Employees,17353,Company Information,Revenues ($M),63324,Profits ($M),141.7,Assets ($M),34713,Total Stockholder Equity ($M),3465,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,4.1,Profit Ratios,Tewoo Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),63155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2271,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69146,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5,"Total employees (full-time equivalent, if available) at fiscal year-end.",49500,142,Fortune 500,43,World’s Most Admired Companies,100000,,,Mark T. Bertolini,Health Care: Insurance and Managed Care,142,130,CEO,Mark T. Bertolini,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Hartford, CT",Website,http://www.aetna.com,Years on Global 500 List,17,Employees,49500,Company Information,Revenues ($M),63155,Profits ($M),2271,Assets ($M),69146,Total Stockholder Equity ($M),17881,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,12.7,Profit Ratios,Aetna,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6329,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74129,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",264000,127,Fortune 500,44,World’s Most Admired Companies,39,Change the World,38,Indra K. Nooyi,Food Consumer Products,127,131,CEO,Indra K. Nooyi,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Purchase, NY",Website,http://www.pepsico.com,Years on Global 500 List,23,Employees,264000,Company Information,Revenues ($M),62799,Profits ($M),6329,Assets ($M),74129,Total Stockholder Equity ($M),11095,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.1,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,57,Profit Ratios,PepsiCo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62694,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-32.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1619,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),131349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",33536,65,,,,,,,Claudio Descalzi,Petroleum Refining,65,132,CEO,Claudio Descalzi,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Rome, Italy",Website,http://www.eni.com,Years on Global 500 List,23,Employees,33536,Company Information,Revenues ($M),62694,Profits ($M),-1619,Assets ($M),131349,Total Stockholder Equity ($M),55934,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.6,Profits as % of Assets,-1.2,Profits as % of Stockholder Equity,-2.9,Profit Ratios,ENI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62387,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1764.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),115819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",413536,132,World’s Most Admired Companies,100000,,,,,Yang Jie,Telecommunications,132,133,CEO,Yang Jie,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.chinatelecom.com.cn,Years on Global 500 List,18,Employees,413536,Company Information,Revenues ($M),62387,Profits ($M),1764.6,Assets ($M),115819,Total Stockholder Equity ($M),50919,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,3.5,Profit Ratios,China Telecommunications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),62346,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1279,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39769,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-30.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",31800,112,Fortune 500,45,World’s Most Admired Companies,100000,,,Juan R. Luciano,Food Production,112,134,CEO,Juan R. Luciano,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Chicago, IL",Website,http://www.adm.com,Years on Global 500 List,23,Employees,31800,Company Information,Revenues ($M),62346,Profits ($M),1279,Assets ($M),39769,Total Stockholder Equity ($M),17173,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,3.2,Profits as % of Stockholder Equity,7.4,Profit Ratios,Archer Daniels Midland,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61326,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),853,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),53140,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",234771,134,,,,,,,Yin Jiaxu,Aerospace and Defense,134,135,CEO,Yin Jiaxu,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.norincogroup.com.cn,Years on Global 500 List,8,Employees,234771,Company Information,Revenues ($M),61326,Profits ($M),853,Assets ($M),53140,Total Stockholder Equity ($M),13401,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,6.4,Profit Ratios,China North Industries Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61265,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),204.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72072,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23,"Total employees (full-time equivalent, if available) at fiscal year-end.",101708,121,,,,,,,Yu Xubo,Trading,121,136,CEO,Yu Xubo,Sector,Wholesalers,Industry,Trading,HQ Location,"Beijing, China",Website,http://www.cofco.com,Years on Global 500 List,23,Employees,101708,Company Information,Revenues ($M),61265,Profits ($M),204.5,Assets ($M),72072,Total Stockholder Equity ($M),11029,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,1.9,Profit Ratios,COFCO,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),61130,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1260.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57783,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",134765,160,,,,,,,Xu Heyi,Motor Vehicles and Parts,160,137,CEO,Xu Heyi,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Beijing, China",Website,http://www.baicgroup.com.cn,Years on Global 500 List,5,Employees,134765,Company Information,Revenues ($M),61130,Profits ($M),1260.6,Assets ($M),57783,Total Stockholder Equity ($M),8037,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,15.7,Profit Ratios,Beijing Automotive Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),60906,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3431,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40377,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-29.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",335520,149,Fortune 500,46,World’s Most Admired Companies,35,,,David P. Abney,"Mail, Package, and Freight Delivery",149,138,CEO,David P. Abney,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Atlanta, GA",Website,http://www.ups.com,Years on Global 500 List,23,Employees,335520,Company Information,Revenues ($M),60906,Profits ($M),3431,Assets ($M),40377,Total Stockholder Equity ($M),405,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,847.2,Profit Ratios,UPS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),60800,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,124,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3883.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),430040,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",40707,,,,,,,,Wu Xiaohui,"Insurance: Life, Health (Mutual)",0,139,CEO,Wu Xiaohui,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Beijing, China",Website,http://www.anbanggroup.com,Years on Global 500 List,1,Employees,40707,Company Information,Revenues ($M),60800,Profits ($M),3883.9,Assets ($M),430040,Total Stockholder Equity ($M),20372,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.4,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,19.1,Profit Ratios,Anbang Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59749,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1913.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47620,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,91.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",175341,140,,,,,,,Carlos Tavares,Motor Vehicles and Parts,140,140,CEO,Carlos Tavares,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Paris, France",Website,http://www.groupe-psa.com,Years on Global 500 List,23,Employees,175341,Company Information,Revenues ($M),59749,Profits ($M),1913.1,Assets ($M),47620,Total Stockholder Equity ($M),13348,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,4,Profits as % of Stockholder Equity,14.3,Profit Ratios,Peugeot,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59678,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-373.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23755,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",273000,,Fortune 500,49,,,,,Robert G. Miller,Food and Drug Stores,0,141,CEO,Robert G. Miller,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Boise, ID",Website,http://www.albertsons.com,Years on Global 500 List,13,Employees,273000,Company Information,Revenues ($M),59678,Profits ($M),-373.3,Assets ($M),23755,Total Stockholder Equity ($M),1371,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-1.6,Profits as % of Stockholder Equity,-27.2,Profit Ratios,Albertsons Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59590,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2134.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),466617,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",62606,135,,,,,,,Seiji Inagaki,"Insurance: Life, Health (stock)",135,142,CEO,Seiji Inagaki,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Tokyo, Japan",Website,http://www.dai-ichi-life-hd.com,Years on Global 500 List,23,Employees,62606,Company Information,Revenues ($M),59590,Profits ($M),2134.5,Assets ($M),466617,Total Stockholder Equity ($M),11675,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,18.3,Profit Ratios,Dai-ichi Life Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),468,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57484,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",60576,139,,,,,,,Ning Gaoning,Trading,139,143,CEO,Ning Gaoning,Sector,Wholesalers,Industry,Trading,HQ Location,"Beijing, China",Website,http://www.sinochem.com,Years on Global 500 List,22,Employees,60576,Company Information,Revenues ($M),59533,Profits ($M),468,Assets ($M),57484,Total Stockholder Equity ($M),9195,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,5.1,Profit Ratios,Sinochem Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59387,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10316,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),113327,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",106000,158,Fortune 500,47,World’s Most Admired Companies,46,Change the World,12,Brian M. Krzanich,Semiconductors and Other Electronic Components,158,144,CEO,Brian M. Krzanich,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Santa Clara, CA",Website,http://www.intel.com,Years on Global 500 List,23,Employees,106000,Company Information,Revenues ($M),59387,Profits ($M),10316,Assets ($M),113327,Total Stockholder Equity ($M),66226,Key Financials (Last Fiscal Year),Profit as % of Revenues,17.4,Profits as % of Assets,9.1,Profits as % of Stockholder Equity,15.6,Profit Ratios,Intel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),59303,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4063.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),141402,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",77164,151,,,,,,,Takehiko Kakiuchi,Trading,151,145,CEO,Takehiko Kakiuchi,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.mitsubishicorp.com,Years on Global 500 List,23,Employees,77164,Company Information,Revenues ($M),59303,Profits ($M),4063.5,Assets ($M),141402,Total Stockholder Equity ($M),44137,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,9.2,Profit Ratios,Mitsubishi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58862,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),652.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38537,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",342709,144,,,,,,,Wilhelm Hubner,Food and Drug Stores,144,146,CEO,Wilhelm Hubner,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Croix, France",Website,http://www.auchanholding.com,Years on Global 500 List,21,Employees,342709,Company Information,Revenues ($M),58862,Profits ($M),652.4,Assets ($M),38537,Total Stockholder Equity ($M),10593,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,6.2,Profit Ratios,Auchan Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58789,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),483.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),448666,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-38.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",29380,253,,,,,,,Alexander R. Wynaendts,"Insurance: Life, Health (stock)",253,147,CEO,Alexander R. Wynaendts,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"The Hague, Netherlands",Website,http://www.aegon.com,Years on Global 500 List,22,Employees,29380,Company Information,Revenues ($M),58789,Profits ($M),483.3,Assets ($M),448666,Total Stockholder Equity ($M),25647,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.9,Profit Ratios,Aegon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58779,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4368,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),783962,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",49739,152,Fortune 500,48,World’s Most Admired Companies,100000,,,John R. Strangfeld,"Insurance: Life, Health (stock)",152,148,CEO,John R. Strangfeld,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Newark, NJ",Website,http://www.prudential.com,Years on Global 500 List,23,Employees,49739,Company Information,Revenues ($M),58779,Profits ($M),4368,Assets ($M),783962,Total Stockholder Equity ($M),45863,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.4,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,9.5,Profit Ratios,Prudential Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58611,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6904,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165420,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",111556,133,World’s Most Admired Companies,100000,,,,,Vittorio Colao,Telecommunications,133,149,CEO,Vittorio Colao,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Newbury, Britain",Website,http://www.vodafone.com,Years on Global 500 List,18,Employees,111556,Company Information,Revenues ($M),58611,Profits ($M),-6904,Assets ($M),165420,Total Stockholder Equity ($M),77211,Key Financials (Last Fiscal Year),Profit as % of Revenues,-11.8,Profits as % of Assets,-4.2,Profits as % of Stockholder Equity,-8.9,Profit Ratios,Vodafone Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5732.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59512,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",168832,147,World’s Most Admired Companies,38,Change the World,27,,,Paul Polman,Household and Personal Products,147,150,CEO,Paul Polman,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"London, Britain",Website,http://www.unilever.com,Years on Global 500 List,23,Employees,168832,Company Information,Revenues ($M),58292,Profits ($M),5732.7,Assets ($M),59512,Total Stockholder Equity ($M),17247,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.8,Profits as % of Assets,9.6,Profits as % of Stockholder Equity,33.2,Profit Ratios,Unilever,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),58093,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2013.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),426416,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",100622,115,,,,,,,Paulo Rogerio Caffarelli,Banks: Commercial and Savings,115,151,CEO,Paulo Rogerio Caffarelli,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Brasilia, Brazil",Website,http://www.bb.com.br,Years on Global 500 List,23,Employees,100622,Company Information,Revenues ($M),58093,Profits ($M),2013.8,Assets ($M),426416,Total Stockholder Equity ($M),26551,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.5,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.6,Profit Ratios,Banco do Brasil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57774,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-10256.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),113115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",125689,98,,,,,,,Jose Antonio Gonzalez Anaya,"Mining, Crude-Oil Production",98,152,CEO,Jose Antonio Gonzalez Anaya,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Mexico City, Mexico",Website,http://www.pemex.com,Years on Global 500 List,23,Employees,125689,Company Information,Revenues ($M),57774,Profits ($M),-10256.3,Assets ($M),113115,Total Stockholder Equity ($M),-59909,Key Financials (Last Fiscal Year),Profit as % of Revenues,-17.8,Profits as % of Assets,-9.1,Profits as % of Stockholder Equity,,Profit Ratios,Pemex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57544,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2619.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,283.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",127323,137,World’s Most Admired Companies,100000,,,,,Jose Maria Alvarez-Pallete Lopez,Telecommunications,137,153,CEO,Jose Maria Alvarez-Pallete Lopez,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Madrid, Spain",Website,http://www.telefonica.com,Years on Global 500 List,23,Employees,127323,Company Information,Revenues ($M),57544,Profits ($M),2619.7,Assets ($M),130396,Total Stockholder Equity ($M),19149,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,2,Profits as % of Stockholder Equity,13.7,Profit Ratios,Telefonica,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57443,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5127.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),366418,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",94541,209,,,,,,,Luiz Carlos Trabuco Cappi,Banks: Commercial and Savings,209,154,CEO,Luiz Carlos Trabuco Cappi,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Osasco, Brazil",Website,http://www.bradesco.com.br,Years on Global 500 List,21,Employees,94541,Company Information,Revenues ($M),57443,Profits ($M),5127.9,Assets ($M),366418,Total Stockholder Equity ($M),32369,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.9,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,15.8,Profit Ratios,Banco Bradesco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),57244,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5055,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89706,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-33.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",201600,136,Fortune 500,50,World’s Most Admired Companies,100000,Change the World,8,Gregory J. Hayes,Aerospace and Defense,136,155,CEO,Gregory J. Hayes,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Farmington, CT",Website,http://www.utc.com,Years on Global 500 List,23,Employees,201600,Company Information,Revenues ($M),57244,Profits ($M),5055,Assets ($M),89706,Total Stockholder Equity ($M),27579,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.8,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,18.3,Profit Ratios,United Technologies,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56791,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1779,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75142,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",198517,123,World’s Most Admired Companies,100000,,,,,Lakshmi N. Mittal,Metals,123,156,CEO,Lakshmi N. Mittal,Sector,Materials,Industry,Metals,HQ Location,"Luxembourg, Luxembourg",Website,http://www.arcelormittal.com,Years on Global 500 List,13,Employees,198517,Company Information,Revenues ($M),56791,Profits ($M),1779,Assets ($M),75142,Total Stockholder Equity ($M),30135,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.9,Profit Ratios,ArcelorMittal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56667,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3780.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),107681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",124849,178,World’s Most Admired Companies,100000,,,,,Carlos Ghosn,Motor Vehicles and Parts,178,157,CEO,Carlos Ghosn,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Boulogne-Billancourt, France",Website,http://www.groupe.renault.com,Years on Global 500 List,23,Employees,124849,Company Information,Revenues ($M),56667,Profits ($M),3780.9,Assets ($M),107681,Total Stockholder Equity ($M),32423,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.7,Profit Ratios,Renault,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56553,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2705.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),180756,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-53.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",295800,118,,,,,,,Igor I. Sechin,Petroleum Refining,118,158,CEO,Igor I. Sechin,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Moscow, Russia",Website,http://www.rosneft.com,Years on Global 500 List,12,Employees,295800,Company Information,Revenues ($M),56553,Profits ($M),2705.1,Assets ($M),180756,Total Stockholder Equity ($M),54227,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,5,Profit Ratios,Rosneft Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),56174,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1217.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31641,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",135393,163,,,,,,,Zhang Shiping,Textiles,163,159,CEO,Zhang Shiping,Sector,Industrials,Industry,Textiles,HQ Location,"Shandong, China",Website,http://www.weiqiaocy.com,Years on Global 500 List,6,Employees,135393,Company Information,Revenues ($M),56174,Profits ($M),1217.2,Assets ($M),31641,Total Stockholder Equity ($M),9438,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,12.9,Profit Ratios,Shandong Weiqiao Pioneering Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55858,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1174,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44413,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-58.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",44460,120,Fortune 500,51,,,,,Gary R. Heminger,Petroleum Refining,120,160,CEO,Gary R. Heminger,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Findlay, OH",Website,http://www.marathonpetroleum.com,Years on Global 500 List,6,Employees,44460,Company Information,Revenues ($M),55858,Profits ($M),1174,Assets ($M),44413,Total Stockholder Equity ($M),13557,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,8.7,Profit Ratios,Marathon Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55632,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9391,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),92033,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,164,Fortune 500,52,World’s Most Admired Companies,5,,,Robert A. Iger,Entertainment,164,161,CEO,Robert A. Iger,Sector,Media,Industry,Entertainment,HQ Location,"Burbank, CA",Website,http://www.disney.com,Years on Global 500 List,23,Employees,195000,Company Information,Revenues ($M),55632,Profits ($M),9391,Assets ($M),92033,Total Stockholder Equity ($M),43265,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.9,Profits as % of Assets,10.2,Profits as % of Stockholder Equity,21.7,Profit Ratios,Disney,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55306,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),464.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),124892,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-47.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",457097,143,,,,,,,Tan Ruisong,Aerospace and Defense,143,162,CEO,Tan Ruisong,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.avic.com,Years on Global 500 List,9,Employees,457097,Company Information,Revenues ($M),55306,Profits ($M),464.2,Assets ($M),124892,Total Stockholder Equity ($M),24345,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.9,Profit Ratios,Aviation Industry Corp. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55282,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-16.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5501.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),888226,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",51943,117,,,,,,,Ralph Hamers,Banks: Commercial and Savings,117,163,CEO,Ralph Hamers,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Amsterdam, Netherlands",Website,http://www.ing.com,Years on Global 500 List,23,Employees,51943,Company Information,Revenues ($M),55282,Profits ($M),5501.6,Assets ($M),888226,Total Stockholder Equity ($M),49839,Key Financials (Last Fiscal Year),Profit as % of Revenues,10,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,11,Profit Ratios,ING Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),55185,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,15.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8550.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),2722354,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",115276,191,World’s Most Admired Companies,100000,,,,,Nobuyuki Hirano,Banks: Commercial and Savings,191,164,CEO,Nobuyuki Hirano,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.mufg.jp,Years on Global 500 List,16,Employees,115276,Company Information,Revenues ($M),55185,Profits ($M),8550.1,Assets ($M),2722354,Total Stockholder Equity ($M),110573,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,Mitsubishi UFJ Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),54955,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,29.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),917.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38257,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",225000,222,World’s Most Admired Companies,100000,,,,,Dick Boer,Food and Drug Stores,222,165,CEO,Dick Boer,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Zaandam, Netherlands",Website,http://www.aholddelhaize.com,Years on Global 500 List,23,Employees,225000,Company Information,Revenues ($M),54955,Profits ($M),917.9,Assets ($M),38257,Total Stockholder Equity ($M),17165,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.3,Profit Ratios,Royal Ahold Delhaize,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),54379,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),614,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-51.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",51600,162,Fortune 500,53,World’s Most Admired Companies,100000,,,Bruce D. Broussard,Health Care: Insurance and Managed Care,162,166,CEO,Bruce D. Broussard,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Louisville, KY",Website,http://www.humana.com,Years on Global 500 List,19,Employees,51600,Company Information,Revenues ($M),54379,Profits ($M),614,Assets ($M),25396,Total Stockholder Equity ($M),10685,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.7,Profit Ratios,Humana,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53858,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),892.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49244,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-33,"Total employees (full-time equivalent, if available) at fiscal year-end.",54712,179,,,,,,,Ryuichi Isaka,Food and Drug Stores,179,167,CEO,Ryuichi Isaka,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Tokyo, Japan",Website,http://www.7andi.com,Years on Global 500 List,12,Employees,54712,Company Information,Revenues ($M),53858,Profits ($M),892.9,Assets ($M),49244,Total Stockholder Equity ($M),20086,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,4.4,Profit Ratios,Seven & I Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53562,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2960,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42132,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,72.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",34999,161,,,,,,,Sanjiv Singh,Petroleum Refining,161,168,CEO,Sanjiv Singh,Sector,Energy,Industry,Petroleum Refining,HQ Location,"New Delhi, India",Website,http://www.iocl.com,Years on Global 500 List,23,Employees,34999,Company Information,Revenues ($M),53562,Profits ($M),2960,Assets ($M),42132,Total Stockholder Equity ($M),15724,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7,Profits as % of Stockholder Equity,18.8,Profit Ratios,Indian Oil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53427,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9719.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",94052,167,World’s Most Admired Companies,100000,,,,,Severin Schwan,Pharmaceuticals,167,169,CEO,Severin Schwan,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Basel, Switzerland",Website,http://www.roche.com,Years on Global 500 List,23,Employees,94052,Company Information,Revenues ($M),53427,Profits ($M),9719.9,Assets ($M),75609,Total Stockholder Equity ($M),23534,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.2,Profits as % of Assets,12.9,Profits as % of Stockholder Equity,41.3,Profit Ratios,Roche Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),53035,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,79.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),278.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),173095,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",220258,353,,,,,,,Tan Xiangdong,Airlines,353,170,CEO,Tan Xiangdong,Sector,Transportation,Industry,Airlines,HQ Location,"Haikou City, China",Website,http://www.hnagroup.com,Years on Global 500 List,3,Employees,220258,Company Information,Revenues ($M),53035,Profits ($M),278.9,Assets ($M),173095,Total Stockholder Equity ($M),14096,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,2,Profit Ratios,HNA Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52990,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10116.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1209176,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",95160,153,,,,,,,Niu Ximing,Banks: Commercial and Savings,153,171,CEO,Niu Ximing,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shanghai, China",Website,http://www.bankcomm.com,Years on Global 500 List,9,Employees,95160,Company Information,Revenues ($M),52990,Profits ($M),10116.9,Assets ($M),1209176,Total Stockholder Equity ($M),90531,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,11.2,Profit Ratios,Bank of Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52852,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3236.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),938261,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14,"Total employees (full-time equivalent, if available) at fiscal year-end.",201263,156,,,,,,,Chang Zhenming,Diversified Financials,156,172,CEO,Chang Zhenming,Sector,Financials,Industry,Diversified Financials,HQ Location,"Beijing, China",Website,http://www.citicgroup.com.cn,Years on Global 500 List,9,Employees,201263,Company Information,Revenues ($M),52852,Profits ($M),3236.3,Assets ($M),938261,Total Stockholder Equity ($M),41784,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.1,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,CITIC Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52824,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7215,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),171615,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",96500,186,Fortune 500,54,World’s Most Admired Companies,100000,,,Ian C. Read,Pharmaceuticals,186,173,CEO,Ian C. Read,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"New York, NY",Website,http://www.pfizer.com,Years on Global 500 List,23,Employees,96500,Company Information,Revenues ($M),52824,Profits ($M),7215,Assets ($M),171615,Total Stockholder Equity ($M),59544,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,4.2,Profits as % of Stockholder Equity,12.1,Profit Ratios,Pfizer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52569,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5010.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86731,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",115170,165,,,,,,,Werner Baumann,Pharmaceuticals,165,174,CEO,Werner Baumann,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Leverkusen, Germany",Website,http://www.bayer.com,Years on Global 500 List,23,Employees,115170,Company Information,Revenues ($M),52569,Profits ($M),5010.6,Assets ($M),86731,Total Stockholder Equity ($M),31990,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,5.8,Profits as % of Stockholder Equity,15.7,Profit Ratios,Bayer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52367,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-849,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),498264,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-138.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",56400,150,Fortune 500,55,,,,,Brian Duperreault,Insurance: Property and Casualty (Stock),150,175,CEO,Brian Duperreault,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"New York, NY",Website,http://www.aig.com,Years on Global 500 List,22,Employees,56400,Company Information,Revenues ($M),52367,Profits ($M),-849,Assets ($M),498264,Total Stockholder Equity ($M),76300,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.6,Profits as % of Assets,-0.2,Profits as % of Stockholder Equity,-1.1,Profit Ratios,AIG,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),52201,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),462.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),73555,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-79,"Total employees (full-time equivalent, if available) at fiscal year-end.",194193,154,,,,,,,Daniel Hajj Aboumrad,Telecommunications,154,176,CEO,Daniel Hajj Aboumrad,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Mexico City, Mexico",Website,http://www.americamovil.com,Years on Global 500 List,11,Employees,194193,Company Information,Revenues ($M),52201,Profits ($M),462.9,Assets ($M),73555,Total Stockholder Equity ($M),10143,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,4.6,Profit Ratios,America Movil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),51500,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6074.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),147265,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-48.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",43688,172,,,,,,,Hwan-Eik Cho,Utilities,172,177,CEO,Hwan-Eik Cho,Sector,Energy,Industry,Utilities,HQ Location,"Jeollanam-do, South Korea",Website,http://www.kepco.co.kr,Years on Global 500 List,23,Employees,43688,Company Information,Revenues ($M),51500,Profits ($M),6074.1,Assets ($M),147265,Total Stockholder Equity ($M),59394,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,10.2,Profit Ratios,Korea Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50658,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5302,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47806,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,47.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",97000,197,Fortune 500,56,World’s Most Admired Companies,100000,,,Marillyn A. Hewson,Aerospace and Defense,197,178,CEO,Marillyn A. Hewson,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Bethesda, MD",Website,http://www.lockheedmartin.com,Years on Global 500 List,23,Employees,97000,Company Information,Revenues ($M),50658,Profits ($M),5302,Assets ($M),47806,Total Stockholder Equity ($M),1511,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.5,Profits as % of Assets,11.1,Profits as % of Stockholder Equity,350.9,Profit Ratios,Lockheed Martin,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50367,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),949.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16722,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,38.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",51900,188,Fortune 500,57,,,,,William J. DeLaney III,Wholesalers: Food and Grocery,188,179,CEO,William J. DeLaney III,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Houston, TX",Website,http://www.sysco.com,Years on Global 500 List,23,Employees,51900,Company Information,Revenues ($M),50367,Profits ($M),949.6,Assets ($M),16722,Total Stockholder Equity ($M),3480,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,27.3,Profit Ratios,Sysco,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50365,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1820,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46064,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,73.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",335767,192,Fortune 500,58,World’s Most Admired Companies,11,The 100 Best Companies to Work For,99,Frederick W. Smith,"Mail, Package, and Freight Delivery",192,180,CEO,Frederick W. Smith,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Memphis, TN",Website,http://www.fedex.com,Years on Global 500 List,23,Employees,335767,Company Information,Revenues ($M),50365,Profits ($M),1820,Assets ($M),46064,Total Stockholder Equity ($M),13784,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,4,Profits as % of Stockholder Equity,13.2,Profit Ratios,FedEx,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),50123,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3161,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79679,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,,Fortune 500,59,,,,,Margaret C. Whitman,Information Technology Services,0,181,CEO,Margaret C. Whitman,Sector,Technology,Industry,Information Technology Services,HQ Location,"Palo Alto, CA",Website,http://www.hpe.com,Years on Global 500 List,1,Employees,195000,Company Information,Revenues ($M),50123,Profits ($M),3161,Assets ($M),79679,Total Stockholder Equity ($M),31448,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.3,Profits as % of Assets,4,Profits as % of Stockholder Equity,10.1,Profit Ratios,Hewlett Packard Enterprise,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49838,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),305,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19843,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,44.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",17407,157,,,,,,,Gonzalo Ramirez Martiarena,Food Production,157,182,CEO,Gonzalo Ramirez Martiarena,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Rotterdam, Netherlands",Website,http://www.ldc.com,Years on Global 500 List,4,Employees,17407,Company Information,Revenues ($M),49838,Profits ($M),305,Assets ($M),19843,Total Stockholder Equity ($M),5115,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,6,Profit Ratios,Louis Dreyfus Company,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49677,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1199.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18405,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",17852,190,,,,,,,Wang Wenyin,"Electronics, Electrical Equip.",190,183,CEO,Wang Wenyin,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Shenzhen, China",Website,http://www.amer.com.cn,Years on Global 500 List,5,Employees,17852,Company Information,Revenues ($M),49677,Profits ($M),1199.9,Assets ($M),18405,Total Stockholder Equity ($M),10005,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,6.5,Profits as % of Stockholder Equity,12,Profit Ratios,Amer International Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49479,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-22,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4092.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),134528,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",51034,125,,,,,,,Wan Zulkiflee Wan Ariffin,Petroleum Refining,125,184,CEO,Wan Zulkiflee Wan Ariffin,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Kuala Lumpur, Malaysia",Website,http://www.petronas.com.my,Years on Global 500 List,21,Employees,51034,Company Information,Revenues ($M),49479,Profits ($M),4092.9,Assets ($M),134528,Total Stockholder Equity ($M),84800,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.3,Profits as % of Assets,3,Profits as % of Stockholder Equity,4.8,Profit Ratios,Petronas,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49446,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1225.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),110202,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",42060,177,,,,,,,Naomi Hirose,Utilities,177,185,CEO,Naomi Hirose,Sector,Energy,Industry,Utilities,HQ Location,"Tokyo, Japan",Website,http://www.tepco.co.jp,Years on Global 500 List,23,Employees,42060,Company Information,Revenues ($M),49446,Profits ($M),1225.7,Assets ($M),110202,Total Stockholder Equity ($M),20905,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,5.9,Profit Ratios,Tokyo Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49436,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6712,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",118393,175,World’s Most Admired Companies,100000,,,,,Joseph Jimenez,Pharmaceuticals,175,186,CEO,Joseph Jimenez,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Basel, Switzerland",Website,http://www.novartis.com,Years on Global 500 List,23,Employees,118393,Company Information,Revenues ($M),49436,Profits ($M),6712,Assets ($M),130124,Total Stockholder Equity ($M),74832,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,9,Profit Ratios,Novartis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49247,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10739,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),121652,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",73700,183,Fortune 500,60,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,67,Charles H. Robbins,Network and Other Communications Equipment,183,187,CEO,Charles H. Robbins,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"San Jose, CA",Website,http://www.cisco.com,Years on Global 500 List,18,Employees,73700,Company Information,Revenues ($M),49247,Profits ($M),10739,Assets ($M),121652,Total Stockholder Equity ($M),63586,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.8,Profits as % of Assets,8.8,Profits as % of Stockholder Equity,16.9,Profit Ratios,Cisco Systems,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),49239,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1942.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),190596,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",40641,231,,,,,,,Yasuyoshi Karasawa,Insurance: Property and Casualty (Stock),231,188,CEO,Yasuyoshi Karasawa,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.ms-ad-hd.com,Years on Global 500 List,19,Employees,40641,Company Information,Revenues ($M),49239,Profits ($M),1942.2,Assets ($M),190596,Total Stockholder Equity ($M),12793,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.9,Profits as % of Assets,1,Profits as % of Stockholder Equity,15.2,Profit Ratios,MS&AD Insurance Group Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48876,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1550.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1677437,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",99744,166,,,,,,,John Cryan,Banks: Commercial and Savings,166,189,CEO,John Cryan,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Frankfurt, Germany",Website,http://www.db.com,Years on Global 500 List,23,Employees,99744,Company Information,Revenues ($M),48876,Profits ($M),-1550.4,Assets ($M),1677437,Total Stockholder Equity ($M),63102,Key Financials (Last Fiscal Year),Profit as % of Revenues,-3.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-2.5,Profit Ratios,Deutsche Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48869,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1057.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),86687,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",187813,200,,,,,,,Yan Zhiyong,"Engineering, Construction",200,190,CEO,Yan Zhiyong,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.powerchina.cn,Years on Global 500 List,6,Employees,187813,Company Information,Revenues ($M),48869,Profits ($M),1057.6,Assets ($M),86687,Total Stockholder Equity ($M),9990,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,10.6,Profit Ratios,PowerChina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48825,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),107.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31605,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-92.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",237061,185,,,,,,,Wesley Mendonca Batista,Food Production,185,191,CEO,Wesley Mendonca Batista,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Sao Paulo, Brazil",Website,http://jbss.infoinvest.com.br,Years on Global 500 List,8,Employees,237061,Company Information,Revenues ($M),48825,Profits ($M),107.7,Assets ($M),31605,Total Stockholder Equity ($M),7307,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,1.5,Profit Ratios,JBS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48719,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2681.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,360.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",24934,146,,,,,,,Tevin Vongvanich,Petroleum Refining,146,192,CEO,Tevin Vongvanich,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Bangkok, Thailand",Website,http://www.pttplc.com,Years on Global 500 List,14,Employees,24934,Company Information,Revenues ($M),48719,Profits ($M),2681.6,Assets ($M),62349,Total Stockholder Equity ($M),21309,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,12.6,Profit Ratios,PTT,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,26.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2527.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),202923,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,19.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",38842,261,,,,,,,Tsuyoshi Nagano,Insurance: Property and Casualty (Stock),261,193,CEO,Tsuyoshi Nagano,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.tokiomarinehd.com,Years on Global 500 List,23,Employees,38842,Company Information,Revenues ($M),48292,Profits ($M),2527.4,Assets ($M),202923,Total Stockholder Equity ($M),16474,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,15.3,Profit Ratios,Tokio Marine Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48238,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-53.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2496,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29010,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",49000,48,Fortune 500,61,,,,,Dion J. Weisler,"Computers, Office Equipment",48,194,CEO,Dion J. Weisler,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Palo Alto, CA",Website,http://www.hp.com,Years on Global 500 List,23,Employees,49000,Company Information,Revenues ($M),48238,Profits ($M),2496,Assets ($M),29010,Total Stockholder Equity ($M),-3889,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,,Profit Ratios,HP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48204,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6249.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),80576,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",58652,174,,,,,,,Rolf Martin Schmitz,Utilities,174,195,CEO,Rolf Martin Schmitz,Sector,Energy,Industry,Utilities,HQ Location,"Essen, Germany",Website,http://www.rwe.com,Years on Global 500 List,23,Employees,58652,Company Information,Revenues ($M),48204,Profits ($M),-6249.1,Assets ($M),80576,Total Stockholder Equity ($M),3898,Key Financials (Last Fiscal Year),Profit as % of Revenues,-13,Profits as % of Assets,-7.8,Profits as % of Stockholder Equity,-160.3,Profit Ratios,RWE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48158,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4318,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79511,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-43.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",56000,187,Fortune 500,62,,,,,Andrew N. Liveris,Chemicals,187,196,CEO,Andrew N. Liveris,Sector,Chemicals,Industry,Chemicals,HQ Location,"Midland, MI",Website,http://www.dow.com,Years on Global 500 List,23,Employees,56000,Company Information,Revenues ($M),48158,Profits ($M),4318,Assets ($M),79511,Total Stockholder Equity ($M),25987,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,16.6,Profit Ratios,Dow Chemical,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48154,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46270,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",232503,170,,,,,,,Didier Leveque,Food and Drug Stores,170,197,CEO,Didier Leveque,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Paris, France",Website,http://www.finatis.fr,Years on Global 500 List,3,Employees,232503,Company Information,Revenues ($M),48154,Profits ($M),687.8,Assets ($M),46270,Total Stockholder Equity ($M),744,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,92.5,Profit Ratios,Finatis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),48003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),296.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30358,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-85.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",220000,171,,,,,,,Richard J.B. Goyder,Food and Drug Stores,171,198,CEO,Richard J.B. Goyder,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Perth, Australia",Website,http://www.wesfarmers.com.au,Years on Global 500 List,9,Employees,220000,Company Information,Revenues ($M),48003,Profits ($M),296.1,Assets ($M),30358,Total Stockholder Equity ($M),17083,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,1.7,Profit Ratios,Wesfarmers,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47810,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),504,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36767,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",106772,205,,,,,,,She Lulin,Pharmaceuticals,205,199,CEO,She Lulin,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Beijing, China",Website,http://www.sinopharm.com,Years on Global 500 List,5,Employees,106772,Company Information,Revenues ($M),47810,Profits ($M),504,Assets ($M),36767,Total Stockholder Equity ($M),5658,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Sinopharm,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47804,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1327.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),442027,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",5035,182,,,,,,,Frederic Lavenir,"Insurance: Life, Health (stock)",182,200,CEO,Frederic Lavenir,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Paris, France",Website,http://www.cnp.fr,Years on Global 500 List,23,Employees,5035,Company Information,Revenues ($M),47804,Profits ($M),1327.3,Assets ($M),442027,Total Stockholder Equity ($M),18491,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.2,Profit Ratios,CNP Assurances,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47712,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),66.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31348,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75000,180,,,,,,,Seong-Jin Jo,"Electronics, Electrical Equip.",180,201,CEO,Seong-Jin Jo,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Seoul, South Korea",Website,http://www.lg.com,Years on Global 500 List,17,Employees,75000,Company Information,Revenues ($M),47712,Profits ($M),66.2,Assets ($M),31348,Total Stockholder Equity ($M),9926,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,0.7,Profit Ratios,LG Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),47375,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,19.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6520.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1775349,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21,"Total employees (full-time equivalent, if available) at fiscal year-end.",77205,243,,,,,,,Takeshi Kunibe,Banks: Commercial and Savings,243,202,CEO,Takeshi Kunibe,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.smfg.co.jp,Years on Global 500 List,23,Employees,77205,Company Information,Revenues ($M),47375,Profits ($M),6520.5,Assets ($M),1775349,Total Stockholder Equity ($M),72876,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.8,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.9,Profit Ratios,Sumitomo Mitsui Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46931,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4458.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108856,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",140483,215,,,,,,,Mukesh D. Ambani,Petroleum Refining,215,203,CEO,Mukesh D. Ambani,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.ril.com,Years on Global 500 List,14,Employees,140483,Company Information,Revenues ($M),46931,Profits ($M),4458.9,Assets ($M),108856,Total Stockholder Equity ($M),40614,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,11,Profit Ratios,Reliance Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),442.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),106725,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",169344,275,World’s Most Admired Companies,100000,,,,,Ma Guoqiang,Metals,275,204,CEO,Ma Guoqiang,Sector,Materials,Industry,Metals,HQ Location,"Shanghai, China",Website,http://www.baowugroup.com,Years on Global 500 List,14,Employees,169344,Company Information,Revenues ($M),46606,Profits ($M),442.8,Assets ($M),106725,Total Stockholder Equity ($M),35728,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.2,Profit Ratios,China Baowu Steel Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),46528,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-30.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12285,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",1000,116,,,,,,,William J. Randall,Trading,116,205,CEO,William J. Randall,Sector,Wholesalers,Industry,Trading,HQ Location,"Hong Kong, China",Website,http://www.thisisnoble.com,Years on Global 500 List,10,Employees,1000,Company Information,Revenues ($M),46528,Profits ($M),8.7,Assets ($M),12285,Total Stockholder Equity ($M),3974,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.2,Profit Ratios,Noble Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45905,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1241,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),258381,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-85,"Total employees (full-time equivalent, if available) at fiscal year-end.",206633,211,World’s Most Admired Companies,100000,,,,,Carlos Brito,Beverages,211,206,CEO,Carlos Brito,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Leuven, Belgium",Website,http://www.ab-inbev.com,Years on Global 500 List,12,Employees,206633,Company Information,Revenues ($M),45905,Profits ($M),1241,Assets ($M),258381,Total Stockholder Equity ($M),71339,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,1.7,Profit Ratios,Anheuser-Busch InBev,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-23.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2902,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),104530,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",20539,145,,,,,,,Eldar Saetre,Petroleum Refining,145,207,CEO,Eldar Saetre,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Stavanger, Norway",Website,http://www.statoil.com,Years on Global 500 List,23,Employees,20539,Company Information,Revenues ($M),45873,Profits ($M),-2902,Assets ($M),104530,Total Stockholder Equity ($M),35072,Key Financials (Last Fiscal Year),Profit as % of Revenues,-6.3,Profits as % of Assets,-2.8,Profits as % of Stockholder Equity,-8.3,Profit Ratios,Statoil,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45621,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1167.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),66361,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,669.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",31768,173,World’s Most Admired Companies,100000,,,,,Oh-Joon Kwon,Metals,173,208,CEO,Oh-Joon Kwon,Sector,Materials,Industry,Metals,HQ Location,"Seoul, South Korea",Website,http://www.posco.com,Years on Global 500 List,23,Employees,31768,Company Information,Revenues ($M),45621,Profits ($M),1167.5,Assets ($M),66361,Total Stockholder Equity ($M),35057,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,3.3,Profit Ratios,POSCO,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45425,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2373.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42141,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2,"Total employees (full-time equivalent, if available) at fiscal year-end.",51357,208,,,,,,,Hyoung-Keun Lee,Motor Vehicles and Parts,208,209,CEO,Hyoung-Keun Lee,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://www.kia.com,Years on Global 500 List,6,Employees,51357,Company Information,Revenues ($M),45425,Profits ($M),2373.8,Assets ($M),42141,Total Stockholder Equity ($M),22010,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,10.8,Profit Ratios,Kia Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45249,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3245.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99840,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",155202,204,,,,,,,Stephane Richard,Telecommunications,204,210,CEO,Stephane Richard,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Paris, France",Website,http://www.orange.com,Years on Global 500 List,23,Employees,155202,Company Information,Revenues ($M),45249,Profits ($M),3245.7,Assets ($M),99840,Total Stockholder Equity ($M),32365,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.2,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,10,Profit Ratios,Orange,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),45177,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),17.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54341,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",110614,234,,,,,,,Ren Jianxin,Chemicals,234,211,CEO,Ren Jianxin,Sector,Chemicals,Industry,Chemicals,HQ Location,"Beijing, China",Website,http://www.chemchina.com,Years on Global 500 List,7,Employees,110614,Company Information,Revenues ($M),45177,Profits ($M),17.9,Assets ($M),54341,Total Stockholder Equity ($M),3462,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.5,Profit Ratios,ChemChina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44850,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),768.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59716,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",306368,203,,,,,,,Richard Lutz,Railroads,203,212,CEO,Richard Lutz,Sector,Transportation,Industry,Railroads,HQ Location,"Berlin, Germany",Website,http://www.deutschebahn.com,Years on Global 500 List,23,Employees,306368,Company Information,Revenues ($M),44850,Profits ($M),768.6,Assets ($M),59716,Total Stockholder Equity ($M),13246,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,5.8,Profit Ratios,Deutsche Bahn,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44842,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3099.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38151,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",220137,213,World’s Most Admired Companies,100000,,,,,Elmar Degenhart,Motor Vehicles and Parts,213,213,CEO,Elmar Degenhart,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hanover, Germany",Website,http://www.continental-corporation.com,Years on Global 500 List,15,Employees,220137,Company Information,Revenues ($M),44842,Profits ($M),3099.1,Assets ($M),38151,Total Stockholder Equity ($M),15050,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,8.1,Profits as % of Stockholder Equity,20.6,Profit Ratios,Continental,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44747,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2890,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33758,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,35.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",210500,212,Fortune 500,63,World’s Most Admired Companies,100000,,,R. Milton Johnson,Health Care: Medical Facilities,212,214,CEO,R. Milton Johnson,Sector,Health Care,Industry,Health Care: Medical Facilities,HQ Location,"Nashville, TN",Website,http://www.hcahealthcare.com,Years on Global 500 List,23,Employees,210500,Company Information,Revenues ($M),44747,Profits ($M),2890,Assets ($M),33758,Total Stockholder Equity ($M),-7302,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.5,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,,Profit Ratios,HCA Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44654,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3250.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72902,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,62.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",110207,223,,,,,,,Masahiro Okafuji,Trading,223,215,CEO,Masahiro Okafuji,Sector,Wholesalers,Industry,Trading,HQ Location,"Osaka, Japan",Website,http://www.itochu.co.jp,Years on Global 500 List,23,Employees,110207,Company Information,Revenues ($M),44654,Profits ($M),3250.6,Assets ($M),72902,Total Stockholder Equity ($M),21559,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.3,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,15.1,Profit Ratios,Itochu,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44552,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),9344.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),855070,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",70461,189,,,,,,,Tian Huiyu,Banks: Commercial and Savings,189,216,CEO,Tian Huiyu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shenzhen, China",Website,http://www.cmbchina.com,Years on Global 500 List,6,Employees,70461,Company Information,Revenues ($M),44552,Profits ($M),9344.8,Assets ($M),855070,Total Stockholder Equity ($M),57896,Key Financials (Last Fiscal Year),Profit as % of Revenues,21,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,16.1,Profit Ratios,China Merchants Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),44533,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),36,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),530590,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-98.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",278872,232,,,,,,,Arundhati Bhattacharya,Banks: Commercial and Savings,232,217,CEO,Arundhati Bhattacharya,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Mumbai, India",Website,http://www.sbi.co.in,Years on Global 500 List,12,Employees,278872,Company Information,Revenues ($M),44533,Profits ($M),36,Assets ($M),530590,Total Stockholder Equity ($M),33450,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,State Bank of India,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43925,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-898.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17495,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-150.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",205000,176,,,,,,,Brad Banducci,Food and Drug Stores,176,218,CEO,Brad Banducci,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Bella Vista, Australia",Website,http://www.woolworthslimited.com.au,Years on Global 500 List,21,Employees,205000,Company Information,Revenues ($M),43925,Profits ($M),-898.3,Assets ($M),17495,Total Stockholder Equity ($M),6305,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2,Profits as % of Assets,-5.1,Profits as % of Stockholder Equity,-14.2,Profit Ratios,Woolworths,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43822,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5045.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56223,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",35032,271,World’s Most Admired Companies,100000,,,,,Takashi Tanaka,Telecommunications,271,219,CEO,Takashi Tanaka,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Tokyo, Japan",Website,http://www.kddi.com,Years on Global 500 List,20,Employees,35032,Company Information,Revenues ($M),43822,Profits ($M),5045.1,Assets ($M),56223,Total Stockholder Equity ($M),31904,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.5,Profits as % of Assets,9,Profits as % of Stockholder Equity,15.8,Profit Ratios,KDDI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43786,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,22.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3558,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),215065,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",14053,282,World’s Most Admired Companies,100000,,,,,Christian Mumenthaler,Insurance: Property and Casualty (Stock),282,220,CEO,Christian Mumenthaler,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.swissre.com,Years on Global 500 List,23,Employees,14053,Company Information,Revenues ($M),43786,Profits ($M),3558,Assets ($M),215065,Total Stockholder Equity ($M),35634,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,10,Profit Ratios,Swiss Re,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43769,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-146.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51858,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",125552,201,,,,,,,Yu Yong,Metals,201,221,CEO,Yu Yong,Sector,Materials,Industry,Metals,HQ Location,"Shijiazhuang, China",Website,http://www.hbisco.com,Years on Global 500 List,9,Employees,125552,Company Information,Revenues ($M),43769,Profits ($M),-146.8,Assets ($M),51858,Total Stockholder Equity ($M),7693,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.3,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-1.9,Profit Ratios,HBIS Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43743,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),740.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22578,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",29637,229,,,,,,,Chan Chauto,Energy,229,222,CEO,Chan Chauto,Sector,Energy,Industry,Energy,HQ Location,"Shanghai, China",Website,http://www.cefc.co,Years on Global 500 List,4,Employees,29637,Company Information,Revenues ($M),43743,Profits ($M),740.9,Assets ($M),22578,Total Stockholder Equity ($M),3916,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,18.9,Profit Ratios,CEFC China Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43698,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3842.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),771837,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,31.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",134792,219,,,,,,,Carlos Torres Vila,Banks: Commercial and Savings,219,223,CEO,Carlos Torres Vila,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Bilbao, Spain",Website,http://www.bbva.com,Years on Global 500 List,23,Employees,134792,Company Information,Revenues ($M),43698,Profits ($M),3842.8,Assets ($M),771837,Total Stockholder Equity ($M),49952,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.8,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,7.7,Profit Ratios,Banco Bilbao Vizcaya Argentaria,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43589,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),328.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39411,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",156487,184,World’s Most Admired Companies,100000,,,,,Heinrich Hiesinger,Metals,184,224,CEO,Heinrich Hiesinger,Sector,Materials,Industry,Metals,HQ Location,"Essen, Germany",Website,http://www.thyssenkrupp.com,Years on Global 500 List,23,Employees,156487,Company Information,Revenues ($M),43589,Profits ($M),328.6,Assets ($M),39411,Total Stockholder Equity ($M),2362,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,13.9,Profit Ratios,ThyssenKrupp,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43231,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1449.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46158,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",172696,196,,,,,,,Pierre-Andre de Chalendar,"Building Materials, Glass",196,225,CEO,Pierre-Andre de Chalendar,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Courbevoie, France",Website,http://www.saint-gobain.com,Years on Global 500 List,23,Employees,172696,Company Information,Revenues ($M),43231,Profits ($M),1449.8,Assets ($M),46158,Total Stockholder Equity ($M),19790,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,7.3,Profit Ratios,Saint-Gobain,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),43035,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),535.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27186,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",52000,202,,,,,,,Yang Yuanqing,"Computers, Office Equipment",202,226,CEO,Yang Yuanqing,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Hong Kong, China",Website,http://www.lenovo.com,Years on Global 500 List,8,Employees,52000,Company Information,Revenues ($M),43035,Profits ($M),535.1,Assets ($M),27186,Total Stockholder Equity ($M),3224,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,2,Profits as % of Stockholder Equity,16.6,Profit Ratios,Lenovo Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42771,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2770.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71642,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",183487,210,,,,,,,Xavier Huillard,"Engineering, Construction",210,227,CEO,Xavier Huillard,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Rueil-Malmaison, France",Website,http://www.vinci.com,Years on Global 500 List,17,Employees,183487,Company Information,Revenues ($M),42771,Profits ($M),2770.1,Assets ($M),71642,Total Stockholder Equity ($M),17365,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.5,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,16,Profit Ratios,Vinci,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42757,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1208.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65182,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",100169,238,World’s Most Admired Companies,100000,,,,,Kosei Shindo,Metals,238,228,CEO,Kosei Shindo,Sector,Materials,Industry,Metals,HQ Location,"Tokyo, Japan",Website,http://www.nssmc.com,Years on Global 500 List,23,Employees,100169,Company Information,Revenues ($M),42757,Profits ($M),1208.5,Assets ($M),65182,Total Stockholder Equity ($M),23555,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,5.1,Profit Ratios,Nippon Steel & Sumitomo Metal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42679,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),745,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19188,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-5.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",32000,214,World’s Most Admired Companies,100000,,,,,Soren W. Schroder,Food Production,214,229,CEO,Soren W. Schroder,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"White Plains, NY",Website,http://www.bunge.com,Years on Global 500 List,15,Employees,32000,Company Information,Revenues ($M),42679,Profits ($M),745,Assets ($M),19188,Total Stockholder Equity ($M),7144,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.4,Profit Ratios,Bunge,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42622,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8105.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),875731,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",56236,195,,,,,,,Tao Yiping,Banks: Commercial and Savings,195,230,CEO,Tao Yiping,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Fuzhou, China",Website,http://www.cib.com.cn,Years on Global 500 List,5,Employees,56236,Company Information,Revenues ($M),42622,Profits ($M),8105.9,Assets ($M),875731,Total Stockholder Equity ($M),50382,Key Financials (Last Fiscal Year),Profit as % of Revenues,19,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,16.1,Profit Ratios,Industrial Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42213,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-67.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-9344.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),67179,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",43138,32,,,,,,,Johannes Teyssen,Energy,32,231,CEO,Johannes Teyssen,Sector,Energy,Industry,Energy,HQ Location,"Essen, Germany",Website,http://www.eon.com,Years on Global 500 List,23,Employees,43138,Company Information,Revenues ($M),42213,Profits ($M),-9344.4,Assets ($M),67179,Total Stockholder Equity ($M),-1113,Key Financials (Last Fiscal Year),Profit as % of Revenues,-22.1,Profits as % of Assets,-13.9,Profits as % of Stockholder Equity,,Profit Ratios,E.ON,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42159,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8078,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),415730,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,121,"Total employees (full-time equivalent, if available) at fiscal year-end.",325075,199,,,,,,,Herman O. Gref,Banks: Commercial and Savings,199,232,CEO,Herman O. Gref,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Moscow, Russia",Website,http://www.sberbank.ru,Years on Global 500 List,10,Employees,325075,Company Information,Revenues ($M),42159,Profits ($M),8078,Assets ($M),415730,Total Stockholder Equity ($M),46182,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.2,Profits as % of Assets,1.9,Profits as % of Stockholder Equity,17.5,Profit Ratios,Sberbank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42149,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),485.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69621,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-62.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",182129,281,,,,,,,Hu Wenming,Industrial Machinery,281,233,CEO,Hu Wenming,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.csic.com.cn,Years on Global 500 List,7,Employees,182129,Company Information,Revenues ($M),42149,Profits ($M),485.8,Assets ($M),69621,Total Stockholder Equity ($M),17789,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,2.7,Profit Ratios,China Shipbuilding Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),42113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1740.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69870,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-38.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",120479,228,,,,,,,Sidney Toledano,Apparel,228,234,CEO,Sidney Toledano,Sector,Apparel,Industry,Apparel,HQ Location,"Paris, France",Website,http://www.dior-finance.com,Years on Global 500 List,17,Employees,120479,Company Information,Revenues ($M),42113,Profits ($M),1740.3,Assets ($M),69870,Total Stockholder Equity ($M),12293,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.1,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,14.2,Profit Ratios,Christian Dior,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6527,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),87270,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",100300,206,Fortune 500,64,World’s Most Admired Companies,16,Change the World,11,James B. Quincey,Beverages,206,235,CEO,James B. Quincey,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Atlanta, GA",Website,http://www.coca-colacompany.com,Years on Global 500 List,23,Employees,100300,Company Information,Revenues ($M),41863,Profits ($M),6527,Assets ($M),87270,Total Stockholder Equity ($M),23062,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.6,Profits as % of Assets,7.5,Profits as % of Stockholder Equity,28.3,Profit Ratios,Coca-Cola,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41781,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2377.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46233,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",154493,268,,,,,,,Koji Arima,Motor Vehicles and Parts,268,236,CEO,Koji Arima,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Kariya, Japan",Website,http://www.denso.com,Years on Global 500 List,23,Employees,154493,Company Information,Revenues ($M),41781,Profits ($M),2377.6,Assets ($M),46233,Total Stockholder Equity ($M),29735,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,8,Profit Ratios,Denso,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41620,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),816.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28646,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13,"Total employees (full-time equivalent, if available) at fiscal year-end.",155069,248,World’s Most Admired Companies,100000,,,,,Tatsuya Tanaka,Information Technology Services,248,237,CEO,Tatsuya Tanaka,Sector,Technology,Industry,Information Technology Services,HQ Location,"Tokyo, Japan",Website,http://www.fujitsu.com,Years on Global 500 List,23,Employees,155069,Company Information,Revenues ($M),41620,Profits ($M),816.7,Assets ($M),28646,Total Stockholder Equity ($M),7910,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,10.3,Profit Ratios,Fujitsu,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41560,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),551.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30267,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75908,303,,,,,,,Zeng Qinghong,Motor Vehicles and Parts,303,238,CEO,Zeng Qinghong,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Guangzhou, China",Website,http://www.gagc.com.cn,Years on Global 500 List,5,Employees,75908,Company Information,Revenues ($M),41560,Profits ($M),551.9,Assets ($M),30267,Total Stockholder Equity ($M),3791,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.8,Profits as % of Stockholder Equity,14.6,Profit Ratios,Guangzhou Automobile Industry Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41402,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),972.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37032,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",90000,254,World’s Most Admired Companies,100000,,,,,Kuok Khoon Hong,Food Production,254,239,CEO,Kuok Khoon Hong,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,Singapore,Website,http://www.wilmar-international.com,Years on Global 500 List,9,Employees,90000,Company Information,Revenues ($M),41402,Profits ($M),972.2,Assets ($M),37032,Total Stockholder Equity ($M),14435,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,6.7,Profit Ratios,Wilmar International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41376,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5207.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),110390,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",113816,233,,,,,,,Olivier Brandicourt,Pharmaceuticals,233,240,CEO,Olivier Brandicourt,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Paris, France",Website,http://www.sanofi.com,Years on Global 500 List,13,Employees,113816,Company Information,Revenues ($M),41376,Profits ($M),5207.4,Assets ($M),110390,Total Stockholder Equity ($M),60698,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.6,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,8.6,Profit Ratios,Sanofi,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),41274,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),23.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),88626,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-95.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",253724,207,World’s Most Admired Companies,100000,,,,,Wang Xiaochu,Telecommunications,207,241,CEO,Wang Xiaochu,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Beijing, China",Website,http://www.chinaunicom-a.com,Years on Global 500 List,9,Employees,253724,Company Information,Revenues ($M),41274,Profits ($M),23.2,Assets ($M),88626,Total Stockholder Equity ($M),11152,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.2,Profit Ratios,China United Network Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40921,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),517.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),308346,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",42245,335,,,,,,,Masahiro Hashimoto,"Insurance: Life, Health (Mutual)",335,242,CEO,Masahiro Hashimoto,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Osaka, Japan",Website,http://www.sumitomolife.co.jp,Years on Global 500 List,23,Employees,42245,Company Information,Revenues ($M),40921,Profits ($M),517.5,Assets ($M),308346,Total Stockholder Equity ($M),8491,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,6.1,Profit Ratios,Sumitomo Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40787,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1088.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),287196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,324.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",11320,198,Fortune 500,65,World’s Most Admired Companies,100000,,,Theodore A. Mathas,"Insurance: Life, Health (Mutual)",198,243,CEO,Theodore A. Mathas,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"New York, NY",Website,http://www.newyorklife.com,Years on Global 500 List,23,Employees,11320,Company Information,Revenues ($M),40787,Profits ($M),1088.1,Assets ($M),287196,Total Stockholder Equity ($M),20108,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,5.4,Profit Ratios,New York Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40721,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,78.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),562,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20197,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,58.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",30500,470,Fortune 500,66,,,,,Michael F. Neidorff,Health Care: Insurance and Managed Care,470,244,CEO,Michael F. Neidorff,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"St. Louis, MO",Website,http://www.centene.com,Years on Global 500 List,2,Employees,30500,Company Information,Revenues ($M),40721,Profits ($M),562,Assets ($M),20197,Total Stockholder Equity ($M),5895,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,9.5,Profit Ratios,Centene,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40689,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7992.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),842832,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",52832,227,,,,,,,Gao Guofu,Banks: Commercial and Savings,227,245,CEO,Gao Guofu,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Shanghai, China",Website,http://www.spdb.com.cn,Years on Global 500 List,5,Employees,52832,Company Information,Revenues ($M),40689,Profits ($M),7992.8,Assets ($M),842832,Total Stockholder Equity ($M),52946,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.6,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,15.1,Profit Ratios,Shanghai Pudong Development Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40606,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),423.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),128247,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",49000,277,,,,,,,Tae-Jong Lee,"Insurance: Life, Health (stock)",277,246,CEO,Tae-Jong Lee,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Seoul, South Korea",Website,http://www.hanwhacorp.co.kr,Years on Global 500 List,12,Employees,49000,Company Information,Revenues ($M),40606,Profits ($M),423.7,Assets ($M),128247,Total Stockholder Equity ($M),3650,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,11.6,Profit Ratios,Hanwha,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40329,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1111.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42162,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34,"Total employees (full-time equivalent, if available) at fiscal year-end.",79558,226,,,,,,,Guenter Butschek,Motor Vehicles and Parts,226,247,CEO,Guenter Butschek,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Mumbai, India",Website,http://www.tatamotors.com,Years on Global 500 List,8,Employees,79558,Company Information,Revenues ($M),40329,Profits ($M),1111.6,Assets ($M),42162,Total Stockholder Equity ($M),8942,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,12.4,Profit Ratios,Tata Motors,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40278,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-282.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),75089,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",121146,262,,,,,,,Yu Dehui,Metals,262,248,CEO,Yu Dehui,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.chalco.com.cn,Years on Global 500 List,10,Employees,121146,Company Information,Revenues ($M),40278,Profits ($M),-282.5,Assets ($M),75089,Total Stockholder Equity ($M),2669,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.7,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-10.6,Profit Ratios,Aluminum Corp. of China,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40275,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2825.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),103231,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",42316,245,,,,,,,Tatsuo Yasunaga,Trading,245,249,CEO,Tatsuo Yasunaga,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.mitsui.com,Years on Global 500 List,23,Employees,42316,Company Information,Revenues ($M),40275,Profits ($M),2825.3,Assets ($M),103231,Total Stockholder Equity ($M),33500,Key Financials (Last Fiscal Year),Profit as % of Revenues,7,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,8.4,Profit Ratios,Mitsui,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40238,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,49.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2209.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),537461,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",34500,394,,,,,,,Donald A. Guloien,"Insurance: Life, Health (stock)",394,250,CEO,Donald A. Guloien,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Toronto, Ontario, Canada",Website,http://www.manulife.com,Years on Global 500 List,15,Employees,34500,Company Information,Revenues ($M),40238,Profits ($M),2209.7,Assets ($M),537461,Total Stockholder Equity ($M),31197,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,7.1,Profit Ratios,Manulife Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40234,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7201.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),848389,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",58720,221,,,,,,,Zheng Wanchun,Banks: Commercial and Savings,221,251,CEO,Zheng Wanchun,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.cmbc.com.cn,Years on Global 500 List,5,Employees,58720,Company Information,Revenues ($M),40234,Profits ($M),7201.6,Assets ($M),848389,Total Stockholder Equity ($M),49297,Key Financials (Last Fiscal Year),Profit as % of Revenues,17.9,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,14.6,Profit Ratios,China Minsheng Banking,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40193,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1814.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),146873,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-35.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",97032,251,,,,,,,Huo Lianhong,"Insurance: Life, Health (stock)",251,252,CEO,Huo Lianhong,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Shanghai, China",Website,http://www.cpic.com.cn,Years on Global 500 List,7,Employees,97032,Company Information,Revenues ($M),40193,Profits ($M),1814.9,Assets ($M),146873,Total Stockholder Equity ($M),18960,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.5,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,9.6,Profit Ratios,China Pacific Insurance (Group),, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40180,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2676,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51274,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-64.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",122300,236,Fortune 500,67,,,,,W. Douglas Parker,Airlines,236,253,CEO,W. Douglas Parker,Sector,Transportation,Industry,Airlines,HQ Location,"Fort Worth, TX",Website,http://www.aa.com,Years on Global 500 List,23,Employees,122300,Company Information,Revenues ($M),40180,Profits ($M),2676,Assets ($M),51274,Total Stockholder Equity ($M),3785,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,70.7,Profit Ratios,American Airlines Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),40074,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),334.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),197790,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",34320,241,Fortune 500,68,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,54,Stephen S. Rasmussen,Insurance: Property and Casualty (Mutual),241,254,CEO,Stephen S. Rasmussen,Sector,Financials,Industry,Insurance: Property and Casualty (Mutual),HQ Location,"Columbus, OH",Website,http://www.nationwide.com,Years on Global 500 List,23,Employees,34320,Company Information,Revenues ($M),40074,Profits ($M),334.3,Assets ($M),197790,Total Stockholder Equity ($M),15537,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,2.2,Profit Ratios,Nationwide,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39807,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3920,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),95377,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",68000,246,Fortune 500,69,World’s Most Admired Companies,100000,,,Kenneth C. Frazier,Pharmaceuticals,246,255,CEO,Kenneth C. Frazier,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Kenilworth, NJ",Website,http://www.merck.com,Years on Global 500 List,23,Employees,68000,Company Information,Revenues ($M),39807,Profits ($M),3920,Assets ($M),95377,Total Stockholder Equity ($M),40088,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,9.8,Profit Ratios,Merck,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39668,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1867,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),59360,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",41000,264,Fortune 500,70,World’s Most Admired Companies,100000,,,David M. Cordani,Health Care: Insurance and Managed Care,264,256,CEO,David M. Cordani,Sector,Health Care,Industry,Health Care: Insurance and Managed Care,HQ Location,"Bloomfield, CT",Website,http://www.cigna.com,Years on Global 500 List,22,Employees,41000,Company Information,Revenues ($M),39668,Profits ($M),1867,Assets ($M),59360,Total Stockholder Equity ($M),13723,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,13.6,Profit Ratios,Cigna,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39639,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4373,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),51261,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",83756,239,Fortune 500,71,World’s Most Admired Companies,31,The 100 Best Companies to Work For,63,Edward H. Bastian,Airlines,239,257,CEO,Edward H. Bastian,Sector,Transportation,Industry,Airlines,HQ Location,"Atlanta, GA",Website,http://www.delta.com,Years on Global 500 List,23,Employees,83756,Company Information,Revenues ($M),39639,Profits ($M),4373,Assets ($M),51261,Total Stockholder Equity ($M),12287,Key Financials (Last Fiscal Year),Profit as % of Revenues,11,Profits as % of Assets,8.5,Profits as % of Stockholder Equity,35.6,Profit Ratios,Delta Air Lines,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1228,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13856,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,36.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",125000,244,Fortune 500,72,World’s Most Admired Companies,100000,,,Hubert B. Joly,Specialty Retailers,244,258,CEO,Hubert B. Joly,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Richfield, MN",Website,http://www.bestbuy.com,Years on Global 500 List,19,Employees,125000,Company Information,Revenues ($M),39403,Profits ($M),1228,Assets ($M),13856,Total Stockholder Equity ($M),4709,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,26.1,Profit Ratios,Best Buy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39323,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,24,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),74.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),81224,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",228448,327,,,,,,,Song Zhiping,"Building Materials, Glass",327,259,CEO,Song Zhiping,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Beijing, China",Website,http://www.cnbm.com.cn,Years on Global 500 List,7,Employees,228448,Company Information,Revenues ($M),39323,Profits ($M),74.5,Assets ($M),81224,Total Stockholder Equity ($M),5822,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,1.3,Profit Ratios,China National Building Material Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39302,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4809,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),54146,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",131000,256,Fortune 500,73,World’s Most Admired Companies,100000,,,Darius Adamczyk,"Electronics, Electrical Equip.",256,260,CEO,Darius Adamczyk,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Morris Plains, NJ",Website,http://www.honeywell.com,Years on Global 500 List,23,Employees,131000,Company Information,Revenues ($M),39302,Profits ($M),4809,Assets ($M),54146,Total Stockholder Equity ($M),19369,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.2,Profits as % of Assets,8.9,Profits as % of Stockholder Equity,24.8,Profit Ratios,Honeywell International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,35.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-573,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23077,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",120622,366,,,,,,,Richard Qiangdong Liu,Internet Services and Retailing,366,261,CEO,Richard Qiangdong Liu,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Beijing, China",Website,http://www.jd.com,Years on Global 500 List,2,Employees,120622,Company Information,Revenues ($M),39155,Profits ($M),-573,Assets ($M),23077,Total Stockholder Equity ($M),4877,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.5,Profits as % of Assets,-2.5,Profits as % of Stockholder Equity,-11.7,Profit Ratios,JD.com,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),39119,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1942.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37519,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",138700,276,,,,,,,Masaki Sakuyama,"Electronics, Electrical Equip.",276,262,CEO,Masaki Sakuyama,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Tokyo, Japan",Website,http://www.mitsubishielectric.com,Years on Global 500 List,23,Employees,138700,Company Information,Revenues ($M),39119,Profits ($M),1942.6,Assets ($M),37519,Total Stockholder Equity ($M),18307,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,10.6,Profit Ratios,Mitsubishi Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,20.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),949.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30719,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",136820,320,World’s Most Admired Companies,100000,,,,,Stefan Sommer,Motor Vehicles and Parts,320,263,CEO,Stefan Sommer,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Friedrichshafen, Germany",Website,http://www.zf.com,Years on Global 500 List,4,Employees,136820,Company Information,Revenues ($M),38888,Profits ($M),949.9,Assets ($M),30719,Total Stockholder Equity ($M),6134,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,15.5,Profit Ratios,ZF Friedrichshafen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38537,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-18,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-67,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74704,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-103.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",95400,194,Fortune 500,74,World’s Most Admired Companies,47,,,D. James Umpleby III,Construction and Farm Machinery,194,264,CEO,D. James Umpleby III,Sector,Industrials,Industry,Construction and Farm Machinery,HQ Location,"Peoria, IL",Website,http://www.caterpillar.com,Years on Global 500 List,23,Employees,95400,Company Information,Revenues ($M),38537,Profits ($M),-67,Assets ($M),74704,Total Stockholder Equity ($M),13137,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-0.5,Profit Ratios,Caterpillar,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1006,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),125592,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,95.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",50000,249,Fortune 500,75,World’s Most Admired Companies,100000,,,David H. Long,Insurance: Property and Casualty (Stock),249,265,CEO,David H. Long,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Boston, MA",Website,http://www.libertymutual.com,Years on Global 500 List,23,Employees,50000,Company Information,Revenues ($M),38308,Profits ($M),1006,Assets ($M),125592,Total Stockholder Equity ($M),20366,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.6,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,4.9,Profit Ratios,Liberty Mutual Insurance Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),38286,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),855.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),315387,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-40.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",30259,351,,,,,,,Paul Desmarais Jr.,"Insurance: Life, Health (stock)",351,266,CEO,Paul Desmarais Jr.,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Montreal, Quebec, Canada",Website,http://www.powercorporation.com,Years on Global 500 List,19,Employees,30259,Company Information,Revenues ($M),38286,Profits ($M),855.5,Assets ($M),315387,Total Stockholder Equity ($M),10339,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8.3,Profit Ratios,Power Corp. of Canada,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37949,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5979,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),814949,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",55311,263,Fortune 500,76,World’s Most Admired Companies,100000,,,James P. Gorman,Banks: Commercial and Savings,263,267,CEO,James P. Gorman,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.morganstanley.com,Years on Global 500 List,20,Employees,55311,Company Information,Revenues ($M),37949,Profits ($M),5979,Assets ($M),814949,Total Stockholder Equity ($M),76050,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.8,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,7.9,Profit Ratios,Morgan Stanley,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37880,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),821.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),14838,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",61400,,,,,,,,Chen Jianhua,Textiles,0,268,CEO,Chen Jianhua,Sector,Industrials,Industry,Textiles,HQ Location,"Suzhou City, China",Website,http://www.hengli.com,Years on Global 500 List,1,Employees,61400,Company Information,Revenues ($M),37880,Profits ($M),821.7,Assets ($M),14838,Total Stockholder Equity ($M),5498,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,5.5,Profits as % of Stockholder Equity,14.9,Profit Ratios,Hengli Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37813,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2082.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29899,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,200.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",21157,216,,,,,,,Alistair Phillips-Davies,Utilities,216,269,CEO,Alistair Phillips-Davies,Sector,Energy,Industry,Utilities,HQ Location,"Perth, Britain",Website,http://www.sse.com,Years on Global 500 List,12,Employees,21157,Company Information,Revenues ($M),37813,Profits ($M),2082.9,Assets ($M),29899,Total Stockholder Equity ($M),7842,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7,Profits as % of Stockholder Equity,26.6,Profit Ratios,SSE,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37788,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1273.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),271040,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",11737,258,Fortune 500,77,World’s Most Admired Companies,100000,,,Roger W. Crandall,"Insurance: Life, Health (Mutual)",258,270,CEO,Roger W. Crandall,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Springfield, MA",Website,http://www.massmutual.com,Years on Global 500 List,21,Employees,11737,Company Information,Revenues ($M),37788,Profits ($M),1273.5,Assets ($M),271040,Total Stockholder Equity ($M),15424,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,8.3,Profit Ratios,Massachusetts Mutual Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37712,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7398,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),860165,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,21.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",34400,252,Fortune 500,78,World’s Most Admired Companies,27,The 100 Best Companies to Work For,62,Lloyd C. Blankfein,Banks: Commercial and Savings,252,271,CEO,Lloyd C. Blankfein,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"New York, NY",Website,http://www.gs.com,Years on Global 500 List,18,Employees,34400,Company Information,Revenues ($M),37712,Profits ($M),7398,Assets ($M),860165,Total Stockholder Equity ($M),86893,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.6,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,8.5,Profit Ratios,Goldman Sachs Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37674,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-868,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),63253,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-155.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",209000,,,,,,,,Alex A. Molinaroli,Industrial Machinery,0,272,CEO,Alex A. Molinaroli,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Cork, Ireland",Website,http://www.johnsoncontrols.com,Years on Global 500 List,13,Employees,209000,Company Information,Revenues ($M),37674,Profits ($M),-868,Assets ($M),63253,Total Stockholder Equity ($M),24118,Key Financials (Last Fiscal Year),Profit as % of Revenues,-2.3,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-3.6,Profit Ratios,Johnson Controls International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37642,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1230.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),72985,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-90.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",99300,278,Change the World,1,,,,,Emma N. Walmsley,Pharmaceuticals,278,273,CEO,Emma N. Walmsley,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Brentford, Britain",Website,http://www.gsk.com,Years on Global 500 List,23,Employees,99300,Company Information,Revenues ($M),37642,Profits ($M),1230.9,Assets ($M),72985,Total Stockholder Equity ($M),1389,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,88.7,Profit Ratios,GlaxoSmithKline,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37543,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-85.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),144306,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-111.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",143691,217,,,,,,,Cao Peixi,Energy,217,274,CEO,Cao Peixi,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.chng.com.cn,Years on Global 500 List,9,Employees,143691,Company Information,Revenues ($M),37543,Profits ($M),-85.9,Assets ($M),144306,Total Stockholder Equity ($M),7512,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.2,Profits as % of Assets,-0.1,Profits as % of Stockholder Equity,-1.1,Profit Ratios,China Huaneng Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37504,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),995,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),79011,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",30992,225,Fortune 500,79,,,,,John W. McReynolds,Pipelines,225,275,CEO,John W. McReynolds,Sector,Energy,Industry,Pipelines,HQ Location,"Dallas, TX",Website,http://www.energytransfer.com,Years on Global 500 List,4,Employees,30992,Company Information,Revenues ($M),37504,Profits ($M),995,Assets ($M),79011,Total Stockholder Equity ($M),-1694,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.7,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,,Profit Ratios,Energy Transfer Equity,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37322,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1916.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),140911,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,37.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",202200,270,,,,,,,Ling Wen,"Mining, Crude-Oil Production",270,276,CEO,Ling Wen,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Beijing, China",Website,http://www.shenhuagroup.com.cn,Years on Global 500 List,8,Employees,202200,Company Information,Revenues ($M),37322,Profits ($M),1916.9,Assets ($M),140911,Total Stockholder Equity ($M),47962,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,4,Profit Ratios,Shenhua Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37240,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1085.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),105495,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1,"Total employees (full-time equivalent, if available) at fiscal year-end.",39887,311,,,,,,,Zhang Yuliang,Real estate,311,277,CEO,Zhang Yuliang,Sector,Financials,Industry,Real estate,HQ Location,"Shanghai, China",Website,http://www.ldjt.com.cn,Years on Global 500 List,6,Employees,39887,Company Information,Revenues ($M),37240,Profits ($M),1085.2,Assets ($M),105495,Total Stockholder Equity ($M),8333,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,1,Profits as % of Stockholder Equity,13,Profit Ratios,Greenland Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37105,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1492.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),523194,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,22.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",12997,291,Fortune 500,80,World’s Most Admired Companies,100000,,,Roger W. Ferguson Jr.,"Insurance: Life, Health (Mutual)",291,278,CEO,Roger W. Ferguson Jr.,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"New York, NY",Website,http://www.tiaa.org,Years on Global 500 List,20,Employees,12997,Company Information,Revenues ($M),37105,Profits ($M),1492.3,Assets ($M),523194,Total Stockholder Equity ($M),35583,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.2,Profit Ratios,TIAA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37051,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2503,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71523,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,39.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",430000,273,,,,,,,Ben Keswick,Motor Vehicles and Parts,273,279,CEO,Ben Keswick,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hong Kong, China",Website,http://www.jardines.com,Years on Global 500 List,18,Employees,430000,Company Information,Revenues ($M),37051,Profits ($M),2503,Assets ($M),71523,Total Stockholder Equity ($M),21800,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.5,Profit Ratios,Jardine Matheson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),37047,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),8901,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112180,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",136000,260,Fortune 500,81,,,,,Safra A. Catz,Computer Software,260,280,CEO,Safra A. Catz,Sector,Technology,Industry,Computer Software,HQ Location,"Redwood City, CA",Website,http://www.oracle.com,Years on Global 500 List,11,Employees,136000,Company Information,Revenues ($M),37047,Profits ($M),8901,Assets ($M),112180,Total Stockholder Equity ($M),47289,Key Financials (Last Fiscal Year),Profit as % of Revenues,24,Profits as % of Assets,7.9,Profits as % of Stockholder Equity,18.8,Profit Ratios,Oracle,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36992,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),830.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),35196,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",117542,255,,,,,,,Florentino Perez Rodriguez,"Engineering, Construction",255,281,CEO,Florentino Perez Rodriguez,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Madrid, Spain",Website,http://www.grupoacs.com,Years on Global 500 List,13,Employees,117542,Company Information,Revenues ($M),36992,Profits ($M),830.5,Assets ($M),35196,Total Stockholder Equity ($M),3778,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,22,Profit Ratios,ACS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1577.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),69669,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,154,"Total employees (full-time equivalent, if available) at fiscal year-end.",70900,308,,,,,,,Kuniharu Nakamura,Trading,308,282,CEO,Kuniharu Nakamura,Sector,Wholesalers,Industry,Trading,HQ Location,"Tokyo, Japan",Website,http://www.sumitomocorp.co.jp,Years on Global 500 List,23,Employees,70900,Company Information,Revenues ($M),36888,Profits ($M),1577.1,Assets ($M),69669,Total Stockholder Equity ($M),21241,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,7.4,Profit Ratios,Sumitomo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36881,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1768,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22373,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,44.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",114000,235,Fortune 500,82,World’s Most Admired Companies,100000,,,Thomas P. Hayes,Food Production,235,283,CEO,Thomas P. Hayes,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Springdale, AR",Website,http://www.tysonfoods.com,Years on Global 500 List,16,Employees,114000,Company Information,Revenues ($M),36881,Profits ($M),1768,Assets ($M),22373,Total Stockholder Equity ($M),9608,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.8,Profits as % of Assets,7.9,Profits as % of Stockholder Equity,18.4,Profit Ratios,Tyson Foods,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36789,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-25.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2807.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1498612,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",119300,181,,,,,,,James E. Staley,Banks: Commercial and Savings,181,284,CEO,James E. Staley,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"London, Britain",Website,http://www.barclays.com,Years on Global 500 List,23,Employees,119300,Company Information,Revenues ($M),36789,Profits ($M),2807.4,Assets ($M),1498612,Total Stockholder Equity ($M),80140,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.6,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.5,Profit Ratios,Barclays,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36617,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),687.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),203760,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",136739,305,,,,,,,Matteo Del Fante,"Insurance: Life, Health (stock)",305,285,CEO,Matteo Del Fante,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Rome, Italy",Website,http://www.posteitaliane.it,Years on Global 500 List,12,Employees,136739,Company Information,Revenues ($M),36617,Profits ($M),687.8,Assets ($M),203760,Total Stockholder Equity ($M),8578,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8,Profit Ratios,Poste Italiane,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36580,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2256.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27046,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",38278,220,,,,,,,Iain C. Conn,Utilities,220,286,CEO,Iain C. Conn,Sector,Energy,Industry,Utilities,HQ Location,"Windsor, Britain",Website,http://www.centrica.com,Years on Global 500 List,20,Employees,38278,Company Information,Revenues ($M),36580,Profits ($M),2256.7,Assets ($M),27046,Total Stockholder Equity ($M),3293,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,8.3,Profits as % of Stockholder Equity,68.5,Profit Ratios,Centrica,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36556,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2263,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40140,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-69.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",88000,265,Fortune 500,83,World’s Most Admired Companies,100000,,,Oscar Munoz,Airlines,265,287,CEO,Oscar Munoz,Sector,Transportation,Industry,Airlines,HQ Location,"Chicago, IL",Website,http://www.unitedcontinentalholdings.com,Years on Global 500 List,22,Employees,88000,Company Information,Revenues ($M),36556,Profits ($M),2263,Assets ($M),40140,Total Stockholder Equity ($M),8659,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,26.1,Profit Ratios,United Continental Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36534,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1877,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),108610,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-13.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",43275,283,Fortune 500,84,,,,,Thomas J. Wilson,Insurance: Property and Casualty (Stock),283,288,CEO,Thomas J. Wilson,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Northbrook, IL",Website,http://www.allstate.com,Years on Global 500 List,22,Employees,43275,Company Information,Revenues ($M),36534,Profits ($M),1877,Assets ($M),108610,Total Stockholder Equity ($M),20573,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,1.7,Profits as % of Stockholder Equity,9.1,Profit Ratios,Allstate,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36487,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3147,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47233,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,121.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",27227,230,,,,,,,Elia Massa Manik,Petroleum Refining,230,289,CEO,Elia Massa Manik,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Jakarta, Indonesia",Website,http://www.pertamina.com,Years on Global 500 List,5,Employees,27227,Company Information,Revenues ($M),36487,Profits ($M),3147,Assets ($M),47233,Total Stockholder Equity ($M),21864,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.6,Profits as % of Assets,6.7,Profits as % of Stockholder Equity,14.4,Profit Ratios,Pertamina,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36445,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2031,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22566,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",155450,306,,,,,,,Donald J. Walker,Motor Vehicles and Parts,306,290,CEO,Donald J. Walker,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Aurora, Ontario, Canada",Website,http://www.magna.com,Years on Global 500 List,17,Employees,155450,Company Information,Revenues ($M),36445,Profits ($M),2031,Assets ($M),22566,Total Stockholder Equity ($M),9768,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,9,Profits as % of Stockholder Equity,20.8,Profit Ratios,Magna International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36230,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3252.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),920291,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-49.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",59387,257,World’s Most Admired Companies,100000,,,,,Sergio P. Ermotti,Banks: Commercial and Savings,257,291,CEO,Sergio P. Ermotti,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Zurich, Switzerland",Website,http://www.ubs.com,Years on Global 500 List,23,Employees,59387,Company Information,Revenues ($M),36230,Profits ($M),3252.2,Assets ($M),920291,Total Stockholder Equity ($M),52777,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,6.2,Profit Ratios,UBS Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36225,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3440.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),764712,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",89126,224,,,,,,,Carlo Messina,Banks: Commercial and Savings,224,292,CEO,Carlo Messina,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Turin, Italy",Website,http://www.group.intesasanpaolo.com,Years on Global 500 List,19,Employees,89126,Company Information,Revenues ($M),36225,Profits ($M),3440.3,Assets ($M),764712,Total Stockholder Equity ($M),51583,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,6.7,Profit Ratios,Intesa Sanpaolo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36211,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),414.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28299,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",195000,274,,,,,,,Galen G. Weston,Food and Drug Stores,274,293,CEO,Galen G. Weston,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Toronto, Ontario, Canada",Website,http://www.weston.ca,Years on Global 500 List,23,Employees,195000,Company Information,Revenues ($M),36211,Profits ($M),414.9,Assets ($M),28299,Total Stockholder Equity ($M),5790,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,7.2,Profit Ratios,George Weston,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36122,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),809.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49205,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",82728,307,,,,,,,Shunichi Miyanaga,Industrial Machinery,307,294,CEO,Shunichi Miyanaga,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Tokyo, Japan",Website,http://www.mhi.com,Years on Global 500 List,23,Employees,82728,Company Information,Revenues ($M),36122,Profits ($M),809.6,Assets ($M),49205,Total Stockholder Equity ($M),15074,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,5.4,Profit Ratios,Mitsubishi Heavy Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),36114,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,43.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),185.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),3717,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",328,423,,,,,,,Rajesh J. Mehta,Trading,423,295,CEO,Rajesh J. Mehta,Sector,Wholesalers,Industry,Trading,HQ Location,"Bengaluru, India",Website,http://www.rajeshindia.com,Years on Global 500 List,2,Employees,328,Company Information,Revenues ($M),36114,Profits ($M),185.8,Assets ($M),3717,Total Stockholder Equity ($M),868,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,5,Profits as % of Stockholder Equity,21.4,Profit Ratios,Rajesh Exports,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35891,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),599.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13776,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-20.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",196251,259,,,,,,,Syh-Jang Liao,"Computers, Office Equipment",259,296,CEO,Syh-Jang Liao,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taipei, Taiwan",Website,http://www.pegatroncorp.com,Years on Global 500 List,5,Employees,196251,Company Information,Revenues ($M),35891,Profits ($M),599.6,Assets ($M),13776,Total Stockholder Equity ($M),4601,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,13,Profit Ratios,Pegatron,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35767,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2064.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),362739,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",41872,284,,,,,,,Akio Negishi,"Insurance: Life, Health (Mutual)",284,297,CEO,Akio Negishi,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Tokyo, Japan",Website,http://www.meijiyasuda.co.jp,Years on Global 500 List,23,Employees,41872,Company Information,Revenues ($M),35767,Profits ($M),2064.8,Assets ($M),362739,Total Stockholder Equity ($M),12074,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,17.1,Profit Ratios,Meiji Yasuda Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35464,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1939,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61118,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-345.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",87736,240,,,,,,,Soren Skou,Shipping,240,298,CEO,Soren Skou,Sector,Transportation,Industry,Shipping,HQ Location,"Copenhagen, Denmark",Website,http://www.maersk.com,Years on Global 500 List,14,Employees,87736,Company Information,Revenues ($M),35464,Profits ($M),-1939,Assets ($M),61118,Total Stockholder Equity ($M),31258,Key Financials (Last Fiscal Year),Profit as % of Revenues,-5.5,Profits as % of Assets,-3.2,Profits as % of Stockholder Equity,-6.2,Profit Ratios,Maersk Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35421,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4757.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84489,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",35000,247,,,,,,,Yousef Abdullah Al-Benyan,Chemicals,247,299,CEO,Yousef Abdullah Al-Benyan,Sector,Chemicals,Industry,Chemicals,HQ Location,"Riyadh, Saudi Arabia",Website,http://www.sabic.com,Years on Global 500 List,13,Employees,35000,Company Information,Revenues ($M),35421,Profits ($M),4757.1,Assets ($M),84489,Total Stockholder Equity ($M),43471,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.4,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,10.9,Profit Ratios,SABIC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35277,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),809.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36758,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,81.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",117997,280,,,,,,,Martin Bouygues,"Engineering, Construction",280,300,CEO,Martin Bouygues,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Paris, France",Website,http://www.bouygues.com,Years on Global 500 List,23,Employees,117997,Company Information,Revenues ($M),35277,Profits ($M),809.5,Assets ($M),36758,Total Stockholder Equity ($M),8585,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.3,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,9.4,Profit Ratios,Bouygues,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35269,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1535.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),43924,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14,"Total employees (full-time equivalent, if available) at fiscal year-end.",89477,272,World’s Most Admired Companies,100000,,,,,Martin Lundstedt,Motor Vehicles and Parts,272,301,CEO,Martin Lundstedt,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Goteborg, Sweden",Website,http://www.volvogroup.com,Years on Global 500 List,23,Employees,89477,Company Information,Revenues ($M),35269,Profits ($M),1535.8,Assets ($M),43924,Total Stockholder Equity ($M),10577,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,14.5,Profit Ratios,Volvo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35101,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1003,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),165124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,23.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",20039,289,,,,,,,Herbert K. Haas,Insurance: Property and Casualty (Stock),289,302,CEO,Herbert K. Haas,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Hanover, Germany",Website,http://www.talanx.com,Years on Global 500 List,4,Employees,20039,Company Information,Revenues ($M),35101,Profits ($M),1003,Assets ($M),165124,Total Stockholder Equity ($M),9574,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,10.5,Profit Ratios,Talanx,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),35011,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1964,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36593,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",107276,285,World’s Most Admired Companies,100000,,,,,Carsten Spohr,Airlines,285,303,CEO,Carsten Spohr,Sector,Transportation,Industry,Airlines,HQ Location,"Cologne, Germany",Website,http://www.lufthansagroup.com,Years on Global 500 List,23,Employees,107276,Company Information,Revenues ($M),35011,Profits ($M),1964,Assets ($M),36593,Total Stockholder Equity ($M),7446,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,5.4,Profits as % of Stockholder Equity,26.4,Profit Ratios,Lufthansa Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34904,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7839.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),880724,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",75510,297,,,,,,,David I. McKay,Banks: Commercial and Savings,297,304,CEO,David I. McKay,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.rbc.com,Years on Global 500 List,23,Employees,75510,Company Information,Revenues ($M),34904,Profits ($M),7839.6,Assets ($M),880724,Total Stockholder Equity ($M),52994,Key Financials (Last Fiscal Year),Profit as % of Revenues,22.5,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,14.8,Profit Ratios,Royal Bank of Canada,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34798,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4111.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,34.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",384000,312,World’s Most Admired Companies,41,The 100 Best Companies to Work For,88,Change the World,29,Pierre Nanterme,Information Technology Services,312,305,CEO,Pierre Nanterme,Sector,Technology,Industry,Information Technology Services,HQ Location,"Dublin, Ireland",Website,http://www.accenture.com,Years on Global 500 List,16,Employees,384000,Company Information,Revenues ($M),34798,Profits ($M),4111.9,Assets ($M),20609,Total Stockholder Equity ($M),7555,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,20,Profits as % of Stockholder Equity,54.4,Profit Ratios,Accenture,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34485,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1919.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),68392,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",24396,250,,,,,,,Josu Jon Imaz San Miguel,Petroleum Refining,250,306,CEO,Josu Jon Imaz San Miguel,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Madrid, Spain",Website,http://www.repsol.com,Years on Global 500 List,23,Employees,24396,Company Information,Revenues ($M),34485,Profits ($M),1919.7,Assets ($M),68392,Total Stockholder Equity ($M),32553,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,2.8,Profits as % of Stockholder Equity,5.9,Profit Ratios,Repsol,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34458,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,17.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3164.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),119555,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",58280,356,,,,,,,Yu Liang,Real estate,356,307,CEO,Yu Liang,Sector,Financials,Industry,Real estate,HQ Location,"Shenzhen, China",Website,http://www.vanke.com,Years on Global 500 List,2,Employees,58280,Company Information,Revenues ($M),34458,Profits ($M),3164.5,Assets ($M),119555,Total Stockholder Equity ($M),16324,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,19.4,Profit Ratios,China Vanke,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34274,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2025.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17464,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",191000,317,Fortune 500,85,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,21,Randall T. Jones Sr.,Food and Drug Stores,317,308,CEO,Randall T. Jones Sr.,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Lakeland, FL",Website,http://www.publix.com,Years on Global 500 List,23,Employees,191000,Company Information,Revenues ($M),34274,Profits ($M),2025.7,Assets ($M),17464,Total Stockholder Equity ($M),13473,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.9,Profits as % of Assets,11.6,Profits as % of Stockholder Equity,15,Profit Ratios,Publix Super Markets,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34193,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),356,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),6921,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",351500,321,,,,,,,Markus Mosa,Wholesalers: Food and Grocery,321,309,CEO,Markus Mosa,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Hamburg, Germany",Website,http://www.edeka-verbund.de,Years on Global 500 List,19,Employees,351500,Company Information,Revenues ($M),34193,Profits ($M),356,Assets ($M),6921,Total Stockholder Equity ($M),1729,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,5.1,Profits as % of Stockholder Equity,20.6,Profit Ratios,Edeka Zentrale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34149,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),490.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24674,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-30.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",118700,288,,,,,,,Michael Coupe,Food and Drug Stores,288,310,CEO,Michael Coupe,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"London, Britain",Website,http://www.j-sainsbury.co.uk,Years on Global 500 List,23,Employees,118700,Company Information,Revenues ($M),34149,Profits ($M),490.9,Assets ($M),24674,Total Stockholder Equity ($M),7971,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2,Profits as % of Stockholder Equity,6.2,Profit Ratios,J. Sainsbury,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),34145,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1193.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12304,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,27.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",105000,301,,,,,,,Brian P. Hannasch,Food and Drug Stores,301,311,CEO,Brian P. Hannasch,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Laval, Quebec, Canada",Website,http://www.couche-tard.com,Years on Global 500 List,4,Employees,105000,Company Information,Revenues ($M),34145,Profits ($M),1193.5,Assets ($M),12304,Total Stockholder Equity ($M),5044,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.5,Profits as % of Assets,9.7,Profits as % of Stockholder Equity,23.7,Profit Ratios,Alimentation Couche-Tard,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33930,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),421,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44181,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22,"Total employees (full-time equivalent, if available) at fiscal year-end.",169173,309,,,,,,,Wang Jianping,"Engineering, Construction",309,312,CEO,Wang Jianping,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.ceec.net.cn,Years on Global 500 List,4,Employees,169173,Company Information,Revenues ($M),33930,Profits ($M),421,Assets ($M),44181,Total Stockholder Equity ($M),5140,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,1,Profits as % of Stockholder Equity,8.2,Profit Ratios,China Energy Engineering Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33881,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),469.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40783,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",30767,237,,,,,,,Hwan-Goo Kang,Industrial Machinery,237,313,CEO,Hwan-Goo Kang,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Ulsan, South Korea",Website,http://www.hyundaiheavy.com,Years on Global 500 List,11,Employees,30767,Company Information,Revenues ($M),33881,Profits ($M),469.8,Assets ($M),40783,Total Stockholder Equity ($M),13197,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,3.6,Profit Ratios,Hyundai Heavy Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33828,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1899,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39499,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",132300,286,World’s Most Admired Companies,100000,,,,,Ulrich Spiesshofer,Industrial Machinery,286,314,CEO,Ulrich Spiesshofer,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Zurich, Switzerland",Website,http://www.abb.com,Years on Global 500 List,23,Employees,132300,Company Information,Revenues ($M),33828,Profits ($M),1899,Assets ($M),39499,Total Stockholder Equity ($M),13395,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.6,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,14.2,Profit Ratios,ABB,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33823,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5408,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),158893,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",56400,302,Fortune 500,86,World’s Most Admired Companies,17,The 100 Best Companies to Work For,69,Kenneth I. Chenault,Diversified Financials,302,315,CEO,Kenneth I. Chenault,Sector,Financials,Industry,Diversified Financials,HQ Location,"New York, NY",Website,http://www.americanexpress.com,Years on Global 500 List,23,Employees,56400,Company Information,Revenues ($M),33823,Profits ($M),5408,Assets ($M),158893,Total Stockholder Equity ($M),20501,Key Financials (Last Fiscal Year),Profit as % of Revenues,16,Profits as % of Assets,3.4,Profits as % of Stockholder Equity,26.4,Profit Ratios,American Express,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33781,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4617,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89263,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",51029,296,,,,,,,Jean-Sebastien Jacques,"Mining, Crude-Oil Production",296,316,CEO,Jean-Sebastien Jacques,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"London, Britain",Website,http://www.riotinto.com,Years on Global 500 List,12,Employees,51029,Company Information,Revenues ($M),33781,Profits ($M),4617,Assets ($M),89263,Total Stockholder Equity ($M),39290,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,5.2,Profits as % of Stockholder Equity,11.8,Profit Ratios,Rio Tinto Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33747,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),565.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39993,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",193718,319,,,,,,,Guillaume Pepy,Railroads,319,317,CEO,Guillaume Pepy,Sector,Transportation,Industry,Railroads,HQ Location,"St. Denis, France",Website,http://www.sncf.com,Years on Global 500 List,23,Employees,193718,Company Information,Revenues ($M),33747,Profits ($M),565.1,Assets ($M),39993,Total Stockholder Equity ($M),4696,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,12,Profit Ratios,SNCF Mobilites,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33739,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1700.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-9.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",183061,266,,,,,,,Liu Hualong,Industrial Machinery,266,318,CEO,Liu Hualong,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.crrcgc.cc,Years on Global 500 List,2,Employees,183061,Company Information,Revenues ($M),33739,Profits ($M),1700.3,Assets ($M),48681,Total Stockholder Equity ($M),15088,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,11.3,Profit Ratios,CRRC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33475,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,47.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4252.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),130721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-72.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",290000,473,,,,,,,"Li Tzar Kuoi, Victor",Specialty Retailers,473,319,CEO,"Li Tzar Kuoi, Victor",Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Hong Kong, China",Website,http://www.ckh.com.hk,Years on Global 500 List,2,Employees,290000,Company Information,Revenues ($M),33475,Profits ($M),4252.4,Assets ($M),130721,Total Stockholder Equity ($M),54777,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.7,Profits as % of Assets,3.3,Profits as % of Stockholder Equity,7.8,Profit Ratios,CK Hutchison Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33366,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-153.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",127298,267,,,,,,,Yang GuoZhan,"Mining, Crude-Oil Production",267,320,CEO,Yang GuoZhan,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xingtai, China",Website,http://www.jznyjt.com,Years on Global 500 List,7,Employees,127298,Company Information,Revenues ($M),33366,Profits ($M),-153.9,Assets ($M),30819,Total Stockholder Equity ($M),2042,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.5,Profits as % of Assets,-0.5,Profits as % of Stockholder Equity,-7.5,Profit Ratios,Jizhong Energy Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33184,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2298.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12884,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",235000,338,Fortune 500,87,World’s Most Admired Companies,100000,,,Ernie L. Herrman,Specialty Retailers,338,321,CEO,Ernie L. Herrman,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Framingham, MA",Website,http://www.tjx.com,Years on Global 500 List,16,Employees,235000,Company Information,Revenues ($M),33184,Profits ($M),2298.2,Assets ($M),12884,Total Stockholder Equity ($M),4511,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.9,Profits as % of Assets,17.8,Profits as % of Stockholder Equity,51,Profit Ratios,TJX,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),33174,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),448.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18705,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",59429,318,,,,,,,Liu Mingzhong,Metals,318,322,CEO,Liu Mingzhong,Sector,Materials,Industry,Metals,HQ Location,"Beijing, China",Website,http://www.xxcig.com,Years on Global 500 List,6,Employees,59429,Company Information,Revenues ($M),33174,Profits ($M),448.2,Assets ($M),18705,Total Stockholder Equity ($M),4585,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,Xinxing Cathay International Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32972,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2617.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34541,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-3.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",29499,310,,,,,,,Young-Deuk Lim,Motor Vehicles and Parts,310,323,CEO,Young-Deuk Lim,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Seoul, South Korea",Website,http://www.mobis.co.kr,Years on Global 500 List,6,Employees,29499,Company Information,Revenues ($M),32972,Profits ($M),2617.8,Assets ($M),34541,Total Stockholder Equity ($M),23596,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,7.6,Profits as % of Stockholder Equity,11.1,Profit Ratios,Hyundai Mobis,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32879,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1168.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,39.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",99389,393,,,,,,,Yasumori Ihara,Motor Vehicles and Parts,393,324,CEO,Yasumori Ihara,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Kariya, Japan",Website,http://www.aisin.com,Years on Global 500 List,16,Employees,99389,Company Information,Revenues ($M),32879,Profits ($M),1168.9,Assets ($M),29964,Total Stockholder Equity ($M),11098,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.5,Profit Ratios,Aisin Seiki,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32845,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11594,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-97.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",70430,340,Fortune 500,91,,,,,John T. Standley,Food and Drug Stores,340,325,CEO,John T. Standley,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Camp Hill, PA",Website,http://www.riteaid.com,Years on Global 500 List,19,Employees,70430,Company Information,Revenues ($M),32845,Profits ($M),4.1,Assets ($M),11594,Total Stockholder Equity ($M),614,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.7,Profit Ratios,Rite Aid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32652,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-22.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),45552,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",134134,325,,,,,,,He Jiuchang,"Mining, Crude-Oil Production",325,326,CEO,He Jiuchang,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xi'an, China",Website,http://www.sxycpc.com,Years on Global 500 List,5,Employees,134134,Company Information,Revenues ($M),32652,Profits ($M),-22.6,Assets ($M),45552,Total Stockholder Equity ($M),14063,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.1,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.2,Profit Ratios,Shaanxi Yanchang Petroleum (Group),, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32636,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1623.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),537278,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",28264,334,,,,,,,Wolfgang Kirsch,Banks: Commercial and Savings,334,327,CEO,Wolfgang Kirsch,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Frankfurt, Germany",Website,http://www.dzbank.com,Years on Global 500 List,23,Employees,28264,Company Information,Revenues ($M),32636,Profits ($M),1623.4,Assets ($M),537278,Total Stockholder Equity ($M),21160,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,DZ Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32539,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-13038,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),906489,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-793.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",117659,300,,,,,,,Jean Pierre Mustier,Banks: Commercial and Savings,300,328,CEO,Jean Pierre Mustier,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Milan, Italy",Website,http://www.unicreditgroup.eu,Years on Global 500 List,22,Employees,117659,Company Information,Revenues ($M),32539,Profits ($M),-13038,Assets ($M),906489,Total Stockholder Equity ($M),41484,Key Financials (Last Fiscal Year),Profit as % of Revenues,-40.1,Profits as % of Assets,-1.4,Profits as % of Stockholder Equity,-31.4,Profit Ratios,UniCredit Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32461,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1877.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),627701,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",61400,313,,,,,,,Tang Shuangning,Banks: Commercial and Savings,313,329,CEO,Tang Shuangning,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Beijing, China",Website,http://www.ebchina.com,Years on Global 500 List,3,Employees,61400,Company Information,Revenues ($M),32461,Profits ($M),1877.8,Assets ($M),627701,Total Stockholder Equity ($M),15661,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,12,Profit Ratios,China Everbright Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32421,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1861.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31917,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,115.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",60539,402,,,,,,,Takeo Higuchi,"Engineering, Construction",402,330,CEO,Takeo Higuchi,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Osaka, Japan",Website,http://www.daiwahouse.co.jp,Years on Global 500 List,13,Employees,60539,Company Information,Revenues ($M),32421,Profits ($M),1861.5,Assets ($M),31917,Total Stockholder Equity ($M),10761,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,5.8,Profits as % of Stockholder Equity,17.3,Profit Ratios,Daiwa House Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32376,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3760,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21396,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,14.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",70700,343,Fortune 500,88,World’s Most Admired Companies,12,Change the World,6,Mark G. Parker,Apparel,343,331,CEO,Mark G. Parker,Sector,Apparel,Industry,Apparel,HQ Location,"Beaverton, OR",Website,http://www.nike.com,Years on Global 500 List,11,Employees,70700,Company Information,Revenues ($M),32376,Profits ($M),3760,Assets ($M),21396,Total Stockholder Equity ($M),12258,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.6,Profits as % of Assets,17.6,Profits as % of Stockholder Equity,30.7,Profit Ratios,Nike,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2991.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112536,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",28389,295,,,,,,,Jose Ignacio Sanchez Galan,Utilities,295,332,CEO,Jose Ignacio Sanchez Galan,Sector,Energy,Industry,Utilities,HQ Location,"Bilbao, Spain",Website,http://www.iberdrola.com,Years on Global 500 List,13,Employees,28389,Company Information,Revenues ($M),32308,Profits ($M),2991.3,Assets ($M),112536,Total Stockholder Equity ($M),38695,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.3,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,7.7,Profit Ratios,Iberdrola,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32287,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6712.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),694565,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",45129,269,,,,,,,Ian M. Narev,Banks: Commercial and Savings,269,333,CEO,Ian M. Narev,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sydney, Australia",Website,http://www.commbank.com.au,Years on Global 500 List,13,Employees,45129,Company Information,Revenues ($M),32287,Profits ($M),6712.9,Assets ($M),694565,Total Stockholder Equity ($M),44816,Key Financials (Last Fiscal Year),Profit as % of Revenues,20.8,Profits as % of Assets,1,Profits as % of Stockholder Equity,15,Profit Ratios,Commonwealth Bank of Australia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32237,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),502,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39142,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-34.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",115390,293,,,,,,,Ren Hongbin,Industrial Machinery,293,334,CEO,Ren Hongbin,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.sinomach.com.cn,Years on Global 500 List,7,Employees,115390,Company Information,Revenues ($M),32237,Profits ($M),502,Assets ($M),39142,Total Stockholder Equity ($M),8930,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,5.6,Profit Ratios,Sinomach,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32161,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1761.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48984,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,16.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",232873,341,,,,,,,Stephan Sturm,Health Care: Medical Facilities,341,335,CEO,Stephan Sturm,Sector,Health Care,Industry,Health Care: Medical Facilities,HQ Location,"Bad Homburg, Germany",Website,http://www.fresenius.com,Years on Global 500 List,8,Employees,232873,Company Information,Revenues ($M),32161,Profits ($M),1761.6,Assets ($M),48984,Total Stockholder Equity ($M),13186,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,Fresenius,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),32094,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1996.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),55721,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",170357,344,,,,,,,Lei Fanpei,Aerospace and Defense,344,336,CEO,Lei Fanpei,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.spacechina.com,Years on Global 500 List,3,Employees,170357,Company Information,Revenues ($M),32094,Profits ($M),1996.2,Assets ($M),55721,Total Stockholder Equity ($M),21440,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.2,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,9.3,Profit Ratios,China Aerospace Science & Technology,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31926,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-254.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64151,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",123559,347,,,,,,,Yang Zhaoqian,"Mining, Crude-Oil Production",347,337,CEO,Yang Zhaoqian,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Xi'an, China",Website,http://www.shccig.com,Years on Global 500 List,3,Employees,123559,Company Information,Revenues ($M),31926,Profits ($M),-254.4,Assets ($M),64151,Total Stockholder Equity ($M),5769,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.8,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.4,Profit Ratios,Shaanxi Coal & Chemical Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31828,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2368.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),194384,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",89250,496,,,,,,,Hui Kayan,Real estate,496,338,CEO,Hui Kayan,Sector,Financials,Industry,Real estate,HQ Location,"Guangzhou, China",Website,http://www.evergrande.com,Years on Global 500 List,2,Employees,89250,Company Information,Revenues ($M),31828,Profits ($M),2368.8,Assets ($M),194384,Total Stockholder Equity ($M),22618,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.4,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,10.5,Profit Ratios,China Evergrande Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31680,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),20.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16108,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",25460,328,,,,,,,Li Baomin,"Mining, Crude-Oil Production",328,339,CEO,Li Baomin,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Guixi, China",Website,http://www.jxcc.com,Years on Global 500 List,5,Employees,25460,Company Information,Revenues ($M),31680,Profits ($M),20.4,Assets ($M),16108,Total Stockholder Equity ($M),2967,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.7,Profit Ratios,Jiangxi Copper,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31559,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,16.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1535.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),107092,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",47430,388,,,,,,,Kengo Sakurada,Insurance: Property and Casualty (Stock),388,340,CEO,Kengo Sakurada,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Tokyo, Japan",Website,http://www.sompo-hd.com,Years on Global 500 List,21,Employees,47430,Company Information,Revenues ($M),31559,Profits ($M),1535.7,Assets ($M),107092,Total Stockholder Equity ($M),8424,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,1.4,Profits as % of Stockholder Equity,18.2,Profit Ratios,Sompo Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31508,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,18.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),744.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),95657,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",76425,401,,,,,,,Zhang Zhengao,Real estate,401,341,CEO,Zhang Zhengao,Sector,Financials,Industry,Real estate,HQ Location,"Beijing, China",Website,http://www.poly.com.cn,Years on Global 500 List,3,Employees,76425,Company Information,Revenues ($M),31508,Profits ($M),744.1,Assets ($M),95657,Total Stockholder Equity ($M),7676,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,9.7,Profit Ratios,China Poly Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31469,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,65.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4135,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),159786,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,45.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",31000,,,,,,,,Evan G. Greenberg,Insurance: Property and Casualty (Stock),0,342,CEO,Evan G. Greenberg,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Zurich, Switzerland",Website,http://www.chubb.com,Years on Global 500 List,1,Employees,31000,Company Information,Revenues ($M),31469,Profits ($M),4135,Assets ($M),159786,Total Stockholder Equity ($M),48275,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.1,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,8.6,Profit Ratios,Chubb,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31430,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,19.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1265.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29749,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,341.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60712,410,,,,,,,Li Shufu,Motor Vehicles and Parts,410,343,CEO,Li Shufu,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hangzhou, China",Website,http://www.geely.com,Years on Global 500 List,6,Employees,60712,Company Information,Revenues ($M),31430,Profits ($M),1265.7,Assets ($M),29749,Total Stockholder Equity ($M),5896,Key Financials (Last Fiscal Year),Profit as % of Revenues,4,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,21.5,Profit Ratios,Zhejiang Geely Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31360,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1134,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),114904,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-50,"Total employees (full-time equivalent, if available) at fiscal year-end.",34396,355,Fortune 500,89,World’s Most Admired Companies,100000,,,Christopher M. Crane,Utilities,355,344,CEO,Christopher M. Crane,Sector,Energy,Industry,Utilities,HQ Location,"Chicago, IL",Website,http://www.exeloncorp.com,Years on Global 500 List,14,Employees,34396,Company Information,Revenues ($M),31360,Profits ($M),1134,Assets ($M),114904,Total Stockholder Equity ($M),25837,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,1,Profits as % of Stockholder Equity,4.4,Profit Ratios,Exelon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31353,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2955,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32872,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",98800,330,Fortune 500,90,World’s Most Admired Companies,100000,,,Phebe N. Novakovic,Aerospace and Defense,330,345,CEO,Phebe N. Novakovic,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Falls Church, VA",Website,http://www.generaldynamics.com,Years on Global 500 List,17,Employees,98800,Company Information,Revenues ($M),31353,Profits ($M),2955,Assets ($M),32872,Total Stockholder Equity ($M),10976,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.4,Profits as % of Assets,9,Profits as % of Stockholder Equity,26.9,Profit Ratios,General Dynamics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31333,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2484.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52972,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-36.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",106400,369,,,,,,,Gavin E. Patterson,Telecommunications,369,346,CEO,Gavin E. Patterson,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"London, Britain",Website,http://www.btplc.com,Years on Global 500 List,23,Employees,106400,Company Information,Revenues ($M),31333,Profits ($M),2484.6,Assets ($M),52972,Total Stockholder Equity ($M),10420,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.9,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,23.8,Profit Ratios,BT Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31271,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1385,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44062,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",197673,332,,,,,,,Fujio Mitarai,"Computers, Office Equipment",332,347,CEO,Fujio Mitarai,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Tokyo, Japan",Website,http://www.canon.com,Years on Global 500 List,23,Employees,197673,Company Information,Revenues ($M),31271,Profits ($M),1385,Assets ($M),44062,Total Stockholder Equity ($M),23865,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,5.8,Profit Ratios,Canon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31185,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),324.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11018,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,47.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",18150,359,,,,,,,Wang Tingge,Trading,359,348,CEO,Wang Tingge,Sector,Wholesalers,Industry,Trading,HQ Location,"Hangzhou, China",Website,http://www.wuchanzhongda.cn,Years on Global 500 List,7,Employees,18150,Company Information,Revenues ($M),31185,Profits ($M),324.3,Assets ($M),11018,Total Stockholder Equity ($M),2900,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,2.9,Profits as % of Stockholder Equity,11.2,Profit Ratios,Wuchan Zhongda Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),31158,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1442.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40064,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,237.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",69291,324,,,,,,,Hitoshi Ochi,Chemicals,324,349,CEO,Hitoshi Ochi,Sector,Chemicals,Industry,Chemicals,HQ Location,"Tokyo, Japan",Website,http://www.mitsubishichem-hd.co.jp,Years on Global 500 List,23,Employees,69291,Company Information,Revenues ($M),31158,Profits ($M),1442.1,Assets ($M),40064,Total Stockholder Equity ($M),9796,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,14.7,Profit Ratios,Mitsubishi Chemical Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30912,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-40.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-6385,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),118953,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-434.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",26827,168,,,,,,,Andrew Mackenzie,"Mining, Crude-Oil Production",168,350,CEO,Andrew Mackenzie,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Melbourne, Australia",Website,http://www.bhpbilliton.com,Years on Global 500 List,23,Employees,26827,Company Information,Revenues ($M),30912,Profits ($M),-6385,Assets ($M),118953,Total Stockholder Equity ($M),54290,Key Financials (Last Fiscal Year),Profit as % of Revenues,-20.7,Profits as % of Assets,-5.4,Profits as % of Stockholder Equity,-11.8,Profit Ratios,BHP Billiton,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30855,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6646.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),878268,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",81233,350,,,,,,,Bharat B. Masrani,Banks: Commercial and Savings,350,351,CEO,Bharat B. Masrani,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.td.com,Years on Global 500 List,18,Employees,81233,Company Information,Revenues ($M),30855,Profits ($M),6646.1,Assets ($M),878268,Total Stockholder Equity ($M),54148,Key Financials (Last Fiscal Year),Profit as % of Revenues,21.5,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,12.3,Profit Ratios,Toronto-Dominion Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30696,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2605.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24794,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",36668,395,,,,,,,Yasuyuki Yoshinaga,Motor Vehicles and Parts,395,352,CEO,Yasuyuki Yoshinaga,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.subaru.co.jp,Years on Global 500 List,15,Employees,36668,Company Information,Revenues ($M),30696,Profits ($M),2605.8,Assets ($M),24794,Total Stockholder Equity ($M),13285,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.5,Profits as % of Assets,10.5,Profits as % of Stockholder Equity,19.6,Profit Ratios,Subaru,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30678,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2441.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31901,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",143616,333,,,,,,,Masaaki Tsuya,Motor Vehicles and Parts,333,353,CEO,Masaaki Tsuya,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Tokyo, Japan",Website,http://www.bridgestone.com,Years on Global 500 List,23,Employees,143616,Company Information,Revenues ($M),30678,Profits ($M),2441.3,Assets ($M),31901,Total Stockholder Equity ($M),20268,Key Financials (Last Fiscal Year),Profit as % of Revenues,8,Profits as % of Assets,7.7,Profits as % of Stockholder Equity,12,Profit Ratios,Bridgestone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30588,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2750.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),806950,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",47170,292,,,,,,,Tidjane Thiam,Banks: Commercial and Savings,292,354,CEO,Tidjane Thiam,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Zurich, Switzerland",Website,http://www.credit-suisse.com,Years on Global 500 List,23,Employees,47170,Company Information,Revenues ($M),30588,Profits ($M),-2750.7,Assets ($M),806950,Total Stockholder Equity ($M),41237,Key Financials (Last Fiscal Year),Profit as % of Revenues,-9,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,-6.7,Profit Ratios,Credit Suisse Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30582,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1443.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36999,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",148682,381,,,,,,,Gao Hongwei,Aerospace and Defense,381,355,CEO,Gao Hongwei,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.casic.com.cn,Years on Global 500 List,2,Employees,148682,Company Information,Revenues ($M),30582,Profits ($M),1443.7,Assets ($M),36999,Total Stockholder Equity ($M),13654,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,3.9,Profits as % of Stockholder Equity,10.6,Profit Ratios,China Aerospace Science & Industry,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30539,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),627,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),38920,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,123.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60439,371,,,,,,,Eiji Hayashida,Metals,371,356,CEO,Eiji Hayashida,Sector,Materials,Industry,Metals,HQ Location,"Tokyo, Japan",Website,http://www.jfe-holdings.co.jp,Years on Global 500 List,15,Employees,60439,Company Information,Revenues ($M),30539,Profits ($M),627,Assets ($M),38920,Total Stockholder Equity ($M),15632,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.1,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,4,Profit Ratios,JFE Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30390,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,13.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5570.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),1799736,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",59179,399,,,,,,,Yasuhiro Sato,Banks: Commercial and Savings,399,357,CEO,Yasuhiro Sato,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Tokyo, Japan",Website,http://www.mizuho-fg.co.jp,Years on Global 500 List,17,Employees,59179,Company Information,Revenues ($M),30390,Profits ($M),5570.1,Assets ($M),1799736,Total Stockholder Equity ($M),62843,Key Financials (Last Fiscal Year),Profit as % of Revenues,18.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,8.9,Profit Ratios,Mizuho Financial Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30390,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),13501,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56977,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",9000,316,Fortune 500,92,World’s Most Admired Companies,100000,100 Fastest-Growing Companies,17,John F. Milligan,Pharmaceuticals,316,358,CEO,John F. Milligan,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Foster City, CA",Website,http://www.gilead.com,Years on Global 500 List,3,Employees,9000,Company Information,Revenues ($M),30390,Profits ($M),13501,Assets ($M),56977,Total Stockholder Equity ($M),18887,Key Financials (Last Fiscal Year),Profit as % of Revenues,44.4,Profits as % of Assets,23.7,Profits as % of Stockholder Equity,71.5,Profit Ratios,Gilead Sciences,Change the World,4 Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30347,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),424.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),17318,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",12157,299,Fortune 500,93,,,,,Jay D. Debertin,Food Production,299,359,CEO,Jay D. Debertin,Sector,"Food, Beverages & Tobacco",Industry,Food Production,HQ Location,"Inver Grove Heights, MN",Website,http://www.chsinc.com,Years on Global 500 List,10,Employees,12157,Company Information,Revenues ($M),30347,Profits ($M),424.2,Assets ($M),17318,Total Stockholder Equity ($M),7852,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.4,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,5.4,Profit Ratios,CHS,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30316,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1300.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16801,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",13395,358,,,,,,,D. Rajkumar,Petroleum Refining,358,360,CEO,D. Rajkumar,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.bharatpetroleum.in,Years on Global 500 List,14,Employees,13395,Company Information,Revenues ($M),30316,Profits ($M),1300.5,Assets ($M),16801,Total Stockholder Equity ($M),4747,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.3,Profits as % of Assets,7.7,Profits as % of Stockholder Equity,27.4,Profit Ratios,Bharat Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30109,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5050,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32906,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",91584,348,Fortune 500,94,World’s Most Admired Companies,23,,,Inge G. Thulin,Miscellaneous,348,361,CEO,Inge G. Thulin,Sector,Industrials,Industry,Miscellaneous,HQ Location,"St. Paul, MN",Website,http://www.3m.com,Years on Global 500 List,23,Employees,91584,Company Information,Revenues ($M),30109,Profits ($M),5050,Assets ($M),32906,Total Stockholder Equity ($M),10298,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.8,Profits as % of Assets,15.3,Profits as % of Stockholder Equity,49,Profit Ratios,3M,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),30010,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),321.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36575,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,82.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",144659,329,,,,,,,Rui Xiaowu,"Electronics, Electrical Equip.",329,362,CEO,Rui Xiaowu,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Beijing, China",Website,http://www.cec.com.cn,Years on Global 500 List,7,Employees,144659,Company Information,Revenues ($M),30010,Profits ($M),321.9,Assets ($M),36575,Total Stockholder Equity ($M),4831,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,6.7,Profit Ratios,China Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29973,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1374.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33320,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,71.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",86778,411,,,,,,,Albert Manifold,"Building Materials, Glass",411,363,CEO,Albert Manifold,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Dublin, Ireland",Website,http://www.crh.com,Years on Global 500 List,14,Employees,86778,Company Information,Revenues ($M),29973,Profits ($M),1374.6,Assets ($M),33320,Total Stockholder Equity ($M),14654,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.6,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,9.4,Profit Ratios,CRH,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29877,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),367.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40773,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",68025,349,,,,,,,Wu Qiang,Industrial Machinery,349,364,CEO,Wu Qiang,Sector,Industrials,Industry,Industrial Machinery,HQ Location,"Beijing, China",Website,http://www.cssc.net.cn,Years on Global 500 List,2,Employees,68025,Company Information,Revenues ($M),29877,Profits ($M),367.6,Assets ($M),40773,Total Stockholder Equity ($M),9164,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,4,Profit Ratios,China State Shipbuilding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29862,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),352.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23720,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,148.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",35133,314,,,,,,,Shen Wenrong,Metals,314,365,CEO,Shen Wenrong,Sector,Materials,Industry,Metals,HQ Location,"Zhangjiagang, China",Website,http://www.shasteel.cn,Years on Global 500 List,9,Employees,35133,Company Information,Revenues ($M),29862,Profits ($M),352.1,Assets ($M),23720,Total Stockholder Equity ($M),5584,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,6.3,Profit Ratios,Jiangsu Shagang Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29743,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,29.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1489,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),94792,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,30.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",106478,465,,,,,,,Xu Lirong,Shipping,465,366,CEO,Xu Lirong,Sector,Transportation,Industry,Shipping,HQ Location,"Shanghai, China",Website,http://www.coscoshipping.com,Years on Global 500 List,10,Employees,106478,Company Information,Revenues ($M),29743,Profits ($M),1489,Assets ($M),94792,Total Stockholder Equity ($M),24148,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,6.2,Profit Ratios,China COSCO Shipping,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29665,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),865.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),22660,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",48849,373,,,,,,,Masamichi Kogai,Motor Vehicles and Parts,373,367,CEO,Masamichi Kogai,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hiroshima, Japan",Website,http://www.mazda.com,Years on Global 500 List,23,Employees,48849,Company Information,Revenues ($M),29665,Profits ($M),865.5,Assets ($M),22660,Total Stockholder Equity ($M),8455,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.9,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,10.2,Profit Ratios,Mazda Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29493,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),436.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),126068,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,50.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",127343,342,,,,,,,Wang Binghua,Energy,342,368,CEO,Wang Binghua,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.spic.com.cn,Years on Global 500 List,6,Employees,127343,Company Information,Revenues ($M),29493,Profits ($M),436.6,Assets ($M),126068,Total Stockholder Equity ($M),8477,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,5.2,Profit Ratios,State Power Investment,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29388,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10283.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),58535,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",46968,403,World’s Most Admired Companies,100000,,,,,Mark Liu,Semiconductors and Other Electronic Components,403,369,CEO,Mark Liu,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Hsinchu, Taiwan",Website,http://www.tsmc.com,Years on Global 500 List,3,Employees,46968,Company Information,Revenues ($M),29388,Profits ($M),10283.7,Assets ($M),58535,Total Stockholder Equity ($M),42174,Key Financials (Last Fiscal Year),Profit as % of Revenues,35,Profits as % of Assets,17.6,Profits as % of Stockholder Equity,24.4,Profit Ratios,Taiwan Semiconductor Manufacturing,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29363,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3982,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99014,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",73062,417,,,,,,,Fabio Schvartsman,"Mining, Crude-Oil Production",417,370,CEO,Fabio Schvartsman,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Rio de Janeiro, Brazil",Website,http://www.vale.com,Years on Global 500 List,11,Employees,73062,Company Information,Revenues ($M),29363,Profits ($M),3982,Assets ($M),99014,Total Stockholder Equity ($M),39042,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,4,Profits as % of Stockholder Equity,10.2,Profit Ratios,Vale,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29318,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3926,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),65966,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,2.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",25000,376,Fortune 500,95,World’s Most Admired Companies,100000,,,Jeffrey L. Bewkes,Entertainment,376,371,CEO,Jeffrey L. Bewkes,Sector,Media,Industry,Entertainment,HQ Location,"New York, NY",Website,http://www.timewarner.com,Years on Global 500 List,16,Employees,25000,Company Information,Revenues ($M),29318,Profits ($M),3926,Assets ($M),65966,Total Stockholder Equity ($M),24335,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.4,Profits as % of Assets,6,Profits as % of Stockholder Equity,16.1,Profit Ratios,Time Warner,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29299,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,16.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),39.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39887,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",179689,426,,,,,,,Li Weimin,"Mining, Crude-Oil Production",426,372,CEO,Li Weimin,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Jinan , China",Website,http://www.snjt.com,Years on Global 500 List,6,Employees,179689,Company Information,Revenues ($M),29299,Profits ($M),39.2,Assets ($M),39887,Total Stockholder Equity ($M),6575,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.1,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.6,Profit Ratios,Shandong Energy Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29252,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,10.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1476.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),27969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,51.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",62992,405,,,,,,,Toshihiro Suzuki,Motor Vehicles and Parts,405,373,CEO,Toshihiro Suzuki,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Hamamatsu, Japan",Website,http://www.globalsuzuki.com,Years on Global 500 List,23,Employees,62992,Company Information,Revenues ($M),29252,Profits ($M),1476.2,Assets ($M),27969,Total Stockholder Equity ($M),10318,Key Financials (Last Fiscal Year),Profit as % of Revenues,5,Profits as % of Assets,5.3,Profits as % of Stockholder Equity,14.3,Profit Ratios,Suzuki Motor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29183,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3836,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23442,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-14.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",13000,315,,,,,,,Bhavesh V. Patel,Chemicals,315,374,CEO,Bhavesh V. Patel,Sector,Chemicals,Industry,Chemicals,HQ Location,"Rotterdam, Netherlands",Website,http://www.lyb.com,Years on Global 500 List,10,Employees,13000,Company Information,Revenues ($M),29183,Profits ($M),3836,Assets ($M),23442,Total Stockholder Equity ($M),6048,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.1,Profits as % of Assets,16.4,Profits as % of Stockholder Equity,63.4,Profit Ratios,LyondellBasell Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1601.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34068,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,123.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",114731,368,World’s Most Admired Companies,100000,,,,,Frans A. van Houten,Medical Products and Equipment,368,375,CEO,Frans A. van Houten,Sector,Health Care,Industry,Medical Products and Equipment,HQ Location,"Amsterdam, Netherlands",Website,http://www.philips.com,Years on Global 500 List,23,Employees,114731,Company Information,Revenues ($M),29003,Profits ($M),1601.3,Assets ($M),34068,Total Stockholder Equity ($M),13289,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,4.7,Profits as % of Stockholder Equity,12,Profit Ratios,Royal Philips,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),29003,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,197.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3522,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),149067,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",91500,,Fortune 500,96,,,,,Thomas M. Rutledge,Telecommunications,0,376,CEO,Thomas M. Rutledge,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Stamford, CT",Website,http://www.charter.com,Years on Global 500 List,1,Employees,91500,Company Information,Revenues ($M),29003,Profits ($M),3522,Assets ($M),149067,Total Stockholder Equity ($M),40139,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.1,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,8.8,Profit Ratios,Charter Communications,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28833,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,42.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3538,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),99782,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,32.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",98017,,World’s Most Admired Companies,100000,,,,,Omar S. Ishrak,Medical Products and Equipment,0,377,CEO,Omar S. Ishrak,Sector,Health Care,Industry,Medical Products and Equipment,HQ Location,"Dublin, Ireland",Website,http://www.medtronic.com,Years on Global 500 List,1,Employees,98017,Company Information,Revenues ($M),28833,Profits ($M),3538,Assets ($M),99782,Total Stockholder Equity ($M),52063,Key Financials (Last Fiscal Year),Profit as % of Revenues,12.3,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,6.8,Profit Ratios,Medtronic,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),818,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),250441,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",5646,377,Fortune 500,97,World’s Most Admired Companies,100000,,,John E. Schlifske,"Insurance: Life, Health (Mutual)",377,378,CEO,John E. Schlifske,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Milwaukee, WI",Website,http://www.northwesternmutual.com,Years on Global 500 List,23,Employees,5646,Company Information,Revenues ($M),28799,Profits ($M),818,Assets ($M),250441,Total Stockholder Equity ($M),20226,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4,Profit Ratios,Northwestern Mutual,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28572,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3434.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),37577,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-6.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",89331,378,World’s Most Admired Companies,100000,,,,,Jean-Paul Agon,Household and Personal Products,378,379,CEO,Jean-Paul Agon,Sector,Household Products,Industry,Household and Personal Products,HQ Location,"Clichy, France",Website,http://www.loreal.com,Years on Global 500 List,23,Employees,89331,Company Information,Revenues ($M),28572,Profits ($M),3434.5,Assets ($M),37577,Total Stockholder Equity ($M),25840,Key Financials (Last Fiscal Year),Profit as % of Revenues,12,Profits as % of Assets,9.1,Profits as % of Stockholder Equity,13.3,Profit Ratios,L’Oreal,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28483,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),110.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),152701,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-95.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",155905,385,,,,,,,Wang Jianlin,Real estate,385,380,CEO,Wang Jianlin,Sector,Financials,Industry,Real estate,HQ Location,"Beijing, China",Website,http://www.wanda-group.com,Years on Global 500 List,2,Employees,155905,Company Information,Revenues ($M),28483,Profits ($M),110.3,Assets ($M),152701,Total Stockholder Equity ($M),17237,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,0.6,Profit Ratios,Dalian Wanda Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28277,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),267.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13696,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,4.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",15745,424,,,,,,,Shuichi Watanabe,Wholesalers: Health Care,424,381,CEO,Shuichi Watanabe,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Tokyo, Japan",Website,http://www.medipal.co.jp,Years on Global 500 List,15,Employees,15745,Company Information,Revenues ($M),28277,Profits ($M),267.7,Assets ($M),13696,Total Stockholder Equity ($M),3607,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,2,Profits as % of Stockholder Equity,7.4,Profit Ratios,Medipal Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28204,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),360.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),112115,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-70.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",107000,331,,,,,,,Zhao Jianguo,Utilities,331,382,CEO,Zhao Jianguo,Sector,Energy,Industry,Utilities,HQ Location,"Beijing, China",Website,http://www.chd.com.cn,Years on Global 500 List,6,Employees,107000,Company Information,Revenues ($M),28204,Profits ($M),360.6,Assets ($M),112115,Total Stockholder Equity ($M),7947,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,4.5,Profit Ratios,China Huadian,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28196,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,21.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4164,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),185074,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,54.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",20000,456,,,,,,,Ng Keng Hooi,"Insurance: Life, Health (stock)",456,383,CEO,Ng Keng Hooi,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Hong Kong, China",Website,http://www.aia.com,Years on Global 500 List,3,Employees,20000,Company Information,Revenues ($M),28196,Profits ($M),4164,Assets ($M),185074,Total Stockholder Equity ($M),34984,Key Financials (Last Fiscal Year),Profit as % of Revenues,14.8,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,11.9,Profit Ratios,AIA Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28166,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1228.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12370,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,63.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",10422,367,,,,,,,Mukesh Kumar Surana,Petroleum Refining,367,384,CEO,Mukesh Kumar Surana,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Mumbai, India",Website,http://www.hindustanpetroleum.com,Years on Global 500 List,14,Employees,10422,Company Information,Revenues ($M),28166,Profits ($M),1228.1,Assets ($M),12370,Total Stockholder Equity ($M),3245,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,9.9,Profits as % of Stockholder Equity,37.8,Profit Ratios,Hindustan Petroleum,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),28155,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),693.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62536,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",77704,372,,,,,,,Herbert Bolliger,Food and Drug Stores,372,385,CEO,Herbert Bolliger,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Zurich, Switzerland",Website,http://www.migros.ch,Years on Global 500 List,23,Employees,77704,Company Information,Revenues ($M),28155,Profits ($M),693.3,Assets ($M),62536,Total Stockholder Equity ($M),17132,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.5,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,4,Profit Ratios,Migros Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27920,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),875.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24185,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,569.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",82175,363,World’s Most Admired Companies,100000,,,,,Jean-Marc Janaillac,Airlines,363,386,CEO,Jean-Marc Janaillac,Sector,Transportation,Industry,Airlines,HQ Location,"Paris, France",Website,http://www.airfranceklm.com,Years on Global 500 List,21,Employees,82175,Company Information,Revenues ($M),27920,Profits ($M),875.8,Assets ($M),24185,Total Stockholder Equity ($M),1354,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,64.7,Profit Ratios,Air France-KLM Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27837,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1408.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),13693,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",527180,387,Change the World,33,,,,,Richard J. Cousins,Food Services,387,387,CEO,Richard J. Cousins,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Chertsey, Britain",Website,http://www.compass-group.com,Years on Global 500 List,16,Employees,527180,Company Information,Revenues ($M),27837,Profits ($M),1408.5,Assets ($M),13693,Total Stockholder Equity ($M),3254,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,10.3,Profits as % of Stockholder Equity,43.3,Profit Ratios,Compass Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27810,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1687,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),77956,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-181.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",100000,287,,,,,,,Paal Kibsgaard,Oil & Gas Equipment Services,287,388,CEO,Paal Kibsgaard,Sector,Energy,Industry,Oil & Gas Equipment Services,HQ Location,"Houston, TX",Website,http://www.slb.com,Years on Global 500 List,17,Employees,100000,Company Information,Revenues ($M),27810,Profits ($M),-1687,Assets ($M),77956,Total Stockholder Equity ($M),41078,Key Financials (Last Fiscal Year),Profit as % of Revenues,-6.1,Profits as % of Assets,-2.2,Profits as % of Stockholder Equity,-4.1,Profit Ratios,Schlumberger,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27792,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1299.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61513,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",32666,391,,,,,,,Shigeki Iwane,Utilities,391,389,CEO,Shigeki Iwane,Sector,Energy,Industry,Utilities,HQ Location,"Osaka, Japan",Website,http://www.kepco.co.jp,Years on Global 500 List,23,Employees,32666,Company Information,Revenues ($M),27792,Profits ($M),1299.3,Assets ($M),61513,Total Stockholder Equity ($M),11205,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.7,Profits as % of Assets,2.1,Profits as % of Stockholder Equity,11.6,Profit Ratios,Kansai Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27715,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),469.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18229,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-16.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",92698,326,,,,,,,Barry Lam,"Computers, Office Equipment",326,390,CEO,Barry Lam,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taoyuan, Taiwan",Website,http://www.quantatw.com,Years on Global 500 List,12,Employees,92698,Company Information,Revenues ($M),27715,Profits ($M),469.3,Assets ($M),18229,Total Stockholder Equity ($M),4123,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,11.4,Profit Ratios,Quanta Computer,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27704,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5477,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),642083,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",35280,336,,,,,,,Brian C. Hartzer,Banks: Commercial and Savings,336,391,CEO,Brian C. Hartzer,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Sydney, Australia",Website,http://www.westpac.com.au,Years on Global 500 List,13,Employees,35280,Company Information,Revenues ($M),27704,Profits ($M),5477,Assets ($M),642083,Total Stockholder Equity ($M),44468,Key Financials (Last Fiscal Year),Profit as % of Revenues,19.8,Profits as % of Assets,0.9,Profits as % of Stockholder Equity,12.3,Profit Ratios,Westpac Banking,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27669,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),482.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),18369,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",73451,396,,,,,,,Joos Sutter,Food and Drug Stores,396,392,CEO,Joos Sutter,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Basel, Switzerland",Website,http://www.coop.ch,Years on Global 500 List,8,Employees,73451,Company Information,Revenues ($M),27669,Profits ($M),482.1,Assets ($M),18369,Total Stockholder Equity ($M),8250,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,5.8,Profit Ratios,Coop Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27638,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,54.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10217,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64961,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,177,"Total employees (full-time equivalent, if available) at fiscal year-end.",17048,,Fortune 500,98,World’s Most Admired Companies,9,100 Fastest-Growing Companies,3,Mark Zuckerberg,Internet Services and Retailing,0,393,CEO,Mark Zuckerberg,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Menlo Park, CA",Website,http://www.facebook.com,Years on Global 500 List,1,Employees,17048,Company Information,Revenues ($M),27638,Profits ($M),10217,Assets ($M),64961,Total Stockholder Equity ($M),59194,Key Financials (Last Fiscal Year),Profit as % of Revenues,37,Profits as % of Assets,15.7,Profits as % of Stockholder Equity,17.3,Profit Ratios,Facebook,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27625,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3014,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),100245,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",30900,397,Fortune 500,99,World’s Most Admired Companies,100000,,,Alan D. Schnitzer,Insurance: Property and Casualty (Stock),397,394,CEO,Alan D. Schnitzer,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"New York, NY",Website,http://www.travelers.com,Years on Global 500 List,14,Employees,30900,Company Information,Revenues ($M),27625,Profits ($M),3014,Assets ($M),100245,Total Stockholder Equity ($M),23221,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.9,Profits as % of Assets,3,Profits as % of Stockholder Equity,13,Profit Ratios,Travelers Cos.,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27519,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3751,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),357033,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",47300,430,Fortune 500,100,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,17,Richard D. Fairbank,Banks: Commercial and Savings,430,395,CEO,Richard D. Fairbank,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"McLean, VA",Website,http://www.capitalone.com,Years on Global 500 List,7,Employees,47300,Company Information,Revenues ($M),27519,Profits ($M),3751,Assets ($M),357033,Total Stockholder Equity ($M),47514,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.6,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,7.9,Profit Ratios,Capital One Financial,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27326,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2755,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48365,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-66.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",21500,360,Fortune 500,101,,,,,James R. Murdoch,Entertainment,360,396,CEO,James R. Murdoch,Sector,Media,Industry,Entertainment,HQ Location,"New York, NY",Website,http://www.21cf.com,Years on Global 500 List,23,Employees,21500,Company Information,Revenues ($M),27326,Profits ($M),2755,Assets ($M),48365,Total Stockholder Equity ($M),13661,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.1,Profits as % of Assets,5.7,Profits as % of Stockholder Equity,20.2,Profit Ratios,Twenty-First Century Fox,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27315,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),268.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),114611,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-67.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",124056,345,,,,,,,Qiao Baoping,Energy,345,397,CEO,Qiao Baoping,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.cgdc.com.cn,Years on Global 500 List,8,Employees,124056,Company Information,Revenues ($M),27315,Profits ($M),268.7,Assets ($M),114611,Total Stockholder Equity ($M),7496,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.6,Profit Ratios,China Guodian,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27308,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1817.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),68521,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",90903,438,,,,,,,Eric Olsen,"Building Materials, Glass",438,398,CEO,Eric Olsen,Sector,Materials,Industry,"Building Materials, Glass",HQ Location,"Jona, Switzerland",Website,http://www.lafargeholcim.com,Years on Global 500 List,9,Employees,90903,Company Information,Revenues ($M),27308,Profits ($M),1817.9,Assets ($M),68521,Total Stockholder Equity ($M),30337,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.7,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6,Profit Ratios,LafargeHolcim,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27307,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1935.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),44137,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,24,"Total employees (full-time equivalent, if available) at fiscal year-end.",143901,354,Change the World,24,,,,,Jean-Pascal Tricoire,"Electronics, Electrical Equip.",354,399,CEO,Jean-Pascal Tricoire,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Rueil-Malmaison, France",Website,http://www.schneider-electric.com,Years on Global 500 List,16,Employees,143901,Company Information,Revenues ($M),27307,Profits ($M),1935.2,Assets ($M),44137,Total Stockholder Equity ($M),21614,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.1,Profits as % of Assets,4.4,Profits as % of Stockholder Equity,9,Profit Ratios,Schneider Electric,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1611.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),35898,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-1.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",158064,408,,,,,,,Xiong Qun Li,Aerospace and Defense,408,400,CEO,Xiong Qun Li,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Beijing, China",Website,http://www.cetc.com.cn,Years on Global 500 List,2,Employees,158064,Company Information,Revenues ($M),27292,Profits ($M),1611.6,Assets ($M),35898,Total Stockholder Equity ($M),15895,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.9,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,10.1,Profit Ratios,China Electronics Technology Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27131,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1779.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),147290,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",29943,444,Fortune 500,102,World’s Most Admired Companies,25,The 100 Best Companies to Work For,35,Stuart Parker,Insurance: Property and Casualty (Stock),444,401,CEO,Stuart Parker,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"San Antonio, TX",Website,http://www.usaa.com,Years on Global 500 List,4,Employees,29943,Company Information,Revenues ($M),27131,Profits ($M),1779.1,Assets ($M),147290,Total Stockholder Equity ($M),28840,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.6,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,6.2,Profit Ratios,USAA,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),27016,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),126.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),5413,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-27.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",5000,346,Fortune 500,103,World’s Most Admired Companies,100000,,,Michael J. Kasbar,Energy,346,402,CEO,Michael J. Kasbar,Sector,Energy,Industry,Energy,HQ Location,"Miami, FL",Website,http://www.wfscorp.com,Years on Global 500 List,6,Employees,5000,Company Information,Revenues ($M),27016,Profits ($M),126.5,Assets ($M),5413,Total Stockholder Equity ($M),1925,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,6.6,Profit Ratios,World Fuel Services,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26976,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),135.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9292,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-39.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",26611,416,,,,,,,Oliver Windholz,Wholesalers: Health Care,416,403,CEO,Oliver Windholz,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Mannheim, Germany",Website,http://www.phoenixgroup.eu,Years on Global 500 List,7,Employees,26611,Company Information,Revenues ($M),26976,Profits ($M),135.4,Assets ($M),9292,Total Stockholder Equity ($M),2732,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,1.5,Profits as % of Stockholder Equity,5,Profit Ratios,Phoenix Pharmahandel,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26972,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),423.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40022,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-15.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",156225,382,,,,,,,Antoine Frerot,Utilities,382,404,CEO,Antoine Frerot,Sector,Energy,Industry,Utilities,HQ Location,"Paris, France",Website,http://www.veolia.com,Years on Global 500 List,15,Employees,156225,Company Information,Revenues ($M),26972,Profits ($M),423.6,Assets ($M),40022,Total Stockholder Equity ($M),8173,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.6,Profits as % of Assets,1.1,Profits as % of Stockholder Equity,5.2,Profit Ratios,Veolia Environnement,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26958,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),259,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),594967,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-94.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",34263,304,Change the World,22,,,,,Andrew G. Thorburn,Banks: Commercial and Savings,304,405,CEO,Andrew G. Thorburn,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Docklands, Australia",Website,http://www.nab.com.au,Years on Global 500 List,22,Employees,34263,Company Information,Revenues ($M),26958,Profits ($M),259,Assets ($M),594967,Total Stockholder Equity ($M),39244,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,,Profits as % of Stockholder Equity,0.7,Profit Ratios,National Australia Bank,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26685,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6967,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36851,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,1.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",79500,398,Fortune 500,104,,,,,Andre Calantzopoulos,Tobacco,398,406,CEO,Andre Calantzopoulos,Sector,"Food, Beverages & Tobacco",Industry,Tobacco,HQ Location,"New York, NY",Website,http://www.pmi.com,Years on Global 500 List,9,Employees,79500,Company Information,Revenues ($M),26685,Profits ($M),6967,Assets ($M),36851,Total Stockholder Equity ($M),-12688,Key Financials (Last Fiscal Year),Profit as % of Revenues,26.1,Profits as % of Assets,18.9,Profits as % of Stockholder Equity,,Profit Ratios,Philip Morris International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26644,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-7.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1523.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),57981,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-21.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",56767,364,Fortune 500,105,World’s Most Admired Companies,50,,,Samuel R. Allen,Construction and Farm Machinery,364,407,CEO,Samuel R. Allen,Sector,Industrials,Industry,Construction and Farm Machinery,HQ Location,"Moline, IL",Website,http://www.johndeere.com,Years on Global 500 List,23,Employees,56767,Company Information,Revenues ($M),26644,Profits ($M),1523.9,Assets ($M),57981,Total Stockholder Equity ($M),6520,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,2.6,Profits as % of Stockholder Equity,23.4,Profit Ratios,Deere,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26587,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2565,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71009,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,25.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",85834,447,,,,,,,Tetsuro Tomita,Railroads,447,408,CEO,Tetsuro Tomita,Sector,Transportation,Industry,Railroads,HQ Location,"Tokyo, Japan",Website,http://www.jreast.co.jp,Years on Global 500 List,23,Employees,85834,Company Information,Revenues ($M),26587,Profits ($M),2565,Assets ($M),71009,Total Stockholder Equity ($M),23253,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.6,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,11,Profit Ratios,East Japan Railway,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26494,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-423.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),98096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-199.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",14921,413,,,,,,,Willem A.J. van Duin,"Insurance: Life, Health (Mutual)",413,409,CEO,Willem A.J. van Duin,Sector,Financials,Industry,"Insurance: Life, Health (Mutual)",HQ Location,"Zeist, Netherlands",Website,http://www.achmea.nl,Years on Global 500 List,4,Employees,14921,Company Information,Revenues ($M),26494,Profits ($M),-423.5,Assets ($M),98096,Total Stockholder Equity ($M),10308,Key Financials (Last Fiscal Year),Profit as % of Revenues,-1.6,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.1,Profit Ratios,Achmea,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26487,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,44.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3632,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),120480,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,472.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",41000,,Fortune 500,106,,,,,Bernardo Hees,Food Consumer Products,0,410,CEO,Bernardo Hees,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Pittsburgh, PA",Website,http://www.kraftheinzcompany.com,Years on Global 500 List,3,Employees,41000,Company Information,Revenues ($M),26487,Profits ($M),3632,Assets ($M),120480,Total Stockholder Equity ($M),57358,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.7,Profits as % of Assets,3,Profits as % of Stockholder Equity,6.3,Profit Ratios,Kraft Heinz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26292,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,14.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),934,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),172442,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-22.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",36578,468,,,,,,,Ming-Ho Hsiung,"Insurance: Life, Health (stock)",468,411,CEO,Ming-Ho Hsiung,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Taipei, Taiwan",Website,http://www.cathaylife.com.tw,Years on Global 500 List,16,Employees,36578,Company Information,Revenues ($M),26292,Profits ($M),934,Assets ($M),172442,Total Stockholder Equity ($M),11212,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,8.3,Profit Ratios,Cathay Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26235,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),195.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),7932,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-26.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",9500,409,Fortune 500,107,World’s Most Admired Companies,100000,,,Robert M. Dutkowsky,Wholesalers: Electronics and Office Equipment,409,412,CEO,Robert M. Dutkowsky,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Clearwater, FL",Website,http://www.techdata.com,Years on Global 500 List,19,Employees,9500,Company Information,Revenues ($M),26235,Profits ($M),195.1,Assets ($M),7932,Total Stockholder Equity ($M),2170,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,9,Profit Ratios,Tech Data,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26222,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1770.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),219157,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,65.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",5284,439,,,,,,,Chang-Soo Kim,"Insurance: Life, Health (stock)",439,413,CEO,Chang-Soo Kim,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Seoul, South Korea",Website,http://www.samsunglife.com,Years on Global 500 List,21,Employees,5284,Company Information,Revenues ($M),26222,Profits ($M),1770.3,Assets ($M),219157,Total Stockholder Equity ($M),22064,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,8,Profit Ratios,Samsung Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26219,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),506.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11240,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-11.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",17700,380,Fortune 500,108,World’s Most Admired Companies,100000,,,William J. Amelio,Wholesalers: Electronics and Office Equipment,380,414,CEO,William J. Amelio,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Phoenix, AZ",Website,http://www.avnet.com,Years on Global 500 List,7,Employees,17700,Company Information,Revenues ($M),26219,Profits ($M),506.5,Assets ($M),11240,Total Stockholder Equity ($M),4691,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,10.8,Profit Ratios,Avnet,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,73.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-847.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),47354,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-131,"Total employees (full-time equivalent, if available) at fiscal year-end.",102687,,World’s Most Admired Companies,100000,,,,,Rajeev Suri,Network and Other Communications Equipment,0,415,CEO,Rajeev Suri,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Espoo, Finland",Website,http://www.nokia.com,Years on Global 500 List,19,Employees,102687,Company Information,Revenues ($M),26113,Profits ($M),-847.1,Assets ($M),47354,Total Stockholder Equity ($M),21192,Key Financials (Last Fiscal Year),Profit as % of Revenues,-3.2,Profits as % of Assets,-1.8,Profits as % of Stockholder Equity,-4,Profit Ratios,Nokia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26073,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1560.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),64011,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,695,"Total employees (full-time equivalent, if available) at fiscal year-end.",7733,407,,,,,,,Al Monaco,Pipelines,407,416,CEO,Al Monaco,Sector,Energy,Industry,Pipelines,HQ Location,"Calgary, Alberta, Canada",Website,http://www.enbridge.com,Years on Global 500 List,4,Employees,7733,Company Information,Revenues ($M),26073,Profits ($M),1560.9,Assets ($M),64011,Total Stockholder Equity ($M),15949,Key Financials (Last Fiscal Year),Profit as % of Revenues,6,Profits as % of Assets,2.4,Profits as % of Stockholder Equity,9.8,Profit Ratios,Enbridge,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26070,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1489.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),49688,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",17229,365,,,,,,,Rafael Villaseca Marco,Utilities,365,417,CEO,Rafael Villaseca Marco,Sector,Energy,Industry,Utilities,HQ Location,"Barcelona, Spain",Website,http://www.gasnaturalfenosa.com,Years on Global 500 List,9,Employees,17229,Company Information,Revenues ($M),26070,Profits ($M),1489.6,Assets ($M),49688,Total Stockholder Equity ($M),16057,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,3,Profits as % of Stockholder Equity,9.3,Profit Ratios,Gas Natural Fenosa,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26032,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4199.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),699976,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",46554,362,,,,,,,Shayne Elliott,Banks: Commercial and Savings,362,418,CEO,Shayne Elliott,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Docklands, Australia",Website,http://www.anz.com,Years on Global 500 List,14,Employees,46554,Company Information,Revenues ($M),26032,Profits ($M),4199.9,Assets ($M),699976,Total Stockholder Equity ($M),44237,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.1,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,9.5,Profit Ratios,Australia & New Zealand Banking Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),26004,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),200.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31199,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-87.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",111464,357,World’s Most Admired Companies,100000,,,,,Borje Ekholm,Network and Other Communications Equipment,357,419,CEO,Borje Ekholm,Sector,Technology,Industry,Network and Other Communications Equipment,HQ Location,"Stockholm, Sweden",Website,http://www.ericsson.com,Years on Global 500 List,23,Employees,111464,Company Information,Revenues ($M),26004,Profits ($M),200.5,Assets ($M),31199,Total Stockholder Equity ($M),15395,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.8,Profits as % of Assets,0.6,Profits as % of Stockholder Equity,1.3,Profit Ratios,LM Ericsson,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25975,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),992.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),26062,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,31,"Total employees (full-time equivalent, if available) at fiscal year-end.",248330,440,,,,,,,Masayoshi Matsumoto,Motor Vehicles and Parts,440,420,CEO,Masayoshi Matsumoto,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Osaka, Japan",Website,http://www.global-sei.com,Years on Global 500 List,23,Employees,248330,Company Information,Revenues ($M),25975,Profits ($M),992.7,Assets ($M),26062,Total Stockholder Equity ($M),11769,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.8,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,8.4,Profit Ratios,Sumitomo Electric Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25923,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),61538,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-77.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",90000,352,Fortune 500,109,World’s Most Admired Companies,100000,,,Irene B. Rosenfeld,Food Consumer Products,352,421,CEO,Irene B. Rosenfeld,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Deerfield, IL",Website,http://www.mondelezinternational.com,Years on Global 500 List,10,Employees,90000,Company Information,Revenues ($M),25923,Profits ($M),1659,Assets ($M),61538,Total Stockholder Equity ($M),25161,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.4,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,6.6,Profit Ratios,Mondelez International,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25913,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,23.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),769.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),211943,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18,"Total employees (full-time equivalent, if available) at fiscal year-end.",68527,500,,,,,,,Bruce Hemphill,"Insurance: Life, Health (stock)",500,422,CEO,Bruce Hemphill,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"London, Britain",Website,http://www.oldmutualplc.com,Years on Global 500 List,16,Employees,68527,Company Information,Revenues ($M),25913,Profits ($M),769.3,Assets ($M),211943,Total Stockholder Equity ($M),9949,Key Financials (Last Fiscal Year),Profit as % of Revenues,3,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,7.7,Profit Ratios,Old Mutual,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25888,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),813.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),23711,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",9139,412,,,,,,,Takashi Tsukioka,Petroleum Refining,412,423,CEO,Takashi Tsukioka,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Tokyo, Japan",Website,http://www.idemitsu.com,Years on Global 500 List,23,Employees,9139,Company Information,Revenues ($M),25888,Profits ($M),813.7,Assets ($M),23711,Total Stockholder Equity ($M),3852,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.4,Profits as % of Stockholder Equity,21.1,Profit Ratios,Idemitsu Kosan,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25817,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5362.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),668805,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",88901,428,,,,,,,Brian J. Porter,Banks: Commercial and Savings,428,424,CEO,Brian J. Porter,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Toronto, Ontario, Canada",Website,http://www.scotiabank.com,Years on Global 500 List,20,Employees,88901,Company Information,Revenues ($M),25817,Profits ($M),5362.2,Assets ($M),668805,Total Stockholder Equity ($M),41975,Key Financials (Last Fiscal Year),Profit as % of Revenues,20.8,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,12.8,Profit Ratios,Bank of Nova Scotia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25778,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),619,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19851,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",148300,389,Fortune 500,110,World’s Most Admired Companies,100000,,,Jeffrey Gennette,General Merchandisers,389,425,CEO,Jeffrey Gennette,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Cincinnati, OH",Website,http://www.macysinc.com,Years on Global 500 List,23,Employees,148300,Company Information,Revenues ($M),25778,Profits ($M),619,Assets ($M),19851,Total Stockholder Equity ($M),4323,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,14.3,Profit Ratios,Macy’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25775,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),857.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),71590,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",37020,434,,,,,,,Antonio Huertas Mejias,Insurance: Property and Casualty (Stock),434,426,CEO,Antonio Huertas Mejias,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Madrid, Spain",Website,http://www.mapfre.com,Years on Global 500 List,10,Employees,37020,Company Information,Revenues ($M),25775,Profits ($M),857.5,Assets ($M),71590,Total Stockholder Equity ($M),9625,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.3,Profits as % of Assets,1.2,Profits as % of Stockholder Equity,8.9,Profit Ratios,Mapfre Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25760,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),938.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),257526,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,33.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",240407,418,,,,,,,Philippe Wahl,"Mail, Package, and Freight Delivery",418,427,CEO,Philippe Wahl,Sector,Transportation,Industry,"Mail, Package, and Freight Delivery",HQ Location,"Paris, France",Website,http://www.laposte.fr,Years on Global 500 List,22,Employees,240407,Company Information,Revenues ($M),25760,Profits ($M),938.9,Assets ($M),257526,Total Stockholder Equity ($M),11513,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,8.2,Profit Ratios,La Poste,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25733,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3485,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21203,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",162450,463,,,,,,,Pablo Isla Alvarez de Tejera,Specialty Retailers,463,428,CEO,Pablo Isla Alvarez de Tejera,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Arteixo, Spain",Website,http://www.inditex.com,Years on Global 500 List,2,Employees,162450,Company Information,Revenues ($M),25733,Profits ($M),3485,Assets ($M),21203,Total Stockholder Equity ($M),13738,Key Financials (Last Fiscal Year),Profit as % of Revenues,13.5,Profits as % of Assets,16.4,Profits as % of Stockholder Equity,25.4,Profit Ratios,Inditex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25638,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5953,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),66099,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",30000,469,Fortune 500,111,World’s Most Admired Companies,100000,,,Richard A. Gonzalez,Pharmaceuticals,469,429,CEO,Richard A. Gonzalez,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"North Chicago, IL",Website,http://www.abbvie.com,Years on Global 500 List,2,Employees,30000,Company Information,Revenues ($M),25638,Profits ($M),5953,Assets ($M),66099,Total Stockholder Equity ($M),4636,Key Financials (Last Fiscal Year),Profit as % of Revenues,23.2,Profits as % of Assets,9,Profits as % of Stockholder Equity,128.4,Profit Ratios,AbbVie,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25630,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-19.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-214.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),40012,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",162542,322,,,,,,,Zhang Youxi,"Mining, Crude-Oil Production",322,430,CEO,Zhang Youxi,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Datong, China",Website,http://www.dtcoalmine.com,Years on Global 500 List,5,Employees,162542,Company Information,Revenues ($M),25630,Profits ($M),-214.8,Assets ($M),40012,Total Stockholder Equity ($M),3169,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.8,Profits as % of Assets,-0.5,Profits as % of Stockholder Equity,-6.8,Profit Ratios,Datong Coal Mine Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25444,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),144.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),34710,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",26357,414,,,,,,,Hee-Tae Kang,General Merchandisers,414,431,CEO,Hee-Tae Kang,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Seoul, South Korea",Website,http://www.lotteshopping.com,Years on Global 500 List,4,Employees,26357,Company Information,Revenues ($M),25444,Profits ($M),144.9,Assets ($M),34710,Total Stockholder Equity ($M),13502,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.6,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1.1,Profit Ratios,Lotte Shopping,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25279,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,46.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),496.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),235324,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-77.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",6302,,,,,,,,Keith Skeoch,Diversified Financials,0,432,CEO,Keith Skeoch,Sector,Financials,Industry,Diversified Financials,HQ Location,"Edinburgh, Britain",Website,http://www.standardlife.com,Years on Global 500 List,19,Employees,6302,Company Information,Revenues ($M),25279,Profits ($M),496.7,Assets ($M),235324,Total Stockholder Equity ($M),5370,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,9.2,Profit Ratios,Standard Life,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25123,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-19.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-10,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-113.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",209817,337,,,,,,,Wu Huatai,"Mining, Crude-Oil Production",337,433,CEO,Wu Huatai,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Taiyuan, China",Website,http://www.sxcc.com.cn,Years on Global 500 List,5,Employees,209817,Company Information,Revenues ($M),25123,Profits ($M),-10,Assets ($M),39206,Total Stockholder Equity ($M),4318,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,-0.2,Profit Ratios,Shanxi Coking Coal Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),25112,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),799.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10651,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8909.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",33000,442,,,,,,,Alain Dehaze,Temporary Help,442,434,CEO,Alain Dehaze,Sector,Business Services,Industry,Temporary Help,HQ Location,"Glattbrugg, Switzerland",Website,http://www.adeccogroup.com,Years on Global 500 List,19,Employees,33000,Company Information,Revenues ($M),25112,Profits ($M),799.5,Assets ($M),10651,Total Stockholder Equity ($M),3918,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.2,Profits as % of Assets,7.5,Profits as % of Stockholder Equity,20.4,Profit Ratios,Adecco Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24956,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2135.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28868,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",63387,421,,,,,,,Willie Walsh,Airlines,421,435,CEO,Willie Walsh,Sector,Transportation,Industry,Airlines,HQ Location,"Harmondsworth, Britain",Website,http://www.iairgroup.com,Years on Global 500 List,20,Employees,63387,Company Information,Revenues ($M),24956,Profits ($M),2135.4,Assets ($M),28868,Total Stockholder Equity ($M),5649,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.6,Profits as % of Assets,7.4,Profits as % of Stockholder Equity,37.8,Profit Ratios,International Airlines Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24622,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4686.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31024,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,3.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",375000,420,Fortune 500,112,World’s Most Admired Companies,48,Change the World,25,Stephen J. Easterbrook,Food Services,420,436,CEO,Stephen J. Easterbrook,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Oak Brook, IL",Website,http://www.aboutmcdonalds.com,Years on Global 500 List,23,Employees,375000,Company Information,Revenues ($M),24622,Profits ($M),4686.5,Assets ($M),31024,Total Stockholder Equity ($M),-2204,Key Financials (Last Fiscal Year),Profit as % of Revenues,19,Profits as % of Assets,15.1,Profits as % of Stockholder Equity,,Profit Ratios,McDonald’s,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24596,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),252,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24091,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-60.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",107729,452,,,,,,,Takashi Niino,Information Technology Services,452,437,CEO,Takashi Niino,Sector,Technology,Industry,Information Technology Services,HQ Location,"Tokyo, Japan",Website,http://www.nec.com,Years on Global 500 List,23,Employees,107729,Company Information,Revenues ($M),24596,Profits ($M),252,Assets ($M),24091,Total Stockholder Equity ($M),7668,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,1,Profits as % of Stockholder Equity,3.3,Profit Ratios,NEC,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24594,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2513,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),39964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,28.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",46000,379,Fortune 500,113,World’s Most Admired Companies,100000,,,Edward D. Breen,Chemicals,379,438,CEO,Edward D. Breen,Sector,Chemicals,Industry,Chemicals,HQ Location,"Wilmington, DE",Website,http://www.dupont.com,Years on Global 500 List,23,Employees,46000,Company Information,Revenues ($M),24594,Profits ($M),2513,Assets ($M),39964,Total Stockholder Equity ($M),9998,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.2,Profits as % of Assets,6.3,Profits as % of Stockholder Equity,25.1,Profit Ratios,DuPont,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24588,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),320,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),6093,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-4.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",11739,484,,,,,,,Zhou Qiang,Wholesalers: Diversified,484,439,CEO,Zhou Qiang,Sector,Wholesalers,Industry,Wholesalers: Diversified,HQ Location,"Beijing, China",Website,http://www.cnaf.com,Years on Global 500 List,7,Employees,11739,Company Information,Revenues ($M),24588,Profits ($M),320,Assets ($M),6093,Total Stockholder Equity ($M),2263,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,5.3,Profits as % of Stockholder Equity,14.1,Profit Ratios,China National Aviation Fuel Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24508,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2200,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25614,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,10.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",67000,450,Fortune 500,114,World’s Most Admired Companies,100000,,,Wesley G. Bush,Aerospace and Defense,450,440,CEO,Wesley G. Bush,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Falls Church, VA",Website,http://www.northropgrumman.com,Years on Global 500 List,18,Employees,67000,Company Information,Revenues ($M),24508,Profits ($M),2200,Assets ($M),25614,Total Stockholder Equity ($M),5259,Key Financials (Last Fiscal Year),Profit as % of Revenues,9,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,41.8,Profit Ratios,Northrop Grumman,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24411,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,22.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1651,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),159826,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-29.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",55700,,,,,,,,J. Bruce Flatt,Diversified Financials,0,441,CEO,J. Bruce Flatt,Sector,Financials,Industry,Diversified Financials,HQ Location,"Toronto, Ontario, Canada",Website,http://www.brookfield.com,Years on Global 500 List,1,Employees,55700,Company Information,Revenues ($M),24411,Profits ($M),1651,Assets ($M),159826,Total Stockholder Equity ($M),26453,Key Financials (Last Fiscal Year),Profit as % of Revenues,6.8,Profits as % of Assets,1,Profits as % of Stockholder Equity,6.2,Profit Ratios,Brookfield Asset Management,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24403,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,50.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2004.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),148659,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-10.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",8370,,,,,,,,Gustavo J. Vollmer A.,Banks: Commercial and Savings,0,442,CEO,Gustavo J. Vollmer A.,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Caracas, Venezuela",Website,http://www.msf.com,Years on Global 500 List,1,Employees,8370,Company Information,Revenues ($M),24403,Profits ($M),2004.2,Assets ($M),148659,Total Stockholder Equity ($M),7550,Key Financials (Last Fiscal Year),Profit as % of Revenues,8.2,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,26.5,Profit Ratios,Mercantil Servicios Financieros,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24397,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),4031.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46696,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,18.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",84183,462,World’s Most Admired Companies,100000,,,,,William R. McDermott,Computer Software,462,443,CEO,William R. McDermott,Sector,Technology,Industry,Computer Software,HQ Location,"Walldorf, Germany",Website,http://www.sap.com,Years on Global 500 List,2,Employees,84183,Company Information,Revenues ($M),24397,Profits ($M),4031.9,Assets ($M),46696,Total Stockholder Equity ($M),27817,Key Financials (Last Fiscal Year),Profit as % of Revenues,16.5,Profits as % of Assets,8.6,Profits as % of Stockholder Equity,14.5,Profit Ratios,SAP,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24360,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-21.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-3615,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),89772,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",13300,339,Fortune 500,115,,,,,Ryan M. Lance,"Mining, Crude-Oil Production",339,444,CEO,Ryan M. Lance,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Houston, TX",Website,http://www.conocophillips.com,Years on Global 500 List,23,Employees,13300,Company Information,Revenues ($M),24360,Profits ($M),-3615,Assets ($M),89772,Total Stockholder Equity ($M),34974,Key Financials (Last Fiscal Year),Profit as % of Revenues,-14.8,Profits as % of Assets,-4,Profits as % of Stockholder Equity,-10.3,Profit Ratios,ConocoPhillips,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24284,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),11.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30793,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",146236,374,,,,,,,Zhai Hong,"Mining, Crude-Oil Production",374,445,CEO,Zhai Hong,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Yangquan, China",Website,http://www.ymjt.com.cn%20,Years on Global 500 List,5,Employees,146236,Company Information,Revenues ($M),24284,Profits ($M),11.1,Assets ($M),30793,Total Stockholder Equity ($M),1783,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.6,Profit Ratios,Yangquan Coal Industry Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24267,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1902.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),46350,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,33.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",99187,433,World’s Most Admired Companies,100000,,,,,Emmanuel Faber,Food Consumer Products,433,446,CEO,Emmanuel Faber,Sector,"Food, Beverages & Tobacco",Industry,Food Consumer Products,HQ Location,"Paris, France",Website,http://www.danone.com,Years on Global 500 List,23,Employees,99187,Company Information,Revenues ($M),24267,Profits ($M),1902.1,Assets ($M),46350,Total Stockholder Equity ($M),13825,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.8,Profits as % of Assets,4.1,Profits as % of Stockholder Equity,13.8,Profit Ratios,Danone,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24217,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,105.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),92.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),36816,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-96.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",13898,,,,,,,,Chi-Hun Choi,"Engineering, Construction",0,447,CEO,Chi-Hun Choi,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Seoul, South Korea",Website,http://www.samsungcnt.com,Years on Global 500 List,1,Employees,13898,Company Information,Revenues ($M),24217,Profits ($M),92.5,Assets ($M),36816,Total Stockholder Equity ($M),15155,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.4,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,0.6,Profit Ratios,Samsung C&T,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24087,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-15.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-106.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),29026,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",95666,370,,,,,,,Li Jinping,"Mining, Crude-Oil Production",370,448,CEO,Li Jinping,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Changzhi, China",Website,http://www.chinaluan.com,Years on Global 500 List,5,Employees,95666,Company Information,Revenues ($M),24087,Profits ($M),-106.9,Assets ($M),29026,Total Stockholder Equity ($M),2542,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.4,Profits as % of Assets,-0.4,Profits as % of Stockholder Equity,-4.2,Profit Ratios,Shanxi LuAn Mining Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24069,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2211,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),30052,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,6.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",63000,457,Fortune 500,116,World’s Most Admired Companies,100000,,,Thomas A. Kennedy,Aerospace and Defense,457,449,CEO,Thomas A. Kennedy,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"Waltham, MA",Website,http://www.raytheon.com,Years on Global 500 List,22,Employees,63000,Company Information,Revenues ($M),24069,Profits ($M),2211,Assets ($M),30052,Total Stockholder Equity ($M),10066,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,7.4,Profits as % of Stockholder Equity,22,Profit Ratios,Raytheon,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24060,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2210.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24549,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,9.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",126418,481,,,,,,,Fang Hongbo,"Electronics, Electrical Equip.",481,450,CEO,Fang Hongbo,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Foshan, China",Website,http://www.midea.com,Years on Global 500 List,2,Employees,126418,Company Information,Revenues ($M),24060,Profits ($M),2210.4,Assets ($M),24549,Total Stockholder Equity ($M),8796,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,9,Profits as % of Stockholder Equity,25.1,Profit Ratios,Midea Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24028,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,1.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1058.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),48580,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",30635,448,,,,,,,Satoru Katsuno,Utilities,448,451,CEO,Satoru Katsuno,Sector,Energy,Industry,Utilities,HQ Location,"Nagoya, Japan",Website,http://www.chuden.co.jp,Years on Global 500 List,23,Employees,30635,Company Information,Revenues ($M),24028,Profits ($M),1058.2,Assets ($M),48580,Total Stockholder Equity ($M),14695,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,2.2,Profits as % of Stockholder Equity,7.2,Profit Ratios,Chubu Electric Power,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24011,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1232.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),28383,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",76000,415,World’s Most Admired Companies,100000,,,,,Charles Woodburn,Aerospace and Defense,415,452,CEO,Charles Woodburn,Sector,Aerospace & Defense,Industry,Aerospace and Defense,HQ Location,"London, Britain",Website,http://www.baesystems.com,Years on Global 500 List,23,Employees,76000,Company Information,Revenues ($M),24011,Profits ($M),1232.3,Assets ($M),28383,Total Stockholder Equity ($M),4247,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.1,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,29,Profit Ratios,BAE Systems,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),24005,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),734,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20398,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-52.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",6308,375,Fortune 500,117,,,,,Gregory J. Goff,Petroleum Refining,375,453,CEO,Gregory J. Goff,Sector,Energy,Industry,Petroleum Refining,HQ Location,"San Antonio, TX",Website,http://www.tsocorp.com,Years on Global 500 List,11,Employees,6308,Company Information,Revenues ($M),24005,Profits ($M),734,Assets ($M),20398,Total Stockholder Equity ($M),5465,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,3.6,Profits as % of Stockholder Equity,13.4,Profit Ratios,Andeavor,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23871,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),243.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),101631,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,32.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",97091,406,,,,,,,Chen Jinhang,Energy,406,454,CEO,Chen Jinhang,Sector,Energy,Industry,Energy,HQ Location,"Beijing, China",Website,http://www.china-cdt.com,Years on Global 500 List,8,Employees,97091,Company Information,Revenues ($M),23871,Profits ($M),243.9,Assets ($M),101631,Total Stockholder Equity ($M),7371,Key Financials (Last Fiscal Year),Profit as % of Revenues,1,Profits as % of Assets,0.2,Profits as % of Stockholder Equity,3.3,Profit Ratios,China Datang,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23863,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),319.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12593,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-28,"Total employees (full-time equivalent, if available) at fiscal year-end.",200000,441,World’s Most Admired Companies,100000,,,,,Michael M. McNamara,Semiconductors and Other Electronic Components,441,455,CEO,Michael M. McNamara,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,Singapore,Website,http://www.flex.com,Years on Global 500 List,17,Employees,200000,Company Information,Revenues ($M),23863,Profits ($M),319.6,Assets ($M),12593,Total Stockholder Equity ($M),2645,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,12.1,Profit Ratios,Flex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23825,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),522.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),14206,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",18700,455,Fortune 500,118,World’s Most Admired Companies,100000,,,Michael J. Long,Wholesalers: Electronics and Office Equipment,455,456,CEO,Michael J. Long,Sector,Wholesalers,Industry,Wholesalers: Electronics and Office Equipment,HQ Location,"Centennial, CO",Website,http://www.arrow.com,Years on Global 500 List,4,Employees,18700,Company Information,Revenues ($M),23825,Profits ($M),522.8,Assets ($M),14206,Total Stockholder Equity ($M),4413,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.2,Profits as % of Assets,3.7,Profits as % of Stockholder Equity,11.8,Profit Ratios,Arrow Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23793,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,65.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),4982,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",12369,,,,,,,,Jan Rinnert,Metals,0,457,CEO,Jan Rinnert,Sector,Materials,Industry,Metals,HQ Location,"Hanau, Germany",Website,http://www.heraeus.com,Years on Global 500 List,7,Employees,12369,Company Information,Revenues ($M),23793,Profits ($M),,Assets ($M),4982,Total Stockholder Equity ($M),3160,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,,Profit Ratios,Heraeus Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23773,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-10.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),252.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10769,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-7.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",64728,400,,,,,,,Jui-Tsung Chen,"Computers, Office Equipment",400,458,CEO,Jui-Tsung Chen,Sector,Technology,Industry,"Computers, Office Equipment",HQ Location,"Taipei, Taiwan",Website,http://www.compal.com,Years on Global 500 List,6,Employees,64728,Company Information,Revenues ($M),23773,Profits ($M),252.1,Assets ($M),10769,Total Stockholder Equity ($M),3283,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,7.7,Profit Ratios,Compal Electronics,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23657,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),159.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),24231,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-59,"Total employees (full-time equivalent, if available) at fiscal year-end.",10234,,,,,,,,Lin Tengjiao,Diversified Financials,0,459,CEO,Lin Tengjiao,Sector,Financials,Industry,Diversified Financials,HQ Location,"Fuzhou, China",Website,http://www.yangofinance.com,Years on Global 500 List,1,Employees,10234,Company Information,Revenues ($M),23657,Profits ($M),159.2,Assets ($M),24231,Total Stockholder Equity ($M),1925,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.7,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.3,Profit Ratios,Yango Financial Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23554,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5705,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52359,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,8.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",30500,422,Fortune 500,119,World’s Most Admired Companies,100000,,,Steven M. Mollenkopf,Semiconductors and Other Electronic Components,422,460,CEO,Steven M. Mollenkopf,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"San Diego, CA",Website,http://www.qualcomm.com,Years on Global 500 List,4,Employees,30500,Company Information,Revenues ($M),23554,Profits ($M),5705,Assets ($M),52359,Total Stockholder Equity ($M),31778,Key Financials (Last Fiscal Year),Profit as % of Revenues,24.2,Profits as % of Assets,10.9,Profits as % of Stockholder Equity,18,Profit Ratios,Qualcomm,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23551,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,9.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),285.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11273,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",13217,492,,,,,,,Taizo Kubo,Wholesalers: Health Care,492,461,CEO,Taizo Kubo,Sector,Wholesalers,Industry,Wholesalers: Health Care,HQ Location,"Tokyo, Japan",Website,http://www.alfresa.com,Years on Global 500 List,8,Employees,13217,Company Information,Revenues ($M),23551,Profits ($M),285.1,Assets ($M),11273,Total Stockholder Equity ($M),2993,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.2,Profits as % of Assets,2.5,Profits as % of Stockholder Equity,9.5,Profit Ratios,Alfresa Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23517,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,47.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6489.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),73538,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-42.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",50097,,,,,,,,Daniel Zhang,Internet Services and Retailing,0,462,CEO,Daniel Zhang,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Hangzhou, China",Website,http://www.alibabagroup.com,Years on Global 500 List,1,Employees,50097,Company Information,Revenues ($M),23517,Profits ($M),6489.5,Assets ($M),73538,Total Stockholder Equity ($M),40454,Key Financials (Last Fiscal Year),Profit as % of Revenues,27.6,Profits as % of Assets,8.8,Profits as % of Stockholder Equity,16,Profit Ratios,Alibaba Group Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23456,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1144.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),25047,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",95456,419,,,,,,,Levent Cakiroglu,Energy,419,463,CEO,Levent Cakiroglu,Sector,Energy,Industry,Energy,HQ Location,"Istanbul, Turkey",Website,http://www.koc.com.tr,Years on Global 500 List,16,Employees,95456,Company Information,Revenues ($M),23456,Profits ($M),1144.2,Assets ($M),25047,Total Stockholder Equity ($M),7345,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.9,Profits as % of Assets,4.6,Profits as % of Stockholder Equity,15.6,Profit Ratios,Koc Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23441,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,12.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1031,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33428,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",31721,,Fortune 500,120,,,,,Susan Patricia Griffith,Insurance: Property and Casualty (Stock),0,464,CEO,Susan Patricia Griffith,Sector,Financials,Industry,Insurance: Property and Casualty (Stock),HQ Location,"Mayfield Village, OH",Website,http://www.progressive.com,Years on Global 500 List,4,Employees,31721,Company Information,Revenues ($M),23441,Profits ($M),1031,Assets ($M),33428,Total Stockholder Equity ($M),7957,Key Financials (Last Fiscal Year),Profit as % of Revenues,4.4,Profits as % of Assets,3.1,Profits as % of Stockholder Equity,13,Profit Ratios,Progressive,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23369,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2152,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),132761,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",28798,446,Fortune 500,121,,,,,Lynn J. Good,Utilities,446,465,CEO,Lynn J. Good,Sector,Energy,Industry,Utilities,HQ Location,"Charlotte, NC",Website,http://www.duke-energy.com,Years on Global 500 List,14,Employees,28798,Company Information,Revenues ($M),23369,Profits ($M),2152,Assets ($M),132761,Total Stockholder Equity ($M),41033,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.2,Profits as % of Assets,1.6,Profits as % of Stockholder Equity,5.2,Profit Ratios,Duke Energy,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23120,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-1.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1853.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),26705,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,43,"Total employees (full-time equivalent, if available) at fiscal year-end.",105654,451,World’s Most Admired Companies,100000,,,,,Jean-Dominique Senard,Motor Vehicles and Parts,451,466,CEO,Jean-Dominique Senard,Sector,Motor Vehicles & Parts,Industry,Motor Vehicles and Parts,HQ Location,"Clermont-Ferrand, France",Website,http://www.michelin.com,Years on Global 500 List,23,Employees,105654,Company Information,Revenues ($M),23120,Profits ($M),1853.4,Assets ($M),26705,Total Stockholder Equity ($M),11178,Key Financials (Last Fiscal Year),Profit as % of Revenues,8,Profits as % of Assets,6.9,Profits as % of Stockholder Equity,16.6,Profit Ratios,Michelin,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23044,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,27.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1733.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),85124,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,17.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",94450,,,,,,,,Mo Bin,Real estate,0,467,CEO,Mo Bin,Sector,Financials,Industry,Real estate,HQ Location,"Foshan, China",Website,http://www.countrygarden.com.cn,Years on Global 500 List,1,Employees,94450,Company Information,Revenues ($M),23044,Profits ($M),1733.6,Assets ($M),85124,Total Stockholder Equity ($M),10091,Key Financials (Last Fiscal Year),Profit as % of Revenues,7.5,Profits as % of Assets,2,Profits as % of Stockholder Equity,17.2,Profit Ratios,Country Garden Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23044,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),861.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),41469,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-18.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",73525,459,World’s Most Admired Companies,100000,Change the World,43,,,Jean-Francois van Boxmeer,Beverages,459,468,CEO,Jean-Francois van Boxmeer,Sector,"Food, Beverages & Tobacco",Industry,Beverages,HQ Location,"Amsterdam, Netherlands",Website,http://www.theheinekencompany.com,Years on Global 500 List,11,Employees,73525,Company Information,Revenues ($M),23044,Profits ($M),861.5,Assets ($M),41469,Total Stockholder Equity ($M),6958,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.7,Profits as % of Assets,2.1,Profits as % of Stockholder Equity,12.4,Profit Ratios,Heineken Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23022,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-14.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2513.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),52194,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",6800,392,Fortune 500,122,,,,,A. James Teague,Pipelines,392,469,CEO,A. James Teague,Sector,Energy,Industry,Pipelines,HQ Location,"Houston, TX",Website,http://www.enterpriseproducts.com,Years on Global 500 List,7,Employees,6800,Company Information,Revenues ($M),23022,Profits ($M),2513.1,Assets ($M),52194,Total Stockholder Equity ($M),22047,Key Financials (Last Fiscal Year),Profit as % of Revenues,10.9,Profits as % of Assets,4.8,Profits as % of Stockholder Equity,11.4,Profit Ratios,Enterprise Products Partners,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),23002,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-6.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3499,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),62526,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,23.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",59700,435,,,,,,,Pascal Soriot,Pharmaceuticals,435,470,CEO,Pascal Soriot,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Cambridge, Britain",Website,http://www.astrazeneca.com,Years on Global 500 List,19,Employees,59700,Company Information,Revenues ($M),23002,Profits ($M),3499,Assets ($M),62526,Total Stockholder Equity ($M),14854,Key Financials (Last Fiscal Year),Profit as % of Revenues,15.2,Profits as % of Assets,5.6,Profits as % of Stockholder Equity,23.6,Profit Ratios,AstraZeneca,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22991,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),7722,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),77626,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,11.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",19200,487,Fortune 500,123,World’s Most Admired Companies,100000,,,Robert A. Bradway,Pharmaceuticals,487,471,CEO,Robert A. Bradway,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Thousand Oaks, CA",Website,http://www.amgen.com,Years on Global 500 List,2,Employees,19200,Company Information,Revenues ($M),22991,Profits ($M),7722,Assets ($M),77626,Total Stockholder Equity ($M),29875,Key Financials (Last Fiscal Year),Profit as % of Revenues,33.6,Profits as % of Assets,9.9,Profits as % of Stockholder Equity,25.8,Profit Ratios,Amgen,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22956,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-4.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),828.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),698790,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-15.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",40029,445,,,,,,,Wiebe Draijer,Banks: Commercial and Savings,445,472,CEO,Wiebe Draijer,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Utrecht, Netherlands",Website,http://www.rabobank.com,Years on Global 500 List,23,Employees,40029,Company Information,Revenues ($M),22956,Profits ($M),828.3,Assets ($M),698790,Total Stockholder Equity ($M),27232,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.6,Profits as % of Assets,0.1,Profits as % of Stockholder Equity,3,Profit Ratios,Rabobank Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22953,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,42.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-1722.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),84805,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",49732,,,,,,,,Michel Combes,Telecommunications,0,473,CEO,Michel Combes,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Amsterdam, Netherlands",Website,http://www.altice.net,Years on Global 500 List,1,Employees,49732,Company Information,Revenues ($M),22953,Profits ($M),-1722.5,Assets ($M),84805,Total Stockholder Equity ($M),-2668,Key Financials (Last Fiscal Year),Profit as % of Revenues,-7.5,Profits as % of Assets,-2,Profits as % of Stockholder Equity,,Profit Ratios,Altice,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22943,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-130,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),42913,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",161000,483,,,,,,,Gerald W. Schwartz,Semiconductors and Other Electronic Components,483,474,CEO,Gerald W. Schwartz,Sector,Technology,Industry,Semiconductors and Other Electronic Components,HQ Location,"Toronto, Ontario, Canada",Website,http://www.onex.com,Years on Global 500 List,18,Employees,161000,Company Information,Revenues ($M),22943,Profits ($M),-130,Assets ($M),42913,Total Stockholder Equity ($M),-490,Key Financials (Last Fiscal Year),Profit as % of Revenues,-0.6,Profits as % of Assets,-0.3,Profits as % of Stockholder Equity,,Profit Ratios,Onex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-0.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),209.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),8945,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,25.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",25000,461,Fortune 500,124,,,,,Pietro Satriano,Wholesalers: Food and Grocery,461,475,CEO,Pietro Satriano,Sector,Wholesalers,Industry,Wholesalers: Food and Grocery,HQ Location,"Rosemont, IL",Website,http://www.usfoods.com,Years on Global 500 List,2,Employees,25000,Company Information,Revenues ($M),22919,Profits ($M),209.8,Assets ($M),8945,Total Stockholder Equity ($M),2538,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.9,Profits as % of Assets,2.3,Profits as % of Stockholder Equity,8.3,Profit Ratios,US Foods Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22875,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),32954,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",135691,384,,,,,,,He Tiancai,"Mining, Crude-Oil Production",384,476,CEO,He Tiancai,Sector,Energy,Industry,"Mining, Crude-Oil Production",HQ Location,"Jincheng, China",Website,http://www.jamg.cn,Years on Global 500 List,5,Employees,135691,Company Information,Revenues ($M),22875,Profits ($M),3,Assets ($M),32954,Total Stockholder Equity ($M),2988,Key Financials (Last Fiscal Year),Profit as % of Revenues,,Profits as % of Assets,,Profits as % of Stockholder Equity,0.1,Profit Ratios,Shanxi Jincheng Anthracite Coal Mining Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22873,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),650.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9624,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,13,"Total employees (full-time equivalent, if available) at fiscal year-end.",32280,494,World’s Most Admired Companies,100000,,,,,Jacques van den Broek,Temporary Help,494,477,CEO,Jacques van den Broek,Sector,Business Services,Industry,Temporary Help,HQ Location,"Diemen, Netherlands",Website,http://www.randstad.com,Years on Global 500 List,5,Employees,32280,Company Information,Revenues ($M),22873,Profits ($M),650.2,Assets ($M),9624,Total Stockholder Equity ($M),4366,Key Financials (Last Fiscal Year),Profit as % of Revenues,2.8,Profits as % of Assets,6.8,Profits as % of Stockholder Equity,14.9,Profit Ratios,Randstad Holding,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22871,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,39.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),6185.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),56968,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,35,"Total employees (full-time equivalent, if available) at fiscal year-end.",38775,,,,,,,,Pony Ma,Internet Services and Retailing,0,478,CEO,Pony Ma,Sector,Technology,Industry,Internet Services and Retailing,HQ Location,"Shenzhen, China",Website,http://www.tencent.com,Years on Global 500 List,1,Employees,38775,Company Information,Revenues ($M),22871,Profits ($M),6185.9,Assets ($M),56968,Total Stockholder Equity ($M),25128,Key Financials (Last Fiscal Year),Profit as % of Revenues,27,Profits as % of Assets,10.9,Profits as % of Stockholder Equity,24.6,Profit Ratios,Tencent Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22840,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),781.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20606,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-8.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",49094,429,,,,,,,Sang-Beom Han,"Electronics, Electrical Equip.",429,479,CEO,Sang-Beom Han,Sector,Technology,Industry,"Electronics, Electrical Equip.",HQ Location,"Seoul, South Korea",Website,http://www.lgdisplay.com,Years on Global 500 List,6,Employees,49094,Company Information,Revenues ($M),22840,Profits ($M),781.4,Assets ($M),20606,Total Stockholder Equity ($M),10729,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,3.8,Profits as % of Stockholder Equity,7.3,Profit Ratios,LG Display,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22799,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,0.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),340.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),33096,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-82.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",64768,472,,,,,,,Sheikh Ahmed bin Saeed Al Maktoum,Airlines,472,480,CEO,Sheikh Ahmed bin Saeed Al Maktoum,Sector,Transportation,Industry,Airlines,HQ Location,"Dubai, U.A.E",Website,http://www.theemiratesgroup.com,Years on Global 500 List,2,Employees,64768,Company Information,Revenues ($M),22799,Profits ($M),340.3,Assets ($M),33096,Total Stockholder Equity ($M),9395,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,1,Profits as % of Stockholder Equity,3.6,Profit Ratios,Emirates Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22744,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,5.8,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),5888,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),445964,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,0.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",71191,490,Fortune 500,125,World’s Most Admired Companies,100000,,,Andrew J. Cecere,Banks: Commercial and Savings,490,481,CEO,Andrew J. Cecere,Sector,Financials,Industry,Banks: Commercial and Savings,HQ Location,"Minneapolis, MN",Website,http://www.usbank.com,Years on Global 500 List,12,Employees,71191,Company Information,Revenues ($M),22744,Profits ($M),5888,Assets ($M),445964,Total Stockholder Equity ($M),47298,Key Financials (Last Fiscal Year),Profit as % of Revenues,25.9,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,12.4,Profit Ratios,U.S. Bancorp,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22618,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,4.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2192.3,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10681,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",114586,488,,,,,,,Karl-Johan Persson,Specialty Retailers,488,482,CEO,Karl-Johan Persson,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Stockholm, Sweden",Website,http://www.hm.com,Years on Global 500 List,2,Employees,114586,Company Information,Revenues ($M),22618,Profits ($M),2192.3,Assets ($M),10681,Total Stockholder Equity ($M),6635,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.7,Profits as % of Assets,20.5,Profits as % of Stockholder Equity,33,Profit Ratios,H & M Hennes & Mauritz,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22559,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,8.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),2659,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),129819,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,5,"Total employees (full-time equivalent, if available) at fiscal year-end.",10212,,Fortune 500,126,World’s Most Admired Companies,100000,The 100 Best Companies to Work For,91,Daniel P. Amos,"Insurance: Life, Health (stock)",0,483,CEO,Daniel P. Amos,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Columbus, GA",Website,http://www.aflac.com,Years on Global 500 List,10,Employees,10212,Company Information,Revenues ($M),22559,Profits ($M),2659,Assets ($M),129819,Total Stockholder Equity ($M),20482,Key Financials (Last Fiscal Year),Profit as % of Revenues,11.8,Profits as % of Assets,2,Profits as % of Stockholder Equity,13,Profit Ratios,Aflac,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22477,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),707.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),15766,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-12.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",425594,466,World’s Most Admired Companies,100000,,,,,Michel Landel,Food Services,466,484,CEO,Michel Landel,Sector,"Hotels, Restaurants & Leisure",Industry,Food Services,HQ Location,"Issy-les-Moulineaux, France",Website,http://www.sodexo.com,Years on Global 500 List,18,Employees,425594,Company Information,Revenues ($M),22477,Profits ($M),707.2,Assets ($M),15766,Total Stockholder Equity ($M),4085,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.1,Profits as % of Assets,4.5,Profits as % of Stockholder Equity,17.3,Profit Ratios,Sodexo,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22366,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.7,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),106,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),19738,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-23.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",60354,,,,,,,,Ren Jun,Specialty Retailers,0,485,CEO,Ren Jun,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Nanjing, China",Website,http://www.suning.com,Years on Global 500 List,1,Employees,60354,Company Information,Revenues ($M),22366,Profits ($M),106,Assets ($M),19738,Total Stockholder Equity ($M),9455,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.5,Profits as % of Assets,0.5,Profits as % of Stockholder Equity,1.1,Profit Ratios,Suning Commerce Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22207,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1221.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),15969,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,42.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",2949,431,,,,,,,Jin-Soo Huh,Petroleum Refining,431,486,CEO,Jin-Soo Huh,Sector,Energy,Industry,Petroleum Refining,HQ Location,"Seoul, South Korea",Website,http://www.gscaltex.com,Years on Global 500 List,6,Employees,2949,Company Information,Revenues ($M),22207,Profits ($M),1221.1,Assets ($M),15969,Total Stockholder Equity ($M),8150,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.5,Profits as % of Assets,7.6,Profits as % of Stockholder Equity,15,Profit Ratios,GS Caltex,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22167,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-2.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),447.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),7426,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-0.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",15173,474,,,,,,,Thilo Mannhardt,Energy,474,487,CEO,Thilo Mannhardt,Sector,Energy,Industry,Energy,HQ Location,"Sao Paulo, Brazil",Website,http://www.ultra.com.br,Years on Global 500 List,8,Employees,15173,Company Information,Revenues ($M),22167,Profits ($M),447.5,Assets ($M),7426,Total Stockholder Equity ($M),2621,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,6,Profits as % of Stockholder Equity,17.1,Profit Ratios,Ultrapar Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22145,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,6.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),280.2,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),21729,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,15.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",18381,,,,,,,,Huang Wenzhou,Trading,0,488,CEO,Huang Wenzhou,Sector,Wholesalers,Industry,Trading,HQ Location,"Xiamen, China",Website,http://www.chinacdc.com,Years on Global 500 List,1,Employees,18381,Company Information,Revenues ($M),22145,Profits ($M),280.2,Assets ($M),21729,Total Stockholder Equity ($M),3985,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.3,Profits as % of Assets,1.3,Profits as % of Stockholder Equity,7,Profit Ratios,Xiamen C&D,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22138,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-12,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),-2221,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),9362,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",140000,425,Fortune 500,127,,,,,Edward S. Lampert,General Merchandisers,425,489,CEO,Edward S. Lampert,Sector,Retailing,Industry,General Merchandisers,HQ Location,"Hoffman Estates, IL",Website,http://www.searsholdings.com,Years on Global 500 List,23,Employees,140000,Company Information,Revenues ($M),22138,Profits ($M),-2221,Assets ($M),9362,Total Stockholder Equity ($M),-3824,Key Financials (Last Fiscal Year),Profit as % of Revenues,-10,Profits as % of Assets,-23.7,Profits as % of Stockholder Equity,,Profit Ratios,Sears Holdings,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22113,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-20.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),413.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),20860,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-20.8,"Total employees (full-time equivalent, if available) at fiscal year-end.",38589,383,,,,,,,Xu Xianping,"Engineering, Construction",383,490,CEO,Xu Xianping,Sector,Engineering & Construction,Industry,"Engineering, Construction",HQ Location,"Beijing, China",Website,http://www.genertec.com.cn,Years on Global 500 List,4,Employees,38589,Company Information,Revenues ($M),22113,Profits ($M),413.6,Assets ($M),20860,Total Stockholder Equity ($M),5114,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,2,Profits as % of Stockholder Equity,8.1,Profit Ratios,China General Technology,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),22036,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-3.2,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),10150.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),82310,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,160.2,"Total employees (full-time equivalent, if available) at fiscal year-end.",22132,471,,,,,,,John Pettigrew,Utilities,471,491,CEO,John Pettigrew,Sector,Energy,Industry,Utilities,HQ Location,"London, Britain",Website,http://www.nationalgrid.com,Years on Global 500 List,12,Employees,22132,Company Information,Revenues ($M),22036,Profits ($M),10150.6,Assets ($M),82310,Total Stockholder Equity ($M),25463,Key Financials (Last Fiscal Year),Profit as % of Revenues,46.1,Profits as % of Assets,12.3,Profits as % of Stockholder Equity,39.9,Profit Ratios,National Grid,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21987,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,7.9,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1251.1,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11672,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,7.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",121000,,Fortune 500,128,,,,,Todd J. Vasos,Specialty Retailers,0,492,CEO,Todd J. Vasos,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Goodlettsville, TN",Website,http://www.dollargeneral.com,Years on Global 500 List,1,Employees,121000,Company Information,Revenues ($M),21987,Profits ($M),1251.1,Assets ($M),11672,Total Stockholder Equity ($M),5406,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.7,Profits as % of Assets,10.7,Profits as % of Stockholder Equity,23.1,Profit Ratios,Dollar General,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21941,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-17.4,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1999.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),74295,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,,"Total employees (full-time equivalent, if available) at fiscal year-end.",61227,404,,,,,,,Flavio Cattaneo,Telecommunications,404,493,CEO,Flavio Cattaneo,Sector,Telecommunications,Industry,Telecommunications,HQ Location,"Milan, Italy",Website,http://www.telecomitalia.com,Years on Global 500 List,18,Employees,61227,Company Information,Revenues ($M),21941,Profits ($M),1999.4,Assets ($M),74295,Total Stockholder Equity ($M),22366,Key Financials (Last Fiscal Year),Profit as % of Revenues,9.1,Profits as % of Assets,2.7,Profits as % of Stockholder Equity,8.9,Profit Ratios,Telecom Italia,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21930,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,34.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),35.6,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),12161,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-25.1,"Total employees (full-time equivalent, if available) at fiscal year-end.",18454,,,,,,,,Xu Xiaoxi,Trading,0,494,CEO,Xu Xiaoxi,Sector,Wholesalers,Industry,Trading,HQ Location,"Xiamen, China",Website,http://www.itgholding.com.cn,Years on Global 500 List,1,Employees,18454,Company Information,Revenues ($M),21930,Profits ($M),35.6,Assets ($M),12161,Total Stockholder Equity ($M),1066,Key Financials (Last Fiscal Year),Profit as % of Revenues,0.2,Profits as % of Assets,0.3,Profits as % of Stockholder Equity,3.3,Profit Ratios,Xiamen ITG Holding Group,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21919,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,31.1,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),251.8,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),31957,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,49.9,"Total employees (full-time equivalent, if available) at fiscal year-end.",65616,,,,,,,,Shang Jiqiang,Trading,0,495,CEO,Shang Jiqiang,Sector,Wholesalers,Industry,Trading,HQ Location,"Urumqi, China",Website,http://www.guanghui.com,Years on Global 500 List,1,Employees,65616,Company Information,Revenues ($M),21919,Profits ($M),251.8,Assets ($M),31957,Total Stockholder Equity ($M),4563,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.1,Profits as % of Assets,0.8,Profits as % of Stockholder Equity,5.5,Profit Ratios,Xinjiang Guanghui Industry Investment,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21903,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,11.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),329,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),92890,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-79.3,"Total employees (full-time equivalent, if available) at fiscal year-end.",56960,,,,,,,,Yitzhak Peterburg,Pharmaceuticals,0,496,CEO,Yitzhak Peterburg,Sector,Health Care,Industry,Pharmaceuticals,HQ Location,"Petach Tikva, Israel",Website,http://www.tevapharm.com,Years on Global 500 List,1,Employees,56960,Company Information,Revenues ($M),21903,Profits ($M),329,Assets ($M),92890,Total Stockholder Equity ($M),33337,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.5,Profits as % of Assets,0.4,Profits as % of Stockholder Equity,1,Profit Ratios,Teva Pharmaceutical Industries,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21796,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-13.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),743.9,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),100609,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-45.6,"Total employees (full-time equivalent, if available) at fiscal year-end.",54378,427,,,,,,,Wan Feng,"Insurance: Life, Health (stock)",427,497,CEO,Wan Feng,Sector,Financials,Industry,"Insurance: Life, Health (stock)",HQ Location,"Beijing, China",Website,http://www.newchinalife.com,Years on Global 500 List,2,Employees,54378,Company Information,Revenues ($M),21796,Profits ($M),743.9,Assets ($M),100609,Total Stockholder Equity ($M),8507,Key Financials (Last Fiscal Year),Profit as % of Revenues,3.4,Profits as % of Assets,0.7,Profits as % of Stockholder Equity,8.7,Profit Ratios,New China Life Insurance,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21741,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-11.3,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),406.4,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),11630,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,20.4,"Total employees (full-time equivalent, if available) at fiscal year-end.",77210,437,,,,,,,David T. Potts,Food and Drug Stores,437,498,CEO,David T. Potts,Sector,Food & Drug Stores,Industry,Food and Drug Stores,HQ Location,"Bradford, Britain",Website,http://www.morrisons.com,Years on Global 500 List,13,Employees,77210,Company Information,Revenues ($M),21741,Profits ($M),406.4,Assets ($M),11630,Total Stockholder Equity ($M),5111,Key Financials (Last Fiscal Year),Profit as % of Revenues,1.9,Profits as % of Assets,3.5,Profits as % of Stockholder Equity,8,Profit Ratios,Wm. Morrison Supermarkets,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21655,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,-5.5,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),1151.7,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),16247,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,195.5,"Total employees (full-time equivalent, if available) at fiscal year-end.",66779,467,,,,,,,Friedrich Joussen,Travel Services,467,499,CEO,Friedrich Joussen,Sector,Business Services,Industry,Travel Services,HQ Location,"Hanover, Germany",Website,http://www.tuigroup.com,Years on Global 500 List,23,Employees,66779,Company Information,Revenues ($M),21655,Profits ($M),1151.7,Assets ($M),16247,Total Stockholder Equity ($M),3006,Key Financials (Last Fiscal Year),Profit as % of Revenues,5.3,Profits as % of Assets,7.1,Profits as % of Stockholder Equity,38.3,Profit Ratios,TUI,, Companies are ranked by total revenues for their respective fiscal years.,Revenues ($M),21609,Increase/decrease in revenues between the current and prior fiscal years.,Revenue Change,3.6,Net income after extraordinary charges for a company's respective fiscal year.,Profits ($M),430.5,Total assets on a company's fiscal year-end balance sheet.,Assets ($M),10060,Increase/decrease in profits between the current and prior fiscal years.,Profit Change,-2.7,"Total employees (full-time equivalent, if available) at fiscal year-end.",26000,,Fortune 500,129,,,,,Michael J. Jackson,Specialty Retailers,0,500,CEO,Michael J. Jackson,Sector,Retailing,Industry,Specialty Retailers,HQ Location,"Fort Lauderdale, FL",Website,http://www.autonation.com,Years on Global 500 List,12,Employees,26000,Company Information,Revenues ($M),21609,Profits ($M),430.5,Assets ($M),10060,Total Stockholder Equity ($M),2310,Key Financials (Last Fiscal Year),Profit as % of Revenues,2,Profits as % of Assets,4.3,Profits as % of Stockholder Equity,18.6,Profit Ratios,AutoNation,, ================================================ FILE: data/romeo_and_juliet.txt ================================================ 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. ================================================ FILE: data/stop_words.py ================================================ 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"] ================================================ FILE: data/weight-height.csv ================================================ "Gender","Height","Weight" "Male",73.847017017515,241.893563180437 "Male",68.7819040458903,162.310472521300 "Male",74.1101053917849,212.7408555565 "Male",71.7309784033377,220.042470303077 "Male",69.8817958611153,206.349800623871 "Male",67.2530156878065,152.212155757083 "Male",68.7850812516616,183.927888604031 "Male",68.3485155115879,167.971110489509 "Male",67.018949662883,175.92944039571 "Male",63.4564939783664,156.399676387112 "Male",71.1953822829745,186.604925560358 "Male",71.6408051192206,213.741169489411 "Male",64.7663291334055,167.127461073476 "Male",69.2830700967204,189.446181386738 "Male",69.2437322298112,186.434168021239 "Male",67.6456197004212,172.186930058117 "Male",72.4183166259878,196.028506330482 "Male",63.974325721061,172.883470208780 "Male",69.6400598997523,185.983957573130 "Male",67.9360048540095,182.426648013226 "Male",67.9150501938206,174.115929081393 "Male",69.4394398680395,197.73142161472 "Male",66.1491319608781,149.173566007975 "Male",75.2059736142212,228.761780615196 "Male",67.8931963386043,162.006651848287 "Male",68.1440327982008,192.343976579187 "Male",69.0896314289256,184.435174408406 "Male",72.8008435165003,206.828189420354 "Male",67.4212422817167,175.213922399227 "Male",68.4964153568827,154.342638925955 "Male",68.6181105502058,187.506843155807 "Male",74.0338076216678,212.910225325521 "Male",71.5282160355709,195.032243233835 "Male",69.1801610995692,205.183621341371 "Male",69.577202365402,204.164125484101 "Male",70.4009288884762,192.903515074649 "Male",69.0761711675356,197.488242598925 "Male",67.1935232827228,183.810973232751 "Male",65.8073156549306,163.851824878622 "Male",64.3041878915595,163.108017147583 "Male",67.9743362271967,172.135597406825 "Male",72.1894259592134,194.045404898059 "Male",65.2703455240394,168.617746204292 "Male",66.0901773762725,161.193432596622 "Male",67.5103215157138,164.660277264007 "Male",70.1047862551571,188.922303151274 "Male",68.2518364408672,187.060552163801 "Male",72.1727091157973,209.070863390252 "Male",69.1798576188774,192.014335412005 "Male",72.870360147235,211.342496819640 "Male",64.7825829779871,165.611626182250 "Male",70.1835498874837,201.071918099568 "Male",68.4914502529394,173.423960346601 "Male",67.3308308810162,181.407679285937 "Male",66.9909440825232,169.737707400252 "Male",66.4995499002499,163.309528309674 "Male",68.3530566463988,189.710209942456 "Male",70.7744590703974,192.124847346168 "Male",71.2159236694709,198.1984641076 "Male",70.0133653490674,209.526499837126 "Male",71.4031822207589,198.759792659859 "Male",69.5520050948319,198.079523654438 "Male",73.8185345577699,195.290612189727 "Male",66.99688275225,164.943302997003 "Male",71.4184658930907,179.863902339297 "Male",65.2793002090043,155.250420694049 "Male",68.2741914742284,184.519391248574 "Male",72.7653699463424,220.678041465283 "Male",68.0993798003468,183.31265530722 "Male",68.8967060721692,196.451312291183 "Male",69.2895099633052,184.595608300273 "Male",70.5232245234565,207.532838518544 "Male",69.6637252265179,177.200928752348 "Male",67.5952688079157,163.108002209381 "Male",72.5081203801037,216.218230112735 "Male",71.2529856038086,204.655493822323 "Male",71.8091868893668,200.920571219495 "Male",72.2451654792519,220.901769881142 "Male",66.5126276609347,196.449860340782 "Male",66.0290340048182,168.640810039015 "Male",67.577153942735,181.432713008126 "Male",68.2465686016242,198.658673326418 "Male",73.8261270026308,237.916735863185 "Male",69.8024643604904,173.041255909233 "Male",65.9595777848988,160.683916639879 "Male",71.0790175757451,188.602919070666 "Male",66.5961965372077,208.345694035109 "Male",68.9515350928246,193.435118452271 "Male",68.2444617923064,174.109693790620 "Male",72.3168251228452,197.368589249335 "Male",71.8154204495308,201.620666747742 "Male",65.2370495188386,181.011973240364 "Male",70.6405300907292,182.122485978660 "Male",64.731925597255,177.549263423371 "Male",67.1035511824075,164.974580682475 "Male",65.1174848880457,165.717112190107 "Male",71.7012340230177,193.094163543063 "Male",66.8328782059274,180.683886970857 "Male",66.4712752615182,172.773722928412 "Male",69.4115262206039,177.470616229738 "Male",70.0521774745245,200.818737313254 "Male",66.7436046519631,167.739775344302 "Male",66.2743291154144,154.395624779233 "Male",68.328447992915,177.984728603887 "Male",70.0758881952341,183.938856956780 "Male",68.7329881487344,179.204782068600 "Male",67.556051261876,158.567987385418 "Male",66.2536325347937,166.503531642942 "Male",69.1822026805756,171.983677611956 "Male",67.6091049416397,174.36418237859 "Male",69.2927380218867,187.745351863374 "Male",68.1906840077038,201.487962380610 "Male",71.6070857988906,204.927012136803 "Male",69.1968575103315,178.685546470181 "Male",67.2619609790619,164.014427741951 "Male",73.6851933999998,223.270004412371 "Male",69.5372150072948,202.958306269835 "Male",68.3115598414683,189.391785609949 "Male",67.7389634664393,178.170555578466 "Male",71.7057626011001,223.299335239803 "Male",63.6322646037867,167.028706658323 "Male",68.7211984556865,180.468682011870 "Male",66.9493416501869,164.439145622362 "Male",62.7069897353164,149.969618421042 "Male",72.2584089235993,192.910266551722 "Male",70.9086530626676,201.883998700574 "Male",67.609843601682,179.868025984495 "Male",70.8015589556942,196.467724673936 "Male",69.3047690450735,187.551649491386 "Male",66.2428983411553,171.69315968571 "Male",67.4921929772739,191.699604784328 "Male",65.8062482913584,165.850647784905 "Male",71.4437056615428,185.662741323862 "Male",68.4644058223141,178.281800729884 "Male",63.98792460498,150.979051250134 "Male",71.0018976858456,209.929323430504 "Male",68.1397241925525,174.157804341493 "Male",68.395400248121,179.878977102334 "Male",68.0962197450165,167.747141247633 "Male",68.1405903559209,183.044660372103 "Male",68.8600903087433,169.556820782151 "Male",66.1488525422307,173.431672660432 "Male",66.2060320529589,180.889554609418 "Male",67.4321202146878,183.508932854723 "Male",69.471106031247,205.977910165675 "Male",70.5158596943462,183.759845192649 "Male",71.3383760399558,201.954495466668 "Male",71.0019447673538,216.120094736912 "Male",66.202347706273,159.390323744187 "Male",72.5433070453887,210.336424661861 "Male",67.4793517580411,178.618350159953 "Male",65.3504105558103,146.739797635802 "Male",70.8440624208882,195.937014974314 "Male",69.9384752593112,170.175853813004 "Male",64.7398154829922,169.654054121188 "Male",69.3084028803936,198.378693643572 "Male",68.8384628598724,179.907716915983 "Male",61.9373232676829,147.263686501559 "Male",68.5933355351181,176.984251121287 "Male",65.2185755780772,185.467788373205 "Male",64.3336481069845,177.49380233889 "Male",68.7489067017398,169.827477419625 "Male",72.4896554004081,198.581698249799 "Male",67.2339309182551,203.350339274846 "Male",67.263604843261,193.217672687431 "Male",65.1185042831735,178.134945178843 "Male",66.2628200381632,162.779583404690 "Male",67.7016796596273,159.286510598869 "Male",65.530695966695,172.114311951227 "Male",69.8689698092041,201.837042594883 "Male",68.481875364733,170.352329550626 "Male",72.2139633457195,205.389760708631 "Male",68.1795326940723,169.787768075943 "Male",71.9812065428705,200.437310528735 "Male",66.0651367327304,178.588954037204 "Male",66.6561641698185,168.014029738329 "Male",67.5994241952902,177.766425839946 "Male",68.245944093831,193.277623999542 "Male",64.808621440717,162.379540639612 "Male",67.4922182698406,183.383824391458 "Male",68.1807307068654,181.056095285359 "Male",69.553384902902,210.871798957101 "Male",66.4022496683603,165.568499073011 "Male",66.5921571146877,196.148449846229 "Male",71.9358865828482,202.046425151919 "Male",68.2870417278818,170.413602496365 "Male",69.9554511951638,201.948085296608 "Male",71.8511291454027,193.386984552842 "Male",65.7554986406737,179.855689615225 "Male",67.0318520789828,156.489934998191 "Male",76.7098348578592,235.035418820022 "Male",72.5711213712958,230.560534959742 "Male",69.7288048973671,203.895654986365 "Male",72.799224004586,218.216396639014 "Male",72.5393540719418,222.667177921523 "Male",72.2947433844169,208.474865890573 "Male",67.2533248158638,180.779780013772 "Male",75.9444603760016,231.924748509110 "Male",66.3162319187446,170.593858104457 "Male",71.1560534900436,188.271456288347 "Male",71.1922022869477,196.061529163376 "Male",72.1975120071642,214.603584170431 "Male",75.1408214339315,224.124271329560 "Male",64.4115293597211,158.579397323387 "Male",64.7344243580774,166.501114745286 "Male",63.4145871379546,160.140615622405 "Male",67.8486652335686,176.172634254583 "Male",65.9317848288,174.485294666451 "Male",70.9665504363426,193.906498798923 "Male",67.5807472772935,186.991606706801 "Male",68.589270437901,173.595796099507 "Male",70.3247534441504,193.346560303991 "Male",72.3944804051075,208.436509038226 "Male",70.8208567145256,206.032977800797 "Male",65.9033012610258,172.57523095707 "Male",74.7953750218274,232.635402847360 "Male",67.6809190342573,177.24014549544 "Male",67.1559627687305,175.646690214202 "Male",71.7748412248401,212.626102288605 "Male",64.6652319449664,166.969204009677 "Male",68.1227683623759,196.414415275124 "Male",66.786927239528,165.431242225646 "Male",66.805849836748,176.565818557689 "Male",67.8860137980274,174.652034715810 "Male",69.1735769192432,195.237529301091 "Male",70.2249233263794,205.684438396274 "Male",64.8557991775539,158.341442360480 "Male",67.8210932715426,169.081008273884 "Male",63.4402474670865,135.655875865835 "Male",71.8484348479039,218.157469450706 "Male",66.7280736470863,155.899541329016 "Male",71.9683056520603,201.528177430467 "Male",76.0213474760963,235.926060648678 "Male",71.4761012826014,195.392617577504 "Male",67.3698086448686,176.636163567362 "Male",70.5552437595499,198.460248600108 "Male",69.8671012814472,185.716910023673 "Male",67.9475700421625,177.347779818472 "Male",74.104558863713,215.759703523821 "Male",69.167836299535,187.022420301570 "Male",66.557228572704,171.587884316854 "Male",66.7016049901078,172.839809078093 "Male",67.2460649543824,168.280286893893 "Male",69.0513854849974,163.820488927750 "Male",70.6727471767308,190.023434180521 "Male",65.4989951214088,156.869951668729 "Male",65.1872208535622,172.606482559614 "Male",67.5681430060826,169.063982994918 "Male",73.8153856882339,231.374508117238 "Male",71.606564208448,207.250476751691 "Male",67.724749235945,172.152772178008 "Male",68.231131952185,199.827758022834 "Male",65.9294217100738,168.090412215803 "Male",71.5484957096636,197.819614833288 "Male",69.1643811220365,196.892315040706 "Male",68.5976593239588,180.221780102342 "Male",71.0575108857852,189.134012435934 "Male",63.6440595814991,158.422717319974 "Male",71.1824553956369,208.922682655891 "Male",66.1286731698491,187.141119453372 "Male",65.0573731150978,157.582431535246 "Male",68.0913743588464,181.644444983884 "Male",70.993143899047,204.746678174754 "Male",74.2211748776249,231.130189759308 "Male",69.3271181795885,186.258429614423 "Male",64.9313421940842,181.093869638880 "Male",68.3468423145436,198.920979667801 "Male",70.9291250844694,203.370463215939 "Male",61.4778092015939,161.028752141872 "Male",68.4908127185185,189.806681842181 "Male",72.0498898708186,200.202828506602 "Male",72.5216670257767,221.862650308484 "Male",71.233911393331,214.060148220865 "Male",72.2591151862599,201.701421617410 "Male",67.5650399045651,187.187093632233 "Male",72.26760699498,196.527466895855 "Male",62.6002479975529,151.720703729313 "Male",66.2364372917754,167.297530251137 "Male",69.6504374123688,198.843695964623 "Male",69.2859214061721,178.789547981921 "Male",70.7252787373505,193.539252115985 "Male",68.8286149599904,197.737905022318 "Male",66.0144282335004,184.461811520982 "Male",66.4148820603895,155.194771686925 "Male",66.6156243917126,160.991989871194 "Male",68.0348217821036,189.084461735075 "Male",70.5023980440946,172.985777146208 "Male",69.1577294930868,195.895256857188 "Male",70.7950226136223,215.746455305230 "Male",65.1943771233415,166.707373059357 "Male",74.7857143190925,239.464342902696 "Male",71.0669062761598,184.279245833050 "Male",69.334197785954,199.983890906512 "Male",69.8992039506227,191.412231132701 "Male",64.4251937917821,169.109401417791 "Male",67.85213069861,194.744522494038 "Male",67.549069488044,183.266533117893 "Male",74.7674468449337,210.369908709756 "Male",71.4189459863648,198.042483889936 "Male",67.1203443862066,172.664090375104 "Male",69.8595879120267,197.070856157865 "Male",68.4308133914105,190.505810039573 "Male",67.9334826070233,184.555483105293 "Male",68.4953431552723,179.929816647941 "Male",65.2441434106539,159.503219765390 "Male",70.18535204699,197.884507071155 "Male",71.1041331645307,217.269605198307 "Male",68.4475785430627,187.907425986628 "Male",65.4205768240508,176.861684237851 "Male",67.7007881137183,185.148202101777 "Male",74.2230630621199,223.308040304474 "Male",71.1672458708534,206.942981776074 "Male",67.2307718899502,171.016940600979 "Male",67.880559193661,175.222847965396 "Male",67.3763754684836,173.310395551927 "Male",68.7612469290256,181.125973501963 "Male",71.7052725009646,202.609008338003 "Male",69.3809947926619,199.850920048803 "Male",73.7165276342286,223.514722344292 "Male",69.4533762078207,219.261706666844 "Male",70.7862898094215,211.216080923481 "Male",71.7684637369012,200.798982967421 "Male",69.3434539586165,208.809775337563 "Male",65.2860255086334,161.420081658509 "Male",70.9218444138077,207.835944561795 "Male",68.5966626863791,180.831237755497 "Male",68.6037964328568,176.815476209732 "Male",69.4787441197736,194.603768502719 "Male",65.9308962149966,163.008431653289 "Male",68.5233452979566,173.270657154824 "Male",73.9291241262215,215.620035427178 "Male",71.1979378222303,210.134529042031 "Male",66.5565868729681,185.042324084993 "Male",71.7422762291745,187.965355359453 "Male",69.7448293316538,188.181124848229 "Male",66.7506541256505,179.542017143198 "Male",69.6924222571513,211.718428961730 "Male",70.4035168308414,197.692142083456 "Male",69.0197361098685,186.287991990979 "Male",64.732287155256,166.106072437390 "Male",70.9980744408969,188.811769976897 "Male",64.4598142530512,161.378773212037 "Male",69.749522583002,193.476258831235 "Male",71.5268488121848,189.282246099829 "Male",68.327915863972,207.784924645001 "Male",70.7647201641119,199.323094259304 "Male",71.4190496341516,209.858256604748 "Male",69.3904740948909,180.175472763871 "Male",72.001732217799,196.214414481383 "Male",69.1914749733353,189.438840351539 "Male",66.1663632831791,165.514607433147 "Male",67.272142995153,182.39433469242 "Male",70.9158354035361,189.557637460086 "Male",69.1198877896665,189.625914076302 "Male",67.409025871346,170.191325429211 "Male",72.938649040208,216.097454719831 "Male",70.4909286959958,177.067774350773 "Male",69.0082594618674,196.051188755039 "Male",66.7621099176273,167.700496231312 "Male",69.1206637294553,179.607870051102 "Male",73.1262671878997,220.661405093753 "Male",67.4868238954174,164.295241252612 "Male",64.95507833495,156.544786349540 "Male",67.7824890749697,183.681029038066 "Male",67.662398796047,170.305493490476 "Male",66.4763970064683,168.627263912841 "Male",72.9870702010434,209.637974489395 "Male",69.5632322771984,195.346026970440 "Male",71.0035601394697,194.322601360166 "Male",69.9156373621056,219.367916747189 "Male",71.697141788046,205.161748286445 "Male",67.6499408575301,178.882633665742 "Male",68.2955545645253,181.724931465833 "Male",68.687255673712,203.560333836071 "Male",68.9157716453463,165.155898683434 "Male",68.9608796727544,197.931429550253 "Male",67.2472352041876,173.284033013291 "Male",68.915863641061,183.947788899966 "Male",65.8385445036175,139.534046940100 "Male",64.6710755478367,160.188531344114 "Male",66.2958977236134,163.604002191910 "Male",67.0975857472015,193.955107443761 "Male",66.998289732799,189.893342494401 "Male",70.9619709026438,184.223932043739 "Male",68.4208722048485,190.795542169576 "Male",67.6525275866462,188.200679380904 "Male",75.6201931582543,226.207779869446 "Male",70.549242022249,197.879373104868 "Male",68.8908389093416,190.51348690364 "Male",68.2845319195117,176.246583436270 "Male",64.9950782592052,177.727094498411 "Male",65.5757715426728,173.691592194197 "Male",69.3060882402712,210.463687540605 "Male",65.7047154221532,170.100563318173 "Male",67.8039910102957,173.459891805983 "Male",69.2161473119131,184.936690322645 "Male",68.015006008896,194.286945947274 "Male",61.9269489433641,149.149684837724 "Male",67.2663627155588,192.4707695606 "Male",67.6768218539142,179.750807982436 "Male",69.9709036159667,202.863293032098 "Male",65.3134615369232,163.357331518913 "Male",71.9060054405707,217.027714643657 "Male",66.2339040421843,183.16123245569 "Male",65.814942824229,166.583610507509 "Male",72.8449478550183,205.250889151117 "Male",70.9494434526129,189.703088823966 "Male",71.3438076277468,218.586336397370 "Male",71.0556641579506,203.139433025567 "Male",61.9255472947778,139.905070315411 "Male",68.7624575579021,196.293805874861 "Male",67.5839414255894,179.937011167166 "Male",67.3616946688862,164.145922397398 "Male",65.8791565562673,168.174864370716 "Male",68.6947621511413,189.742541903603 "Male",69.5348615536043,195.170391498940 "Male",66.6346908282865,190.467958779164 "Male",69.8099015736912,204.426598301005 "Male",68.6798736853237,196.151622823601 "Male",71.615178750348,209.670773879197 "Male",69.6897953335489,190.933400489868 "Male",70.9010863653248,197.944832362141 "Male",68.005813992332,186.78033784958 "Male",70.6157439783607,188.663832117765 "Male",71.5711941575576,176.376642766115 "Male",73.0128632629827,209.329483369428 "Male",60.748117867457,136.167865724177 "Male",69.082119625473,190.935182500985 "Male",69.3387376279613,191.445654280964 "Male",67.7571377115653,184.938229910773 "Male",76.0270818630512,232.313470969478 "Male",72.2276161601432,201.778853950381 "Male",68.9210413450252,188.328807061518 "Male",65.334927680754,174.655697250193 "Male",65.932403451767,183.943338755166 "Male",70.4666893102283,187.517442017500 "Male",73.181043621139,213.847452872237 "Male",68.550879686478,175.219518795655 "Male",68.5294082502857,169.544805445436 "Male",63.5964554204545,144.591922421247 "Male",67.1442412277953,175.679190176701 "Male",70.8163706158515,197.198401561075 "Male",73.530284807779,222.925916699257 "Male",66.1410689194018,165.404545337709 "Male",67.9068497483934,170.417231213329 "Male",71.4333758216347,216.633999687682 "Male",67.1126797980262,173.707504236685 "Male",73.2839179655908,217.896039742328 "Male",63.6725831540933,161.013145838894 "Male",69.2253203013539,193.756325798869 "Male",69.6701240248717,177.119160725399 "Male",70.4854481656936,204.827449737938 "Male",69.0046778666841,176.731892478922 "Male",68.4578940081104,192.761885655036 "Male",66.024733782518,166.961020473440 "Male",69.3181691252784,186.737995548307 "Male",69.0777405646964,188.506178710684 "Male",73.5622703667904,208.361491812853 "Male",66.0876888866475,161.495814307993 "Male",73.5259843332352,214.966459199799 "Male",69.6790602156639,205.133435498665 "Male",66.6767811169297,183.197306840047 "Male",72.9616654677117,208.895044285857 "Male",68.246872144459,207.925576545187 "Male",71.9566258887157,210.663827812062 "Male",71.0586333491432,204.272837745409 "Male",66.9769499482511,195.198730107264 "Male",68.478002075726,190.686022530134 "Male",71.2844413912849,199.635326578537 "Male",64.980456290984,166.821547345859 "Male",66.7618838734058,178.797508975099 "Male",68.7661617238793,185.772157505947 "Male",68.9925435671764,193.754990936111 "Male",71.295194595564,228.800516094148 "Male",69.0494784004474,192.349701712414 "Male",66.5414820162944,175.983491137569 "Male",68.5155234451208,176.141239163871 "Male",67.4597153131659,177.482524908403 "Male",71.3573824126824,201.760776882651 "Male",68.5904060416654,176.843079926229 "Male",69.736086706944,185.524260351598 "Male",69.8338570670345,188.041029020603 "Male",72.4105857637391,189.384438292527 "Male",65.4345968678659,166.096744020516 "Male",66.2676567702434,170.250178653613 "Male",69.9743008732506,212.80425895999 "Male",71.2091942237274,196.14550620845 "Male",69.9374001925209,202.279069679297 "Male",71.3860221929526,201.332006891009 "Male",64.5887816699057,158.454094446398 "Male",68.7929844158731,174.489486264089 "Male",68.4457467280668,183.783382685316 "Male",69.2015781220676,188.103506112668 "Male",69.4260173088723,176.193429823813 "Male",69.6062252013619,194.200711875856 "Male",72.8817069731098,194.199508871416 "Male",62.1783312217775,145.898842373806 "Male",68.8747066201055,191.833709173715 "Male",71.0800835585909,209.853553640725 "Male",72.1825341217157,201.261464391648 "Male",72.0627549780187,208.781853387475 "Male",67.3800578933842,182.673405387725 "Male",67.9346345330211,166.435068826956 "Male",70.8019302593082,193.393542614483 "Male",65.5491212718992,178.448179734226 "Male",70.1912244814707,205.941790671464 "Male",71.7789953682703,199.209842441218 "Male",68.1302884151545,192.029566571562 "Male",68.3594825628257,175.260864429376 "Male",66.090357013204,170.006445104546 "Male",71.5801231387686,205.347596206115 "Male",73.5366677229231,196.043295071718 "Male",71.1155318413304,208.145256645714 "Male",70.7943025458134,202.890757825725 "Male",71.7290604846774,188.595023951021 "Male",63.1965303693731,162.429727448715 "Male",68.1011134090994,182.852399097347 "Male",65.8560997291531,157.317461364304 "Male",68.3464565013792,178.675992067492 "Male",69.5602289299611,187.217485931716 "Male",68.7283040728389,171.620966570458 "Male",70.1582776521047,200.534178304201 "Male",68.9233366538642,193.927360410157 "Male",64.3001741979872,155.489728964615 "Male",70.4556330557961,192.527904959489 "Male",68.6240631902513,159.862467400555 "Male",69.6647517445683,176.25927439784 "Male",69.0588845404837,171.708926273601 "Male",67.2269862252501,181.709618932242 "Male",66.115799694985,171.386659244003 "Male",68.617387345682,179.132024597883 "Male",69.2490128135195,187.469371391246 "Male",69.6419061835922,182.004522302487 "Male",72.7970283570657,214.474035549004 "Male",75.0439950721537,208.526426975474 "Male",70.9726841308934,190.221992860972 "Male",74.3880124251986,217.14379049327 "Male",64.3621638717144,156.073898515176 "Male",71.3270010663305,206.385191144764 "Male",67.172024442062,178.152781433495 "Male",74.4016718853099,228.838395801115 "Male",63.8679209595893,174.473362892894 "Male",68.885991766866,164.21490258191 "Male",72.1319902243921,212.157275700066 "Male",68.403726169279,206.014939808132 "Male",65.0926563918755,167.433532984504 "Male",69.229679115924,195.218639696094 "Male",71.9477882649162,209.175489088048 "Male",67.4629906554446,182.301285584692 "Male",69.3129086423205,190.185146911980 "Male",63.7310481676985,160.344903874399 "Male",60.6798174028202,129.301023766729 "Male",70.6633230772118,195.626319057537 "Male",67.594031125615,186.751416941505 "Male",74.6495078833149,227.500645068307 "Male",70.4670788540361,197.187532031265 "Male",71.9440105192761,209.5562827193 "Male",74.0257508102552,209.75927206677 "Male",70.782228162223,220.436786379453 "Male",64.7272569610009,169.207936994027 "Male",68.3830240801838,185.845616779891 "Male",71.4692208023458,192.691493116905 "Male",66.9444537375838,177.026087781898 "Male",70.7969790042164,199.947383058908 "Male",65.2924347799135,168.710290250236 "Male",61.7540098289705,123.528143020198 "Male",62.4806713089603,160.242238208749 "Male",67.8056798701788,197.082611042199 "Male",69.5259942797687,161.970937553318 "Male",72.5007566339455,201.655055938162 "Male",70.4852947444441,194.786198325054 "Male",66.689735993223,162.565406733935 "Male",71.29191758372,175.810967713132 "Male",71.7967671979694,209.379310185811 "Male",73.0563442505026,204.4603316173 "Male",68.8533543682849,210.869084178877 "Male",66.045443857521,169.326284191826 "Male",73.985901415574,223.326104950414 "Male",69.2516178781137,192.946891078924 "Male",69.3406572151521,172.904801447625 "Male",70.976264966752,191.572153555511 "Male",63.5612776251623,157.119544459453 "Male",69.7701509519637,182.795494321816 "Male",65.1884775622368,151.886942249695 "Male",69.978940819921,193.341082818018 "Male",69.7505971518031,185.427970139056 "Male",71.1714311524347,195.382310760510 "Male",70.5720017829453,174.196887301378 "Male",65.6510895191431,164.649813939991 "Male",67.138414139275,163.845001328561 "Male",65.9180869418123,174.719958105635 "Male",73.7866364434803,212.900555995405 "Male",67.7372513405283,172.794260611103 "Male",65.5440762535086,171.980331261146 "Male",71.2139125656884,195.923416498401 "Male",65.5923540298347,174.815348513060 "Male",65.6675544806922,174.566855841687 "Male",61.9727358785594,140.277749662033 "Male",73.8999386863723,215.559703251912 "Male",72.3421836419704,215.858233901414 "Male",70.3116943408726,184.243860348496 "Male",67.1155643547224,168.202167127644 "Male",65.9324817643713,151.384618198034 "Male",67.2277450207952,185.970160851636 "Male",70.1143436293898,203.241731802719 "Male",74.8414997197116,223.945670277953 "Male",64.5273026254953,148.472185853494 "Male",70.0512546906491,207.194647294605 "Male",71.8331687752888,205.193061760797 "Male",72.8367396943866,209.422484275198 "Male",73.301865746729,199.166928678883 "Male",66.39319244743,165.064609545545 "Male",66.5151619602185,180.760534823182 "Male",69.2728126084372,202.298760151666 "Male",68.2319539277068,195.261990296064 "Male",70.4138690342612,184.232661744937 "Male",69.7268852052361,188.453759671202 "Male",65.510733890584,157.205025302195 "Male",69.1372693569977,196.5523243152 "Male",73.6661887960567,208.366179328565 "Male",65.8927525257603,158.184985696975 "Male",68.3544289583384,184.598427955692 "Male",70.424730529607,197.907521149770 "Male",72.0802011466065,202.867236668923 "Male",71.711124785333,199.080778987396 "Male",65.7291618715397,156.223958465888 "Male",63.8983381991847,168.299537977425 "Male",70.3160097119508,201.510688097382 "Male",65.788729792806,174.584879939493 "Male",69.8274641852115,196.930792028562 "Male",68.3311500917703,197.756770319413 "Male",67.7415892669206,165.64328330518 "Male",75.0338894406835,232.886117051993 "Male",73.4040585211468,192.732404676961 "Male",69.55476187936,192.181668737126 "Male",64.5390397840475,157.129277198286 "Male",67.5467614711226,163.495202566767 "Male",73.0964779848914,205.157577990748 "Male",66.5539810727358,171.428591885687 "Male",73.9916041888572,208.964583561346 "Male",70.8626880592361,209.759114032409 "Male",71.5687336966565,206.260457759816 "Male",65.8383911344328,177.211696598095 "Male",70.2755336626221,211.716253810906 "Male",61.773521995356,149.514839170261 "Male",74.8249453074994,220.336366886695 "Male",71.6051458474554,192.427913613357 "Male",67.260103577221,163.386512746963 "Male",70.9241944325351,199.778372639881 "Male",75.0596686483632,218.583687985000 "Male",73.1008762422727,223.206451566012 "Male",70.6619920308473,217.951882605948 "Male",67.1446673494398,171.207778898624 "Male",67.1231534297474,147.537956155257 "Male",69.5249439626314,170.037186251170 "Male",65.2246916634494,160.836074452623 "Male",68.4104628205716,185.127735469558 "Male",68.763463696161,177.083388175076 "Male",67.9368688125212,188.884096818794 "Male",69.2378286911685,159.244886180877 "Male",68.46572391809,188.079276046176 "Male",65.6942935969472,150.960619570537 "Male",69.4309980463662,172.325881178479 "Male",66.1353914165956,166.363818692456 "Male",70.8770481302174,186.339824370789 "Male",65.9730649994945,187.658379142995 "Male",64.9391154197026,163.880198525282 "Male",68.368603321184,196.949506368912 "Male",69.5255513063261,189.707398780834 "Male",66.4556021398344,188.974847308905 "Male",69.474581761728,177.343917682018 "Male",68.7300987032260,184.130431971036 "Male",73.7812744801257,221.240095762718 "Male",76.50188334064,217.882346394923 "Male",71.2257019248704,199.182762952512 "Male",64.5062104482427,164.500366620687 "Male",66.5038149399263,163.269889315846 "Male",69.2104130403531,187.624820339102 "Male",63.5463697191554,150.346658456669 "Male",69.7311284328782,202.707102372802 "Male",68.6082084641792,181.724836528158 "Male",71.464130247868,206.590856693051 "Male",69.5094880014557,203.985415487617 "Male",73.7596357420018,231.608670942233 "Male",68.2777867627378,195.189930156404 "Male",72.4546334226458,200.290004474109 "Male",70.7691932703988,195.353057497215 "Male",70.4521407449342,188.098837300362 "Male",68.9040988533852,194.659769774523 "Male",69.2384271868614,197.412091355179 "Male",67.2778472839007,156.416342192304 "Male",71.4637646915818,207.768534974947 "Male",68.8406335127133,171.921149933427 "Male",71.4059647136753,216.923291191821 "Male",70.144874073255,190.585376753341 "Male",70.6796910335925,206.119839185486 "Male",68.5411160545877,201.108892294769 "Male",71.4347269121165,206.594058750348 "Male",65.2208204814207,158.987186084825 "Male",70.7731514183424,208.223566139917 "Male",69.760094789524,187.812061866277 "Male",63.9625306846396,168.349456798515 "Male",70.3041632689917,196.835051662201 "Male",70.3168492217264,205.521885795243 "Male",67.4054078779366,164.574391291788 "Male",67.121503053709,167.191527196189 "Male",68.3775798868721,168.997323920848 "Male",69.5782389725199,184.219818154564 "Male",62.5322532839863,168.153326219890 "Male",69.3368215258868,184.119415287208 "Male",66.7874672787514,172.175466312667 "Male",75.3912922303323,218.604697288874 "Male",70.2136290842041,189.658273775163 "Male",71.1035636159129,196.759936203758 "Male",69.7938878917517,181.723193180931 "Male",66.4718444604063,175.389151760833 "Male",70.7137140881225,208.710438585204 "Male",63.618717286078,162.674975183263 "Male",70.5492797174363,191.318810834470 "Male",67.4028210941089,192.672675824117 "Male",71.4351749033072,213.337773308762 "Male",68.5934051359775,187.402530930982 "Male",71.4523265352799,203.448273004639 "Male",70.6987899471723,189.985478828833 "Male",71.3914644848076,197.307058582909 "Male",70.4856431655714,193.359946993498 "Male",74.4081878556543,226.701022932309 "Male",63.4004232290441,185.188138040552 "Male",68.3997191187644,171.329108454027 "Male",67.4298541805405,175.124366331655 "Male",70.8119999651241,196.221113490145 "Male",67.1102710065681,194.752353698099 "Male",67.7282199001928,184.468450401731 "Male",68.5508321853167,179.556789891852 "Male",68.619484972581,192.605638565238 "Male",70.605761010108,197.341247176261 "Male",67.0867812193882,164.175700818982 "Male",65.3117081851018,167.327702757749 "Male",69.9241467518784,185.866584288640 "Male",68.364634884563,193.981747611358 "Male",70.869804923435,205.863934518421 "Male",76.0123000122601,235.437966081368 "Male",67.9659678054035,176.966727879219 "Male",69.7650874422372,199.02642762377 "Male",69.5686723852038,200.704051660034 "Male",71.5600187424886,213.978596580713 "Male",70.9580492704939,201.663337321292 "Male",65.4409223111664,144.132026850880 "Male",70.9761245175843,202.603188030477 "Male",67.9928512420125,183.958089153383 "Male",70.5185150906246,199.568441028307 "Male",69.1091914382834,176.045407011543 "Male",71.6055730996525,194.932568526505 "Male",69.8895585817577,203.518326493008 "Male",66.4568987750028,166.684648751465 "Male",70.2913541843552,207.508542611603 "Male",62.6199652024419,152.852974718754 "Male",66.621681831888,146.230804742359 "Male",65.3502881767895,156.761337138797 "Male",71.6067398889196,209.964943185152 "Male",69.4129144287566,183.902110439132 "Male",69.8938135929651,200.796854476097 "Male",65.665958564131,164.215639183560 "Male",64.4082732512145,154.641041608773 "Male",68.62688583476,189.44924046642 "Male",69.6002826442675,176.594888560523 "Male",67.4532312427657,173.272217789955 "Male",68.1699945979806,185.253109882045 "Male",69.553614036104,203.811090942794 "Male",65.7472979878932,182.051690329734 "Male",73.1223931509758,201.703778019228 "Male",66.6209260032382,177.842655342218 "Male",69.1459089866395,202.628196093564 "Male",65.965795047667,186.225430725101 "Male",67.2032664163271,185.454007229585 "Male",65.4539571708589,175.844485044790 "Male",73.0300920269224,209.587800507552 "Male",68.3172449023022,179.370856017665 "Male",66.3342814592302,165.368276469302 "Male",72.3619834817878,198.262970327058 "Male",67.7174274900004,184.931804199742 "Male",70.4775913017474,200.247996191067 "Male",71.1629916473587,199.443988986417 "Male",69.3547795615889,202.332215731187 "Male",70.0972376450384,201.993728023585 "Male",69.2972916961487,197.358760710745 "Male",63.3099692849417,157.003543665807 "Male",67.8872298890947,183.343327242353 "Male",73.2029699010359,203.023116063971 "Male",73.1411550985637,193.926034192487 "Male",70.8959825454072,195.601365349029 "Male",72.1426926653778,214.853925271526 "Male",72.1327778674956,184.147188834447 "Male",71.2066187430906,193.743259981117 "Male",66.2521505114177,170.109499628414 "Male",72.3415887742695,205.699621116357 "Male",68.068922111764,166.263500115293 "Male",71.3973089137367,198.406733806725 "Male",65.7260320477284,169.675260295768 "Male",67.1104474203962,160.050285251246 "Male",72.2150349075593,204.937760149992 "Male",63.0097830848321,147.901820043978 "Male",69.5691552119986,180.949823360142 "Male",70.4040016797078,217.837244762115 "Male",68.0302155969993,189.361639792627 "Male",69.7779103180642,176.090289339977 "Male",62.0786351862267,130.277274850818 "Male",65.8344196799245,159.319115073327 "Male",70.7809360391759,191.968177874730 "Male",69.5714302095419,182.154139159232 "Male",67.3270648124962,188.35172566903 "Male",67.8146018831068,191.760001792547 "Male",66.682242766975,162.766968330461 "Male",69.6397087490569,197.596213071005 "Male",64.7742374037153,182.589844094188 "Male",73.9629410745522,200.007160851719 "Male",67.9333838365102,184.409520002429 "Male",66.7700394702836,165.489768001822 "Male",68.936357575679,176.652179225913 "Male",76.4345587137262,228.872990637662 "Male",68.996145368249,180.350924390491 "Male",73.5018396237801,225.972218321773 "Male",69.6031034024769,189.816644900283 "Male",72.067379985717,202.262074138673 "Male",70.4892245364657,178.918714208691 "Male",67.0348505611985,167.044233115506 "Male",66.184108496297,172.637611536679 "Male",68.6942095017358,179.962508790081 "Male",66.6532337437077,160.147436127873 "Male",69.8386570782748,178.392482558206 "Male",66.2450648070515,154.588689585938 "Male",72.8110316092765,208.848846495439 "Male",64.4747469568808,169.430634272192 "Male",69.7544793252549,181.641048884472 "Male",70.6614443891591,203.844791576438 "Male",72.4706184938672,184.446325303497 "Male",68.1715328455939,199.70181147917 "Male",72.9871714255633,206.629399212360 "Male",70.5335647702984,196.584345936451 "Male",70.0469530715995,190.002405191259 "Male",69.0160671628343,196.76390754959 "Male",73.5491622682398,222.297492120609 "Male",68.118097827498,180.065609406600 "Male",68.2876370331869,178.432597736547 "Male",71.527047694968,202.748739711506 "Male",73.3965429282898,220.945760743646 "Male",69.8445640844681,198.630278194117 "Male",70.15196587967,203.734480758039 "Male",66.2997258732792,150.149361277111 "Male",76.4929339594115,227.139295974484 "Male",71.0323851971723,186.762487511985 "Male",66.6310409367559,170.421149332108 "Male",66.0755368151504,182.428002531571 "Male",70.6131624145417,187.472023542885 "Male",65.2034806844673,158.664555216949 "Male",66.8618612870774,175.797275435425 "Male",73.7579982986776,220.770232006582 "Male",69.8980860723227,195.758935463703 "Male",69.5273197188296,189.027367850759 "Male",66.7444774700376,154.126850429328 "Male",69.0744920316712,179.386816722320 "Male",68.5617507293083,172.195363687745 "Male",70.3225500128014,190.461776758205 "Male",71.9491204211446,208.088946513166 "Male",70.9165517924984,191.883267018275 "Male",70.37112335334,197.382415661258 "Male",67.796477151995,189.683151319762 "Male",68.6999956299772,208.068199264981 "Male",69.1146317960513,188.717272552453 "Male",67.6971036455845,187.423896421090 "Male",71.2803302309239,217.903599366613 "Male",71.4275751935442,201.842808664398 "Male",71.0433563208046,204.627727659118 "Male",64.7262559397982,143.347565498203 "Male",67.1481594371304,182.031248036570 "Male",72.29169702561,202.104371634163 "Male",70.2428661701033,192.796112562644 "Male",64.457857849175,158.916699285487 "Male",74.4649885443558,213.482102570528 "Male",65.2989151495077,162.818275468988 "Male",72.7495261139615,212.180718812816 "Male",65.7181787540213,155.175542786984 "Male",68.8900949391591,194.681434643233 "Male",73.0384086139,209.475388083627 "Male",69.86074638417,198.321828121241 "Male",69.8611969523225,179.662496461814 "Male",71.7655616628825,192.690383151505 "Male",66.8208458858784,179.801568231632 "Male",67.7876938262705,190.506795646304 "Male",69.2507138496364,196.141144482203 "Male",68.9296721083659,180.826457432256 "Male",68.9971098556648,186.635312996650 "Male",66.3739949336111,167.784391028618 "Male",66.3765193269966,179.468886431732 "Male",69.0545697565698,181.360351242341 "Male",65.6674754047304,161.422210929555 "Male",62.7528775216661,149.759706016500 "Male",66.577986705883,161.201890594841 "Male",67.2721706595338,187.363365848207 "Male",69.836551651926,176.011673267755 "Male",74.216430944514,238.569450876454 "Male",71.2305285617873,209.032876811002 "Male",70.7628651265818,194.796567253093 "Male",67.8789538779499,163.724432624055 "Male",67.1145266908252,182.512451120851 "Male",66.5398122216795,175.093254689416 "Male",67.0912186560557,180.880724606769 "Male",68.8934176530557,172.654237864262 "Male",71.8826967420196,207.57561358173 "Male",70.5318761057351,194.009472984818 "Male",69.2081081950178,187.867102546193 "Male",66.8547377457483,161.223964804125 "Male",77.1608008945486,228.707300850029 "Male",68.1985373165711,176.456828376649 "Male",66.7957930920407,186.993898606724 "Male",74.0702062076238,218.423584474029 "Male",69.6917430451575,184.618952908832 "Male",70.4827574106373,199.359223999908 "Male",66.2029636090014,164.634463670180 "Male",71.8578879072308,193.429989763484 "Male",65.975207182975,171.076831440131 "Male",72.6769610901306,217.561415368678 "Male",69.8120217064516,188.064983938564 "Male",69.0431459809296,178.184817464393 "Male",63.8506783939551,151.996661485131 "Male",64.9097852365578,145.176135872661 "Male",65.045444008848,147.66026013933 "Male",68.8743961941656,183.438539153398 "Male",69.9822194992417,178.348439117701 "Male",62.709303709749,152.820468105226 "Male",66.9234367580027,173.634257094193 "Male",67.2690439717089,180.035672697479 "Male",72.1225255313879,200.336805594253 "Male",69.6114032550123,170.296196746773 "Male",65.18470087045,166.73855470482 "Male",74.0802749473551,194.778854330805 "Male",61.121828632923,152.791130086580 "Male",68.321452866911,206.426146941539 "Male",63.9529283994475,164.771475352160 "Male",68.5813735185472,181.167060950369 "Male",64.9259089634653,185.001854178420 "Male",69.6597535242007,209.520424599613 "Male",71.1207533229965,197.345436026506 "Male",62.8041907055702,148.605042361239 "Male",70.8112617091695,201.224277133599 "Male",69.5495105694549,199.193814754676 "Male",67.0323461956309,188.459689131546 "Male",67.396834254227,178.300196634959 "Male",69.3718433314283,173.430169608834 "Male",74.5451369404472,218.437567908138 "Male",66.5565249852091,173.386830210271 "Male",67.2599528243859,186.320797193534 "Male",66.0019677250915,165.167722781655 "Male",67.2835074243167,203.135759560563 "Male",67.924633636526,161.670827844243 "Male",66.0576338070287,164.470503879209 "Male",65.8445804640368,170.792356904563 "Male",69.031062851652,170.310122186155 "Male",70.3271164111783,192.497160869606 "Male",66.5343065072948,166.371257998110 "Male",71.4716748983661,196.540959991148 "Male",70.0469307663445,183.619620777862 "Male",68.6057105628212,187.291391863172 "Male",68.9823807296095,178.282409486653 "Male",73.7888849042811,222.397560523835 "Male",69.0728108169759,190.587912957767 "Male",73.1879491114706,204.103816962433 "Male",68.6773844055852,192.196246087213 "Male",64.9223362561123,179.409091862310 "Male",66.1112291402564,192.765580966011 "Male",67.7489898525367,169.740272090197 "Male",71.8139035569294,192.816441679395 "Male",69.1954412203952,185.729196133650 "Male",67.4071716573248,188.594092236700 "Male",69.8766334089165,179.680930323501 "Male",64.366676724607,162.495082455027 "Male",67.492853857301,183.383780173245 "Male",73.1224332056134,221.445902076745 "Male",67.6529454789154,188.889864542325 "Male",68.5379018504103,191.822914272445 "Male",70.7247580226813,214.261518198021 "Male",68.230150312392,182.382822151331 "Male",67.6971234115329,163.939878580161 "Male",73.7167427530004,198.462226895361 "Male",68.8584572194312,187.395085781024 "Male",66.473765965897,175.947367804346 "Male",69.9722813210905,188.625911160118 "Male",67.5561832236562,200.779691031520 "Male",74.2720186547956,209.937492806304 "Male",72.0938599798142,201.862658416185 "Male",69.5697796657481,182.794844209970 "Male",71.6140894517358,206.163432503748 "Male",67.1385496121352,171.876966350462 "Male",68.4156512567171,171.321216279214 "Male",78.0958674715774,255.690834836788 "Male",68.6426275979686,178.816794561407 "Male",70.0268418933568,186.35870219412 "Male",74.3256770078908,220.845727450162 "Male",72.2316362418495,202.137160078903 "Male",67.6666640962661,193.081646916164 "Male",66.4241871307394,157.288087962353 "Male",65.07111347024,180.756525640392 "Male",69.1569821008043,206.515190253783 "Male",67.8053118990619,180.004548166251 "Male",68.2387453921122,193.983821325417 "Male",72.5488519758884,203.627583742114 "Male",74.0564268450105,211.730517311015 "Male",73.2367882181052,201.099800596744 "Male",72.837684879727,212.204039573755 "Male",68.2698199019828,167.910728878334 "Male",70.0718191269297,207.086675062813 "Male",71.7386947669324,185.842621819595 "Male",68.6739597005891,172.847184869266 "Male",70.1821393878583,184.723330838492 "Male",66.9466142031627,182.369716830891 "Male",67.6759885362138,188.311394125276 "Male",67.9035731889727,168.677913221024 "Male",67.1994321067045,173.488599343786 "Male",66.9978619626889,178.057335561343 "Male",66.0297085023259,174.058235447194 "Male",67.8142858982252,192.066391951822 "Male",71.4476515071247,191.177157677356 "Male",70.0793233086792,189.595960181422 "Male",73.7216132391354,210.223500594746 "Male",66.3880066376365,159.376926005903 "Male",68.1960877832841,189.874929158184 "Male",68.2753597268864,176.179068841408 "Male",65.939647420795,177.285414729857 "Male",66.8718778782401,170.323957507193 "Male",66.1980089454775,165.933327485891 "Male",73.3030102192602,232.250643278525 "Male",69.2850360858696,206.883393042889 "Male",71.7697616639065,200.356448013113 "Male",63.6394826469139,163.257901840427 "Male",72.1615449731694,188.913332426328 "Male",72.0032804408459,207.542120793402 "Male",68.1658368140247,173.456455329526 "Male",69.0848967998428,189.856785924252 "Male",67.1884505190303,169.890822911143 "Male",63.6150187831657,160.787653754239 "Male",71.7206116065485,211.007580137624 "Male",70.4751258360072,193.857356069757 "Male",72.8675874434281,217.335253299588 "Male",68.1628438201794,176.741831285592 "Male",69.6791496982697,203.317012295753 "Male",63.0000474918155,165.555965906858 "Male",71.758125042279,211.737441830037 "Male",71.6296782559616,201.50381284692 "Male",71.0641053823961,200.684159640694 "Male",70.1151444079114,189.532927026649 "Male",70.4488743514707,206.499744183883 "Male",68.541467407648,173.299721611495 "Male",71.3339207759372,221.122033631478 "Male",67.1809386261221,169.829453896223 "Male",73.106344278894,219.786604201796 "Male",70.8874866086991,182.887947720361 "Male",71.9102260205694,198.078825480167 "Male",73.5692978094574,216.617777777970 "Male",69.8015752287252,203.258375100339 "Male",70.6278697921492,185.246976614569 "Male",66.3145767354902,148.265730183655 "Male",70.2693597330089,192.307026835925 "Male",70.9787025892809,206.522974050485 "Male",70.3150663683053,181.789408810838 "Male",71.513700527161,212.72870492711 "Male",70.9985462096108,195.959044747928 "Male",66.6953092197976,155.128964521951 "Male",72.6589995697388,207.506378684704 "Male",66.510042769778,181.938176062062 "Male",66.5782346185595,164.117030445541 "Male",66.724680167423,185.313911322154 "Male",69.2955464784272,178.175369775758 "Male",68.3229823060042,178.41318865345 "Male",65.7979530477724,162.027735634929 "Male",70.1237614326212,217.425674975721 "Male",69.0640886145382,189.806645514336 "Male",70.907736687617,197.216551955857 "Male",66.7541298089417,178.382812540571 "Male",68.5893591252093,178.045313954736 "Male",70.9737877713209,184.982601283505 "Male",63.1785973050145,153.606833081922 "Male",69.903210979087,221.897619021438 "Male",67.7337208766801,175.564339661591 "Male",71.0929562627261,198.829117326426 "Male",70.1217961506218,189.279522505883 "Male",65.788024186045,166.276987710018 "Male",71.5072424097625,202.518457548790 "Male",71.7154979726929,220.273900961904 "Male",71.4544113112009,213.336592538630 "Male",69.3856358757495,171.331248469425 "Male",70.151264910493,191.568259905213 "Male",72.1091123164682,200.701730727388 "Male",71.6202858302892,208.755718174636 "Male",69.20709958564,172.775162679409 "Male",71.1056269376139,188.839285203562 "Male",67.0683040230582,187.573493767063 "Male",75.9999570462348,224.440459195823 "Male",67.9863735952195,170.276247779189 "Male",69.3813459840736,197.281444316140 "Male",71.423946436313,195.364915235699 "Male",70.4713972712467,198.419138481736 "Male",71.859848860773,196.351299762106 "Male",72.7161660256644,195.356431283068 "Male",72.9213671359476,213.924486409781 "Male",71.7617473109073,201.315770747422 "Male",74.6691968221783,227.460303839897 "Male",67.3237143198475,157.029935498149 "Male",70.5550039573969,192.260745340535 "Male",65.180936559831,169.459630912183 "Male",69.7310134328264,197.639549584084 "Male",71.7514225465602,215.935393918098 "Male",68.9704141815399,173.292344309260 "Male",65.0412211274532,163.004141133667 "Male",70.0208093261174,208.609783230505 "Male",71.0348292167102,202.039446006115 "Male",72.8715387429678,229.740753102393 "Male",71.9202218421528,202.609274682145 "Male",73.9677226935135,227.022346935739 "Male",65.6645179140051,166.44368093132 "Male",70.8579319787426,187.105363830888 "Male",68.1565892187146,181.051742367739 "Male",67.1779165872217,175.352108616357 "Male",70.8569501677738,197.727299041801 "Male",63.8109745499868,166.461037984827 "Male",66.9495911176366,166.441384916996 "Male",70.2806922973296,187.258692333223 "Male",70.3234932488186,186.065532235059 "Male",70.5660638405893,205.052685186402 "Male",69.2941675737702,189.463363575212 "Male",74.3892257028474,210.144312138310 "Male",66.8923146946385,186.204005825044 "Male",73.6215439658806,206.492212937395 "Male",69.0905631901075,189.21364600271 "Male",67.5420227771115,168.761479501684 "Male",62.9219488933032,144.170644410384 "Male",68.8501522535562,187.578704206314 "Male",69.6117828468981,193.635366334802 "Male",69.515658538578,185.348836960862 "Male",69.1069169741858,188.245103226897 "Male",66.8227632176705,166.171185085083 "Male",71.1121440756254,202.357719518503 "Male",67.761713150215,191.544633956937 "Male",66.5607406026772,162.018087559150 "Male",67.1025195408383,175.957982681998 "Male",69.5821112394664,193.367198069336 "Male",72.2804004250609,192.691521628113 "Male",69.2076661054548,186.177473787603 "Male",69.0264745471975,198.014376792176 "Male",65.4350594576355,167.727961678569 "Male",68.4655715588414,200.010156872524 "Male",71.9630151795891,199.981620301624 "Male",73.7595502260715,217.219800777168 "Male",70.5325130216882,194.302259302534 "Male",69.0133350151182,190.513513766847 "Male",73.611985368161,236.780537487324 "Male",68.4910721358846,181.211239129842 "Male",64.091613053367,151.643103482541 "Male",67.972159825298,170.715693118665 "Male",70.834553554723,197.388666478500 "Male",71.647579805356,200.286508731924 "Male",67.3114985365535,158.435205191034 "Male",68.2430018377665,186.42319775766 "Male",65.4772247418039,166.654143140105 "Male",70.7110301409631,204.755780077144 "Male",67.1761153618309,174.579024534819 "Male",67.7492068507248,178.583626608061 "Male",68.4549038321081,185.377673195131 "Male",72.3003078956615,194.723253157762 "Male",65.402874534923,159.605444148410 "Male",65.6425841377384,162.685521145423 "Male",69.4424211834076,180.137520344932 "Male",67.9984092613359,171.923633566188 "Male",71.6927656587184,191.902095992769 "Male",73.603006605303,219.512521601935 "Male",67.2771975309743,176.308719672789 "Male",72.1249100332093,215.443400528279 "Male",68.6158120198116,194.120844891984 "Male",65.2270970447013,167.115458785238 "Male",66.3275173287769,166.079708289101 "Male",70.0773150916612,216.624207248647 "Male",66.6382691751102,171.275112569011 "Male",72.9722633706646,204.491790609527 "Male",74.7587524407353,209.723549650136 "Male",65.8480610833912,187.546897605636 "Male",66.601283321681,162.557438538084 "Male",68.2379541853656,184.292560481673 "Male",69.6414647695794,191.363774717338 "Male",65.2524791548656,156.010575751174 "Male",66.5819985137788,181.227981479645 "Male",68.2566445960853,201.868142674519 "Male",69.0073899850199,170.171571447315 "Male",70.0646884710531,192.045217981351 "Male",71.0848038405032,178.535490108330 "Male",71.104247761678,185.827095200257 "Male",68.5410421871881,180.666158203383 "Male",69.0205130460682,177.952382199355 "Male",66.8878193396546,187.581627340598 "Male",68.8863667479848,197.642243684058 "Male",68.3708428620063,195.122627832118 "Male",66.2096172860712,182.946419068857 "Male",64.6866910596959,157.016808620085 "Male",67.9921137884113,172.515530483668 "Male",64.7370890418541,150.050812798280 "Male",70.0804399795118,203.159659639421 "Male",66.4670414178992,164.318044781732 "Male",72.1740783551613,186.188841932583 "Male",64.5872560932148,158.374086948933 "Male",74.4012095099531,223.825507204988 "Male",71.2888438677571,190.077998432432 "Male",65.3793247430515,158.072060406185 "Male",68.0663780438904,170.986012664571 "Male",64.6992944791965,155.664255314845 "Male",69.5948262285148,191.525964959596 "Male",72.4258059659707,228.974646724056 "Male",66.7299160588956,164.907761760776 "Male",68.6712873977612,178.168394075036 "Male",69.5612965429514,199.494335791778 "Male",72.7718748251832,211.164231978894 "Male",69.4756082831272,203.021282365804 "Male",69.4199123426469,185.359129586182 "Male",65.8060628711679,149.240406483442 "Male",71.6803477761641,214.259285867982 "Male",66.351741525466,160.372738689544 "Male",66.4680246923346,180.463827337715 "Male",70.4765053343174,197.029178701327 "Male",68.1036264821955,186.210891190217 "Male",65.8316543879234,165.592195006656 "Male",69.1952984648356,201.303695501329 "Male",72.8810918503987,201.333186893465 "Male",67.7782298018313,190.730793090200 "Male",70.0260489470193,193.089736632761 "Male",71.3507825807641,213.313319203983 "Male",71.4657023618362,209.960397276235 "Male",69.212011125578,181.214072619528 "Male",68.034731117295,170.648409333435 "Male",71.9674817033336,229.514503000297 "Male",71.3378207273618,199.741559491755 "Male",72.3943234618083,201.410929953869 "Male",60.3633115596032,134.146848185454 "Male",70.4644564912116,189.626283044298 "Male",71.7136745905976,193.108946518177 "Male",70.5426410107103,185.469880800942 "Male",73.1220063070153,206.897643984916 "Male",62.0638358387075,175.071171408461 "Male",69.0805772727402,176.556144577618 "Male",71.5107297946254,209.381199760833 "Male",70.5846835183374,205.707877350487 "Male",65.0310334970139,154.841142061745 "Male",67.9192792827025,196.447702297553 "Male",68.8908721340211,176.186841667854 "Male",70.708075083398,198.759126649571 "Male",64.5773120396846,150.183474291271 "Male",70.9659857187419,179.231624200043 "Male",68.7953827477904,187.050906024182 "Male",65.4132806897686,142.593067283448 "Male",65.2065329311008,163.633596622498 "Male",69.9327101871935,185.429022314038 "Male",66.9012117360477,168.863548479767 "Male",67.2558941429024,165.264808645585 "Male",68.5061009493525,164.499918603085 "Male",67.7573606675094,186.09901588702 "Male",66.3897787194532,165.499806679614 "Male",70.2091371985465,193.953120998722 "Male",68.7016969754071,193.509268905675 "Male",70.7721645348325,204.439540295656 "Male",74.9550649859763,221.15946610755 "Male",66.3581370533707,173.355927890825 "Male",66.0766957855465,171.292975369886 "Male",66.8388529798032,170.077766470185 "Male",72.1657566562563,204.577436307788 "Male",68.2563559898149,190.390382444733 "Male",69.4457147757344,178.675599056506 "Male",70.4347502834248,189.906583756497 "Male",72.390657222607,199.574049263885 "Male",69.2270810616583,185.916021451773 "Male",67.104539992369,165.373824201930 "Male",70.3439986028262,177.473281889006 "Male",72.3853009731566,189.16559194736 "Male",70.582610325899,206.425748253995 "Male",67.4031966627947,199.679714874490 "Male",73.4387722959234,226.225699981621 "Male",67.2019628987584,174.440823103791 "Male",74.0298688238091,215.293495258098 "Male",68.9027232022797,175.435302434213 "Male",63.8749717459608,168.077899357531 "Male",68.0738491155711,185.533758050653 "Male",67.777168193215,179.864803032459 "Male",69.5184361845722,189.617453817508 "Male",68.4008673800895,182.259613679654 "Male",68.8837165079006,181.512004045444 "Male",69.7678456329977,194.604061298549 "Male",65.7162499777754,174.413364062060 "Male",66.227479321589,180.903575944401 "Male",62.7730414686307,163.186028632591 "Male",67.1292865105787,177.719799008478 "Male",69.8959573133937,181.448134946726 "Male",67.6875306412973,177.909685022625 "Male",69.6048275739551,191.033419619927 "Male",69.7022575108606,177.149091287160 "Male",67.4352276783718,159.812472364942 "Male",68.143078450147,188.145142121778 "Male",70.4905213679766,208.764897458028 "Male",70.9840710709963,192.111319555456 "Male",71.2429186491898,220.261890190739 "Male",68.4857245400115,186.412944993412 "Male",69.2854624999697,197.194547517085 "Male",64.6010455256992,140.195963341194 "Male",68.7011438011813,180.223939414464 "Male",68.2926466361122,176.007136256108 "Male",65.7136084316278,167.828760290252 "Male",67.8477490629686,153.031320830066 "Male",67.407614960974,162.822942442544 "Male",66.0975760266862,163.641496074105 "Male",67.6122197276871,190.416503573136 "Male",66.2460989997015,191.636714076471 "Male",67.7276312535175,175.209963984455 "Male",69.0442107029707,184.039980470244 "Male",78.4620529193772,227.342564876735 "Male",70.6162434515603,198.387752456214 "Male",70.4044364967184,193.856769419105 "Male",67.8717672334668,176.904595990082 "Male",70.8509201113202,185.351532936086 "Male",67.9033403504816,192.651604750575 "Male",74.724139030466,207.298331446494 "Male",68.3833071865262,179.164866559106 "Male",75.7534457684558,226.503344326265 "Male",71.0265434592106,186.229238409764 "Male",70.7526469789256,202.741657260278 "Male",76.2941841342612,233.503811307299 "Male",69.6012779599044,192.113162775823 "Male",69.5666933012413,194.984263204543 "Male",69.5802082180323,196.135525888408 "Male",65.8277866303781,157.607935883848 "Male",67.7962143713953,184.862913284896 "Male",68.3901087403571,179.352181643448 "Male",64.9224230596659,158.412559422739 "Male",68.4445618953093,182.449407759534 "Male",72.6739936528497,206.980218180064 "Male",66.0539636432144,161.557632389248 "Male",61.3107984316976,150.316448600407 "Male",68.274580728557,159.982314524349 "Male",75.2632015265357,223.449994700595 "Male",66.4702457205614,182.468057432679 "Male",66.5252941069139,179.222968575523 "Male",67.7503298756465,179.115883355397 "Male",71.7757488487743,210.728852153638 "Male",68.9974401119397,200.313015630429 "Male",68.3059335930715,185.279622912512 "Male",73.9644933728154,215.043888912532 "Male",68.7519905246801,194.132352504809 "Male",73.5732840799078,207.209460472941 "Male",66.9288070076352,169.103561818858 "Male",69.3517876025531,195.170813951101 "Male",67.0174863178823,183.381298301548 "Male",72.0605923744993,200.074044483172 "Male",67.8777511152011,175.462661781329 "Male",63.9432760462042,153.947203717433 "Male",66.1201343232182,172.508657352486 "Male",73.815245828881,208.866033768226 "Male",64.7552065986994,160.975017654154 "Male",67.0147175713096,188.974631866541 "Male",70.8786331014574,194.073974555957 "Male",67.4131518595126,168.634975042482 "Male",66.9346504859662,175.040665266767 "Male",64.6802313235266,176.074223023218 "Male",67.3218171055081,168.744755227066 "Male",68.3010221836752,194.546079562477 "Male",73.8030245447724,227.435183683422 "Male",66.2552250484991,176.486226930439 "Male",67.7056032167863,177.256999087197 "Male",65.8542048098795,178.031459645313 "Male",71.8069104245931,211.360826582070 "Male",65.3432032653399,155.729380273101 "Male",67.968565438378,192.059873564602 "Male",75.1554100851024,214.370580515003 "Male",63.4089478988436,163.074353392299 "Male",65.1020520682183,156.658459671895 "Male",67.7269564222104,164.933108061125 "Male",72.3106346028605,201.912662820293 "Male",69.4432551690944,197.645645149133 "Male",64.8768027516837,176.796108141724 "Male",66.975152007659,188.024718066127 "Male",66.908837369118,181.996286828824 "Male",68.1275769262105,175.636538177126 "Male",70.3879249547533,176.064870198970 "Male",70.5059273766486,206.44094248033 "Male",69.7695676029757,197.828357596479 "Male",68.4078481982453,177.110738810674 "Male",67.2940178575846,174.087727656322 "Male",68.2258227677972,175.670978633246 "Male",67.5335403786495,180.269693232838 "Male",74.4064813701917,220.720177027006 "Male",68.998446926877,181.941318051727 "Male",68.3423649083619,187.633463430525 "Male",69.0021652768888,188.330895833239 "Male",64.8338041314194,164.596581574972 "Male",73.0632933432493,216.040061430521 "Male",71.6016964982537,211.031651935789 "Male",70.2522527350803,190.916365269166 "Male",71.0157309402509,198.272093568884 "Male",69.3685765882715,187.571057528204 "Male",64.1256965813375,157.663617167938 "Male",70.5345782760185,204.418731071108 "Male",63.3990591811379,141.056988933775 "Male",71.4097165454652,207.303495880325 "Male",69.877147361429,217.994839569920 "Male",66.8753630492468,169.635640520880 "Male",71.2501360815194,191.067619588993 "Male",73.5739718915865,199.469319030450 "Male",68.1679352028489,201.438831024148 "Male",73.5750830263678,215.070870247718 "Male",69.8954037618712,171.919035546331 "Male",64.8794180795133,161.611017836206 "Male",72.0330446599993,209.573666911108 "Male",67.4057551244925,163.476510066492 "Male",67.6293765117623,177.429507082272 "Male",69.5503763773702,199.807846405863 "Male",66.3040376980219,179.759741725801 "Male",68.6974605884443,178.015094996932 "Male",70.5540467319427,181.679921764156 "Male",66.3401000010943,163.001274168673 "Male",68.368066311252,176.505303319986 "Male",72.3699335917171,224.603810671148 "Male",67.1921516361147,193.788816001288 "Male",67.5316570524766,164.004352795121 "Male",68.6186309848695,189.702187874025 "Male",68.5579507813317,186.064853856785 "Male",70.3001789602721,196.585057723116 "Male",68.9048510892203,195.408551100029 "Male",69.3820173803323,198.850085211327 "Male",72.611327294094,200.633687920939 "Male",67.5658637345031,178.371833700566 "Male",69.2364010619199,202.203230656129 "Male",70.0620961540313,184.505182791394 "Male",69.304977600477,193.529606316647 "Male",74.6870925952898,230.136923281846 "Male",67.5541980518356,172.870347001759 "Male",67.0478395971856,171.345745907840 "Male",72.7422091550301,202.873682756823 "Male",68.3561653489311,204.358874673228 "Male",67.092217087872,168.320498217950 "Male",74.2092159540775,197.474827622943 "Male",60.8202705373382,137.775310144586 "Male",69.6339697781423,200.342813718824 "Male",67.7306111200947,194.18044459866 "Male",69.7900894179377,194.400735358696 "Male",69.9899530101181,208.107782762267 "Male",64.4373753506252,166.490219384593 "Male",64.8035422213359,185.259530616791 "Male",69.5595271982408,197.188228018465 "Male",68.0026044356898,193.911524655417 "Male",70.4913724868496,203.285035100182 "Male",74.0538461289773,207.728204147378 "Male",71.8139752953244,197.802779117100 "Male",67.2716153306742,182.898115429334 "Male",67.5918946367521,174.434991417039 "Male",62.2946949169642,149.497251734629 "Male",71.9548677972,215.155762529435 "Male",68.414820467778,179.828343785579 "Male",69.5659947031846,203.215930022219 "Male",71.0890620694282,182.777412454632 "Male",72.1288256780905,216.216814748089 "Male",72.5413265923868,213.716956783022 "Male",64.7296155113039,161.952431163973 "Male",70.9594893867206,212.230144740824 "Male",70.7320604266085,197.811882243136 "Male",66.3515413194102,171.963792430396 "Male",70.6783761708838,203.274633071396 "Male",66.8548789146642,164.701103595252 "Male",70.1726093609949,192.631630023646 "Male",71.6150007183468,208.671871861817 "Male",70.2428159924974,198.199957603597 "Male",67.846160211572,168.067015324700 "Male",72.088510419573,209.532429389397 "Male",68.8868952755747,175.992018097055 "Male",69.7354421717841,196.218174027164 "Male",69.3303465194418,194.827390618945 "Male",68.5609875528216,178.691768606115 "Male",68.6307965197387,193.128832358554 "Male",74.0930974122164,217.712531331905 "Male",72.378675031591,216.938374463743 "Male",68.415251589545,190.128213590258 "Male",68.6109219180778,181.230543349614 "Male",65.0565885309662,173.434762345030 "Male",75.5724387360354,217.118015264041 "Male",70.340936458423,199.133426685317 "Male",73.4245096594727,220.207660219683 "Male",73.2794448452252,209.228853966766 "Male",65.3518889624403,172.567381412296 "Male",74.6863668071705,224.630423960364 "Male",68.9552800868043,207.744486041115 "Male",69.726859733262,191.211766237953 "Male",66.938626493497,175.942606656407 "Male",73.9953111954398,213.371576086756 "Male",70.5342018238768,181.855197361081 "Male",72.7716028203607,210.657667000328 "Male",69.633161690341,189.651557182534 "Male",69.7500324346538,204.179760964189 "Male",66.6611031108434,184.470442822833 "Male",68.8754238308693,199.994622028532 "Male",67.901808661601,170.846760280748 "Male",71.9705260493935,211.542784549023 "Male",75.4649926309027,217.971052703788 "Male",63.6646875052149,160.125909026144 "Male",69.1048034357093,184.901892345230 "Male",71.052778593152,193.999617046952 "Male",75.6986182493622,249.565627981400 "Male",71.1407885642128,191.44174460506 "Male",69.9228101460632,197.26637924836 "Male",67.7806016782241,182.611550308877 "Male",67.9859751370308,185.687955027015 "Male",70.7617524507795,198.655821530763 "Male",65.6359972889684,172.539082609337 "Male",73.8536626753213,217.886922005966 "Male",71.7920220563227,197.417014408726 "Male",62.1689692569458,147.859653364299 "Male",64.8071889528013,158.010842545683 "Male",62.7580191747154,140.266628386203 "Male",69.0014983992313,191.238945562397 "Male",69.719093297633,204.217022100385 "Male",67.559300556797,171.196984161435 "Male",73.2781836251718,202.279055505837 "Male",69.7727569152484,197.984766074009 "Male",70.88614442153,224.695162461364 "Male",67.5211171560713,188.409426189908 "Male",71.0521485106455,191.980253087584 "Male",70.3785389827948,207.795407831978 "Male",70.7986267026323,195.875839414498 "Male",69.4472097849116,190.447700798734 "Male",65.0906614319938,152.524792423902 "Male",72.6184085193962,207.161233261586 "Male",68.9686795966456,177.809028049410 "Male",66.5407893508447,173.474397365090 "Male",75.8190402827074,230.939454209339 "Male",72.2795167050262,198.836514614642 "Male",66.8541106775866,180.544376625543 "Male",63.6481439988488,160.875108800433 "Male",68.3799761433483,188.775536517828 "Male",69.6329393035072,200.562613220454 "Male",72.7046044178536,203.192182107662 "Male",73.7379282801458,208.162383941076 "Male",65.9344308820116,162.549680444354 "Male",66.6277502258848,160.117371390339 "Male",68.4698240786034,201.086014382762 "Male",73.4591841359929,211.789007861233 "Male",63.1836411236444,148.618673958965 "Male",67.940578352507,191.330652815400 "Male",74.7096124843703,207.243853998445 "Male",64.6383741461495,172.501320855784 "Male",71.1983161780362,183.637283815726 "Male",67.3960198498187,180.659638009296 "Male",67.3675535943183,170.477946458786 "Male",70.8371585589687,201.403402398429 "Male",68.515999087264,192.122242688462 "Male",71.1410478778114,211.816016520079 "Male",67.1981589640572,185.745590146909 "Male",70.7167503719475,176.955063189612 "Male",69.1848294664222,201.122190097214 "Male",73.4461872017863,203.240583689209 "Male",71.6499170962301,200.677163947353 "Male",69.9449860345159,182.346218481131 "Male",74.6976372029527,209.373125875119 "Male",67.8676651992023,168.817571526638 "Male",71.6908689267356,188.656335367107 "Male",72.2008873577522,195.275537730392 "Male",68.0988736639499,173.896236897721 "Male",66.5748867342449,163.241254688207 "Male",70.1907691564409,181.320105973850 "Male",76.4565780764772,239.581389419794 "Male",66.1416971142251,165.997434175877 "Male",65.9247410948696,152.949488391698 "Male",71.8480449921956,200.413424520015 "Male",69.1176573779058,197.491802106448 "Male",73.358436641133,217.389544639018 "Male",69.0526282274144,194.680901790180 "Male",71.865845248237,203.488800960605 "Male",71.8574874474702,204.422633460166 "Male",60.7988856121428,128.390221027060 "Male",69.0438666249045,181.377015019601 "Male",68.3088861450042,188.829591757712 "Male",70.9927345738887,198.636737557155 "Male",71.9424089171008,198.926513135479 "Male",69.94155395174,187.403600545410 "Male",71.9121190113416,204.780910475438 "Male",71.007888258908,194.080612217446 "Male",72.2819283450067,205.927099209038 "Male",66.2761384092256,174.209764123141 "Male",68.2484429572457,183.454229197182 "Male",72.3674921385285,218.394554707762 "Male",67.4955751464423,175.210297477134 "Male",70.752197577819,206.378365532734 "Male",71.6685570532706,189.392841331649 "Male",71.5229643054445,214.302464440455 "Male",66.0799589860269,175.547707873406 "Male",70.4741613870774,200.361281966151 "Male",70.950441232888,216.34113010094 "Male",66.6284354436438,159.482828827659 "Male",65.2646044561427,167.755869852531 "Male",69.7252073294272,182.481686860063 "Male",71.8537220901297,212.814664230367 "Male",66.9689359230578,169.392797057265 "Male",69.2307676438561,175.911589331214 "Male",65.2536708473629,174.943977756174 "Male",72.69525855305,181.325329135447 "Male",72.8139065054898,188.951474114366 "Male",66.577515666538,178.488156967759 "Male",62.5869716621146,144.641418170592 "Male",67.7678200273996,164.157890079859 "Male",68.4827075052988,174.455554221592 "Male",67.7280173908753,169.458093984868 "Male",76.6175459376512,255.863326492899 "Male",73.5752957686342,222.686143771868 "Male",67.6508442095371,167.864136576335 "Male",69.7548341761355,201.00854801062 "Male",65.7105998655828,170.900676935445 "Male",68.7689024072135,172.980946843261 "Male",70.6988955344424,187.368193287917 "Male",69.2080678412148,184.929293121148 "Male",74.633827265613,213.069042246911 "Male",70.3546168638415,202.034955305555 "Male",68.1156716635966,167.880720453114 "Male",71.0961130989543,210.821194296704 "Male",69.9831374596516,206.41441183225 "Male",65.2715625732843,156.579802693243 "Male",67.68008390976,169.611562032223 "Male",74.0674315170364,228.407444091575 "Male",68.7589926914302,172.094198548326 "Male",69.2523748147062,192.408896724658 "Male",68.8059345153141,174.239708246180 "Male",67.7454928656511,179.554213412234 "Male",71.4713872338541,192.929107075105 "Male",70.6552305807625,195.441863148289 "Male",68.3689798391143,187.923052494574 "Male",71.4697583311449,204.595732770733 "Male",69.3780372604957,212.017025587930 "Male",74.458497765373,209.94876840802 "Male",72.2785561512953,196.709024642257 "Male",73.0741805393995,208.058043324187 "Male",68.1092145934145,176.261190472641 "Male",67.4279615768796,189.404203156975 "Male",70.8214314938544,194.327152035254 "Male",67.2406988227067,176.746305447761 "Male",71.2236274423739,209.733538764472 "Male",65.7960499191064,158.460323820345 "Male",64.5208474624288,171.303495123217 "Male",67.4770312447816,180.294820634159 "Male",71.356628080496,211.395638565135 "Male",68.1763064567274,190.132725436454 "Male",67.4730988142564,178.365728160163 "Male",65.6569205746668,163.195116394641 "Male",67.7003580213677,155.162586782756 "Male",62.2088286210429,130.838073839864 "Male",67.4450805149459,186.838868203851 "Male",69.5790902343589,194.094561074301 "Male",69.9262412340003,204.875691679207 "Male",68.8610815030965,199.281311432827 "Male",70.943499589006,192.206150964704 "Male",71.5747233612873,207.816943794113 "Male",66.5028989134252,161.757176072928 "Male",69.011160640682,191.026743469822 "Male",68.0684949386101,171.056290533074 "Male",70.4199561065357,188.242982263771 "Male",71.2218282169113,200.708467329946 "Male",70.1857009860286,188.529396626822 "Male",66.4815974899995,165.589097549253 "Male",70.3892007063949,178.851348335504 "Male",68.8463098212285,174.887367132372 "Male",69.5666223421231,187.468986917995 "Male",69.2138739823169,201.527753115406 "Male",71.6784302176178,206.401780751861 "Male",68.5078149084514,200.87727945768 "Male",70.0593309810197,225.014367955245 "Male",70.9037444490067,199.362352527213 "Male",67.1143608404288,170.789162512475 "Male",67.6284843992187,174.865451365505 "Male",70.9874133207565,214.792992556764 "Male",66.8785157845366,175.366252001374 "Male",68.477456530666,187.205394744676 "Male",66.2670564801136,163.638150655659 "Male",65.7740120104543,156.968073866854 "Male",64.4613458971268,158.900434324327 "Male",65.8549627565603,154.965398921107 "Male",69.9027563992005,177.712966560632 "Male",69.1344005045772,196.330311649716 "Male",70.4816238228905,194.161782264978 "Male",73.5073600149748,209.698039292538 "Male",72.3147754051967,194.891588953445 "Male",73.7487510165311,203.999702807105 "Male",73.541184326439,212.030375733436 "Male",63.0944832212484,154.888895277244 "Male",72.2670868251364,209.633317284708 "Male",71.119087573139,174.552344065815 "Male",72.0057094040432,205.961922492582 "Male",66.7034796444077,189.430028578934 "Male",63.5714114494818,144.815032029167 "Male",70.6980120714592,187.018458438731 "Male",75.6828079116554,232.104476046529 "Male",68.1621465269653,183.232711788673 "Male",70.2252520013285,191.709066845333 "Male",71.5652564587241,194.721856413693 "Male",71.6576596011603,204.426255570436 "Male",74.6704347564838,207.908061632395 "Male",66.80502560959,174.335490583107 "Male",68.0245691600181,185.404851939128 "Male",68.2131444752004,168.168504168262 "Male",72.0595913647095,203.925879957815 "Male",66.7049804510998,164.179485990267 "Male",65.0996356494004,180.793710519115 "Male",68.2276145940888,174.712431932758 "Male",70.2775896278986,198.728522620424 "Male",68.9929940710554,166.795209231282 "Male",72.8176363279467,202.948003531212 "Male",70.4832883358863,190.522037427247 "Male",69.2651396159888,172.30039050559 "Male",66.1180620994522,181.014107898674 "Male",60.9667232822144,134.822826663623 "Male",66.0829084373533,169.617201955091 "Male",69.3382979522991,198.389549089506 "Male",70.7963452377364,192.293168460958 "Male",64.8415282349549,161.193051350145 "Male",66.9148940813195,169.882489592538 "Male",71.1965868763911,191.683842483212 "Male",67.6604230453665,173.384719262428 "Male",68.4961334362529,182.182992130117 "Male",67.1401859752249,188.848498569182 "Male",68.0311723088424,176.665352902051 "Male",71.0306169514211,217.490957724472 "Male",65.6249209440502,168.035235364942 "Male",68.6790348699896,177.521933002092 "Male",72.2642057730165,204.416126921461 "Male",69.8072752097695,217.18974145849 "Male",66.3981283772914,170.217451156822 "Male",67.590168231932,174.009152152765 "Male",71.0890956635457,188.116045768091 "Male",65.8199775510954,172.746364978593 "Male",68.5608541143992,186.401101170042 "Male",69.7186418095458,205.149302542524 "Male",72.0552070166135,205.676441963688 "Male",67.6525299734888,180.871137652334 "Male",69.7628785446196,189.828312637646 "Male",66.9163353055282,175.203934564897 "Male",71.6938805892545,196.726281981995 "Male",69.0340650960745,183.557049016817 "Male",68.6397698200344,203.005896094637 "Male",68.2112871008897,190.584200470746 "Male",67.4562718277839,166.39065630828 "Male",68.164232772446,191.830234706788 "Male",70.9468359659473,193.506341058435 "Male",70.686247451505,194.943655052901 "Male",70.9675854605587,212.826348541347 "Male",74.6046680483172,249.946283195065 "Male",64.9485459017462,168.534190221593 "Male",67.3926409938615,174.030954321797 "Male",70.6745173506145,193.55919238721 "Male",71.7035773054573,207.110572231481 "Male",70.6782077440821,205.817295757818 "Male",70.4736776514207,199.356143981321 "Male",68.4235864937691,178.620033231448 "Male",70.4180872399804,189.579472496520 "Male",71.6763671720677,200.20620696213 "Male",67.904421608325,165.763925844188 "Male",63.0061801676474,151.350571899256 "Male",66.8007189202471,174.988190526957 "Male",66.017591670216,174.612100076323 "Male",64.9098453269633,166.243922643802 "Male",68.5032610130771,193.982059494858 "Male",70.0247144837372,189.911964641080 "Male",64.5489720237124,148.787471303952 "Male",72.461527924717,223.315510189209 "Male",69.9639120678988,191.065447505672 "Male",69.3194375313327,172.455099569056 "Male",69.573259797481,191.547176722161 "Male",69.6743679475224,192.091677730476 "Male",69.2292191172492,177.592699608627 "Male",64.4483876826173,162.619097273375 "Male",67.4512093255625,177.845988319030 "Male",73.4948611201265,214.819847970880 "Male",70.9685634065889,204.410163253705 "Male",74.6955227193401,225.512386458999 "Male",68.1880966668789,190.268425459741 "Male",69.8560223215865,207.916686230298 "Male",67.1975110041172,177.313563708361 "Male",67.8417923970019,192.741685042469 "Male",70.8769871061978,218.231538558013 "Male",71.2431116560846,192.017261043750 "Male",74.4629865565583,219.812906452887 "Male",69.5532683769463,183.751097324621 "Male",70.6070255239616,183.577380543142 "Male",67.9456298131804,183.704177453964 "Male",72.185992275691,215.868613523803 "Male",68.0726530945031,177.554863409929 "Male",68.6403250785417,176.011959093185 "Male",68.8292162440198,200.330819451536 "Male",68.0201882652601,181.986734456754 "Male",73.6314305763311,215.554558736004 "Male",67.35327100956,171.160451955719 "Male",73.8418843982711,214.032503768682 "Male",66.3581208265962,170.053832577434 "Male",72.1735564385227,198.685021659980 "Male",71.408518163844,205.618956456024 "Male",70.6688631861614,198.02356346314 "Male",65.8381692148508,164.988985581497 "Male",71.7657992928584,202.230595607237 "Male",70.8687664141297,201.931535144540 "Male",69.8438130383337,188.686246513285 "Male",70.408748573255,198.738874084069 "Male",70.8256026765881,173.963577354641 "Male",66.6756070565549,183.438337284452 "Male",65.9869679343627,183.830964149676 "Male",68.5270580555406,170.888430806093 "Male",68.3120637440907,184.778847954911 "Male",68.2628496555134,169.225034720373 "Male",66.4755618527674,197.646409253487 "Male",64.3624802658162,149.457587374100 "Male",68.7713361716633,174.336609988285 "Male",72.4337460247806,200.085232523965 "Male",70.9520088674667,194.288669865327 "Male",72.5094255929879,206.749170891674 "Male",70.3818321073232,197.431510808387 "Male",72.3375692151384,216.713477707922 "Male",72.0566449899634,220.13451713839 "Male",70.0371149855241,175.978079815872 "Male",69.2425405584851,189.627852131872 "Male",64.3694533300218,154.008091361488 "Male",69.4949376644663,188.419220038699 "Male",64.608098550389,172.315967408525 "Male",71.411474860824,210.430610474423 "Male",68.7537907220922,175.367969918661 "Male",67.5175198384496,157.918618761967 "Male",69.4403382849517,202.308297333384 "Male",66.5343521839511,176.189278477426 "Male",68.089941436288,178.453013433888 "Male",68.0190781638069,174.265162856676 "Male",66.1747938937256,166.680607855786 "Male",70.8044088313543,196.268462332393 "Male",68.2125076940042,192.815177861212 "Male",70.6938408702887,199.962857108451 "Male",71.8970446424071,216.053051514245 "Male",71.279461772804,209.900130709698 "Male",65.0990352791908,164.258462124584 "Male",66.4889289859654,173.352455763600 "Male",72.0219745956485,202.746637492460 "Male",68.3630125681797,179.949089266523 "Male",69.9221433981034,181.731834175094 "Male",73.187758852763,201.219317713982 "Male",68.6440703335837,172.54858762963 "Male",69.8003600207724,184.292065461883 "Male",65.4207079382805,167.55203159963 "Male",68.7865740167745,175.838797375723 "Male",66.274407999872,158.387310490431 "Male",72.3875690410247,199.446899235481 "Male",68.0396163344462,174.369476434232 "Male",71.7603637271684,211.561669771946 "Male",70.9201445328627,196.835300359931 "Male",72.6956241876436,220.866365165126 "Male",71.0838599660559,207.585582084626 "Male",70.0913443174716,220.52341240301 "Male",71.6138860543854,210.039924523976 "Male",75.9811743504595,226.474034459707 "Male",71.2996563664132,199.272274753083 "Male",66.9168322971377,160.432210626658 "Male",71.1136247739351,202.993310739851 "Male",70.5983807298175,195.543444952148 "Male",68.5081861509006,183.647248251892 "Male",63.8447215674422,147.88701545115 "Male",68.8194304575907,184.718503166652 "Male",67.097417968484,187.098600429723 "Male",66.3265967615466,163.747154568295 "Male",70.0260594634301,200.917454307987 "Male",65.6419185352144,170.2141084504 "Male",67.2317042032661,186.274797055811 "Male",71.2939313747985,202.944771090379 "Male",69.4608263244162,202.970501103326 "Male",68.8970191650767,196.136269159319 "Male",69.6177637771825,180.506932024877 "Male",69.1376833523533,188.630073594756 "Male",68.6121161704564,187.739192919863 "Male",64.8211556438604,158.877273572478 "Male",66.9449989974955,171.105004357758 "Male",68.9395828813609,185.77874641179 "Male",64.0316883935576,157.850426617772 "Male",66.9330784510431,151.199152884171 "Male",69.7486635801118,195.241316060114 "Male",71.0942733128126,188.681388571309 "Male",73.0495953683893,218.711326951769 "Male",74.3490130557742,206.017285254686 "Male",70.1848772058531,189.915872272644 "Male",71.5269155551209,212.254428252453 "Male",68.8791273917068,171.850465105816 "Male",67.6758559007358,179.299232124016 "Male",71.7011163645597,212.039012006443 "Male",68.7920508077479,197.6794459518 "Male",66.6869926987119,174.739288176264 "Male",73.058463097391,195.5928859972 "Male",73.5426946138857,206.100367221865 "Male",71.8277766229144,198.973565272060 "Male",76.4728798657647,246.232321295104 "Male",70.9332502645594,213.244997948584 "Male",72.4395007512294,230.234109872155 "Male",72.099193048905,212.845611755792 "Male",68.2269692542835,192.451676424637 "Male",67.7600946371582,172.216450569573 "Male",61.7645093762568,135.544201374823 "Male",68.6949893379098,195.115896090981 "Male",71.477745102195,214.980507983321 "Male",71.6529255236951,207.069124877482 "Male",71.751476421859,198.119065756371 "Male",72.1623670923316,207.864317298000 "Male",70.4480202679973,183.238978419727 "Male",68.2570470197552,185.646596436309 "Male",66.8027823655084,165.110173087063 "Male",67.452861842561,160.009408617561 "Male",69.7815059522226,188.070801276438 "Male",67.4482236930392,174.387869104450 "Male",65.6928298091434,168.232586357251 "Male",61.7953263595716,135.894447504341 "Male",73.6083646890028,220.033778159626 "Male",64.181482934993,169.800144021808 "Male",69.3248580265385,193.279265476510 "Male",70.4047236835582,195.42271064384 "Male",63.0553014731148,157.437901555752 "Male",67.7048782109221,170.136428196672 "Male",77.4466199509585,232.651078874823 "Male",69.6746141599963,177.598009109881 "Male",71.1748137598859,185.212105043586 "Male",67.9733503743945,185.02505666042 "Male",68.9618876114194,184.025701322644 "Male",74.8609075999309,225.280819424265 "Male",65.7357738710417,148.140596531116 "Male",67.4450406758823,162.844519064920 "Male",65.9228221623512,175.424032286394 "Male",67.6615928273772,172.059555900311 "Male",69.6854831423461,181.936701352328 "Male",71.3214760232179,192.947873561237 "Male",71.3582106287526,195.937072750386 "Male",65.2827406626041,163.957634646130 "Male",71.5424912101482,203.783434776047 "Male",67.0641239541523,178.514819597391 "Male",63.9016449000789,140.434705425235 "Male",71.1651542686907,194.060584184096 "Male",68.2995558065346,182.233359674924 "Male",68.7928775408471,179.086529417514 "Male",59.9818650708608,112.902939447818 "Male",68.3620127243186,188.786166592441 "Male",68.2585698583648,171.350323500254 "Male",75.0099443270489,221.454089079376 "Male",68.4461922132042,199.382880743295 "Male",64.9854983591548,159.112310378071 "Male",70.7152956036217,209.161474219645 "Male",74.4305013107653,228.375178875481 "Male",62.2734014792637,154.280690719851 "Male",66.9047823374526,164.359962718780 "Male",70.1899992237606,195.717885138051 "Male",71.0777660029665,183.727095501776 "Male",76.1166746823735,240.638103496331 "Male",71.2767018317682,205.176109561169 "Male",69.3423664103133,197.217939751914 "Male",68.0467959728592,177.123991036941 "Male",69.2959320582737,172.346492962392 "Male",73.4912049380059,218.673755640913 "Male",66.3209674766257,167.214625512908 "Male",71.8732522912439,211.322776441833 "Male",67.3065748410187,172.065221180016 "Male",68.8785526310529,182.30909810641 "Male",70.7866950247979,194.695572528465 "Male",69.9844049710536,192.144110491612 "Male",67.6591095508037,171.702946081668 "Male",69.1624698844448,190.849070077584 "Male",69.2136324872646,205.699460639469 "Male",68.0006259917706,177.601802567899 "Male",66.3616356929638,153.321686194167 "Male",67.6714135494779,174.724534344994 "Male",67.7845379591434,198.311756175959 "Male",66.8630397625652,189.409124116844 "Male",70.8668694250787,199.657175172799 "Male",72.2447236216435,203.369881581884 "Male",67.6060586161904,180.254815838747 "Male",69.6984479981389,197.052357044188 "Male",68.0643489361753,188.37574625345 "Male",63.1182535820783,160.756703262985 "Male",70.5054568738792,187.135750244654 "Male",74.2979207026757,229.094316921744 "Male",66.5185887565785,167.076642378442 "Male",70.4656632518219,182.802806044838 "Male",67.6532703918937,182.481228574266 "Male",68.3243794678531,183.215209343242 "Male",75.5332113409862,227.945247678575 "Male",65.4782668048409,164.487098814841 "Male",71.3658959591733,214.99874505938 "Male",72.1751368510111,203.963892048091 "Male",67.4182407068399,166.542143207125 "Male",63.7032637399529,152.571178067106 "Male",72.089899249837,210.125958830038 "Male",65.5136231579644,173.178827365729 "Male",64.0111726170773,151.131314398232 "Male",66.6594928467085,182.746513591033 "Male",72.6104688843883,216.590561024740 "Male",67.006480129285,197.799299766309 "Male",69.667115169749,192.558899475879 "Male",65.0785235017764,174.743509598687 "Male",69.2182049384623,189.199501151371 "Male",67.2477025852977,188.002666869840 "Male",70.2149471583506,192.877485339665 "Male",67.1703593519119,186.988740323602 "Male",69.4376478885438,195.44738609605 "Male",70.6934242571042,184.941949261699 "Male",65.0571806094136,150.580878166379 "Male",68.3717836935412,188.427798427743 "Male",66.4164141686343,193.601091494664 "Male",71.1161766271985,202.655919318012 "Male",70.4338671580626,186.550232737993 "Male",67.7517760693441,188.475320267361 "Male",68.8219802859712,197.616787760036 "Male",72.6644055036027,219.877297797870 "Male",78.9987423463896,269.989698505106 "Male",67.175972358731,176.447504294775 "Male",66.7355917176637,166.251965359255 "Male",67.0461168780053,160.156115646141 "Male",74.0130064637048,227.940503751013 "Male",65.194751388926,154.741692711312 "Male",67.5271016627673,167.209586154744 "Male",67.7692941952837,170.296762912926 "Male",69.360059291613,177.742428212743 "Male",69.4356247137799,178.366554827108 "Male",64.9810856931893,151.013842658202 "Male",68.0377335547962,175.445138090546 "Male",72.3652287194522,195.01383683324 "Male",70.1336061249603,202.988055431583 "Male",67.9952003132874,152.622871806401 "Male",67.0405897586907,188.605099476104 "Male",73.1640798477115,213.509492257167 "Male",70.5751115437319,194.792540402055 "Male",69.157777848104,177.723979092692 "Male",73.9866900209496,217.579162265683 "Male",69.4463907052094,198.827817062209 "Male",69.47030446666,183.295606263358 "Male",71.5318020235873,218.203258217546 "Male",72.2843969186324,207.54051320958 "Male",67.7757429990539,174.098011857465 "Male",67.7998001022004,182.193273221945 "Male",71.0355954202262,214.475993981488 "Male",68.3951640033857,169.634399045072 "Male",68.7749864942673,191.476409599666 "Male",71.2340357837764,200.779898445710 "Male",67.4484173546206,174.720311987316 "Male",66.8567174373183,169.375820795168 "Male",66.183980706375,171.561906872241 "Male",66.8749067066368,168.449683646485 "Male",68.5910212089941,178.929042696548 "Male",63.9786612566585,158.207409568587 "Male",66.4831064273937,169.611473556961 "Male",65.8693714983607,167.768237390181 "Male",69.2127772206538,188.947625431233 "Male",73.5223109267346,212.866099174391 "Male",65.198863323951,147.360270291434 "Male",70.3362270993055,214.225885559486 "Male",69.7643008589258,196.014585086913 "Male",70.6803962691179,199.508656245495 "Male",67.9186456459956,183.543801407909 "Male",71.8835004211866,211.851700424867 "Male",71.127360865269,175.50776141398 "Male",67.0779311697598,181.526491908666 "Male",68.0233742761253,169.786696674258 "Male",67.9681327760678,194.953452707325 "Male",66.8777833476298,186.880959945505 "Male",70.3880860466344,206.902726781956 "Male",73.567046258289,219.403772607113 "Male",65.8065569179362,154.877629117978 "Male",70.5649669292682,180.476287057256 "Male",68.0859207359008,187.310481870080 "Male",77.4655691046729,252.556689436658 "Male",72.3935124291211,209.420947695632 "Male",65.438042517702,178.446423040865 "Male",65.9085274006312,168.221009034230 "Male",75.624031351581,241.202330051514 "Male",69.6434076511078,195.033700530063 "Male",69.7297501998193,205.228706404825 "Male",69.0106416889045,177.586828357483 "Male",69.0102193475529,208.536195228748 "Male",68.6981752201033,184.216697540227 "Male",70.4144581915074,185.157333965547 "Male",67.8888425328838,169.250230857150 "Male",71.5224187008527,194.264264366817 "Male",67.8399309381921,166.146108589911 "Male",70.2933874170617,189.249206322568 "Male",70.8273825769591,197.925353850612 "Male",69.1568941286959,190.695532793412 "Male",74.1478574749085,211.237967951941 "Male",69.3948962199594,192.708502929128 "Male",72.5976629480473,205.095540164959 "Male",69.3296028759004,180.358843274719 "Male",64.259747389958,161.311622031900 "Male",62.4184339174809,162.541691417064 "Male",66.2290956339519,156.676674742941 "Male",64.2373029407713,135.171792444257 "Male",72.0852995257673,210.636523766533 "Male",70.2483601066413,202.921363965856 "Male",65.8281957952779,168.421282630185 "Male",75.2090219800456,227.581431836074 "Male",73.4628048017999,223.07017786921 "Male",66.6289461179895,174.887786513081 "Male",67.1644730396849,193.392309166884 "Male",67.9902118820713,188.115112429199 "Male",64.1247670013316,152.838649831156 "Male",70.1769553931397,189.206850674596 "Male",69.5225670457475,173.976658825753 "Male",71.6088194274225,204.488412374024 "Male",68.2777592692468,182.205420082896 "Male",74.5646010757551,210.687811343022 "Male",72.6331067350844,208.066256946822 "Male",73.0060971576812,201.745667002798 "Male",71.9605479216621,208.815055822955 "Male",69.2844187964243,189.936249102177 "Male",67.362064268148,177.375007662166 "Male",67.2854464094672,179.009083297158 "Male",70.0941169135012,167.301408606857 "Male",64.3367925900582,175.683276108440 "Male",69.8688828446104,195.71469296987 "Male",63.9928990838624,154.963174147379 "Male",66.6931156219066,185.370620196101 "Male",72.4351612302368,201.614897367215 "Male",69.6765282240288,211.71338512852 "Male",67.6419890406368,166.263466663380 "Male",68.4148650588014,188.997022977755 "Male",72.0893613001118,200.435327304454 "Male",70.2450921958255,193.012051655726 "Male",71.370012820862,205.538501313755 "Male",71.1034552596694,201.849475093177 "Male",69.3756577139015,196.225085674717 "Male",70.1369472337517,192.782153682397 "Male",67.2815268578408,174.974135995046 "Male",70.7430825518542,201.129382197899 "Male",66.3675404602978,166.401886217710 "Male",67.225929825744,177.306474665523 "Male",68.269647594262,172.077304734761 "Male",68.1704946616428,178.719105244279 "Male",67.6727948973452,183.739947864270 "Male",66.4748368010421,168.897518041255 "Male",76.5692735211876,229.858095084796 "Male",68.9635344504657,187.519514498714 "Male",72.4463481555628,196.632239389221 "Male",68.0414607141863,203.161598329019 "Male",66.7174217170206,181.824686682987 "Male",70.6729106676447,185.75988375147 "Male",71.4729979957842,190.552372176071 "Male",71.5825546470589,207.924949003577 "Male",67.4217028687931,181.112349079167 "Male",69.5335958060772,200.677823835259 "Male",70.7645983316512,188.792456922384 "Male",67.6026625484407,149.5671682469 "Male",71.2382799033735,205.385709879611 "Male",69.5821133204446,214.606055462764 "Male",73.3658913151143,216.695992568754 "Male",73.498412325145,223.413224318441 "Male",69.4099946945755,187.084888803081 "Male",71.7878822732622,221.702505691943 "Male",67.5991155944152,168.826379194773 "Male",67.6710443857597,179.187251256512 "Male",68.5905627163459,182.081228596730 "Male",71.3527309913091,208.337046818561 "Male",67.9355070420684,207.683864875999 "Male",67.4380469454298,173.230659998737 "Male",69.9942899154843,212.056980674965 "Male",68.5175785353356,187.901374763361 "Male",66.6926712875303,158.733411950259 "Male",68.4813088502541,185.765866647311 "Male",73.9878545196903,200.584185743067 "Male",73.334107636586,222.866199735729 "Male",72.5608161732327,208.657945903000 "Male",67.6751478717208,193.5865353569 "Male",69.9385869453601,204.181186883414 "Male",65.32533031817,163.05514228224 "Male",68.1661063295858,197.179570385407 "Male",69.2627590362177,206.733530945646 "Male",70.0314406479355,197.692756439348 "Male",69.028915972653,174.479935117332 "Male",69.1422729406844,175.832446550486 "Male",66.7821872958244,176.611992901323 "Male",69.4541359481042,194.820667547117 "Male",71.45613950513,209.6777853537 "Male",70.3519975852191,187.820473129580 "Male",72.0881801034979,219.296601248835 "Male",69.2507757859547,176.251744913945 "Male",66.7003203830076,164.034219272782 "Male",68.074619757401,176.977425541785 "Male",63.4151658902191,156.129232829763 "Male",67.4275147301254,177.115331747636 "Male",70.5097942501667,191.357118845178 "Male",68.6635939323027,184.262796213996 "Male",67.1261355945304,170.043604968565 "Male",69.5146035094702,174.215001443927 "Male",59.9386496524854,141.459578916043 "Male",68.0252604758265,160.085290018413 "Male",67.6244772604476,193.769780239924 "Male",69.6677240187454,216.731633459018 "Male",67.3500077013417,189.58386209989 "Male",67.2407156671749,181.66223674898 "Male",71.3791800149684,205.872457528787 "Male",68.7001244073467,186.812060623585 "Male",63.3993496538682,152.130506079927 "Male",72.2187361478107,198.388265212198 "Male",69.9322707815918,185.787303663375 "Male",64.4895748475673,166.704316001462 "Male",71.5825515145273,192.727036250921 "Male",69.7119378069138,201.152847636991 "Male",69.968216193196,188.766505678706 "Male",72.2540714452639,187.612181934069 "Male",71.7953186765601,204.260258830279 "Male",66.9649019847839,190.373598547610 "Male",68.269014261786,196.843333927174 "Male",67.0359290230292,175.452167682807 "Male",65.7409721305617,178.106266737452 "Male",69.1230578419663,179.024645043399 "Male",71.1632216520385,203.279407190787 "Male",68.2096830916399,174.321828734599 "Male",69.4732270432208,206.744339245614 "Male",68.1447609508474,181.265824807129 "Male",63.458860002728,165.747828805705 "Male",67.5113580364166,176.085424269687 "Male",65.9373519436693,160.490289220020 "Male",71.8937415683906,203.220867405978 "Male",64.8041404853487,165.604490445990 "Male",71.7296112873384,203.621207666061 "Male",65.7045390313265,173.058822994667 "Male",72.858079634616,216.064745309942 "Male",70.2227782355916,185.945007739211 "Male",65.5628041481892,162.521915643865 "Male",67.4970151395353,178.786913695361 "Male",64.8211713800995,166.776837931805 "Male",69.5987769458794,173.922130447017 "Male",67.6719844516121,182.015225519155 "Male",71.9065923582893,212.876015229567 "Male",66.4520384909345,174.913816677933 "Male",68.1060020651049,186.582536426182 "Male",65.0779018941258,165.313806839966 "Male",73.0719769487447,206.79014203395 "Male",66.6565205921956,172.937957941029 "Male",66.9334135583024,183.085375588415 "Male",69.6129901512832,184.198451873963 "Male",69.1044985054162,183.404685767611 "Male",65.4826708328615,174.529056452169 "Male",64.7216222191692,150.61945722694 "Male",69.0304914203637,183.852038225363 "Male",62.9489510330904,154.059125493671 "Male",68.003463799582,186.369952686245 "Male",67.5251055082847,180.056549443701 "Male",65.1939877041466,156.286199055648 "Male",69.7706685472737,169.749522023692 "Male",74.8803080235834,236.360677960665 "Male",67.672652670073,169.810674958778 "Male",70.4896205409174,188.798292951655 "Male",64.4853902915506,159.378629571107 "Male",74.3974590270399,212.636167793697 "Male",65.0940645340457,165.862942977357 "Male",71.4107543170012,189.204802539803 "Male",71.6515242841932,184.98181425035 "Male",67.0040762692562,190.555592352721 "Male",69.3464738927624,181.851584428601 "Male",68.5365827248447,181.29525646113 "Male",72.6076974070845,221.175596114028 "Male",68.2358861491826,186.742654116017 "Male",71.1366968657054,191.317269283196 "Male",68.3236676403245,183.586860436387 "Male",70.5733264895945,213.059851128224 "Male",69.030771726533,183.728880770479 "Male",68.266586787432,186.289792971552 "Male",71.1706116015316,200.356641747284 "Male",70.3246996352912,199.013268539426 "Male",62.108640349289,145.768215981202 "Male",69.1551140432006,178.751727209640 "Male",64.2573893787447,158.028620579154 "Male",69.509323943647,192.594226632306 "Male",73.5846783015337,215.755104589064 "Male",73.4053573956574,209.260758499741 "Male",66.1664652340974,174.175176595102 "Male",71.8602732247586,198.407146347278 "Male",68.5865538742055,187.288478865185 "Male",66.6227393753642,166.631749453768 "Male",70.2887387369666,192.737926737728 "Male",70.4023192554236,190.828037444581 "Male",73.487295469423,209.974958477984 "Male",64.3601355568853,175.085125541678 "Male",67.7780817309766,182.164432334564 "Male",71.8432786362585,202.152955387985 "Male",68.9162928314408,192.632402702021 "Male",68.055400218734,176.249659285991 "Male",63.7703629870608,161.002115230281 "Male",66.8912382865693,191.102989265346 "Male",68.7838728276878,187.635463802389 "Male",67.803603739297,158.347245692258 "Male",63.2731514962835,143.248671752226 "Male",67.378319443287,186.677088387516 "Male",64.0629521897044,166.685112465687 "Male",74.0345977469417,217.815797987992 "Male",71.317651009031,198.75247096451 "Male",70.4094367996334,206.346938652321 "Male",69.5600329019007,187.491500656212 "Male",62.3467160461908,139.196621068627 "Male",71.3532087785568,209.309880125881 "Male",70.8688075125817,199.508654365893 "Male",63.7541488655653,156.460632901291 "Male",66.685825149981,179.297684282303 "Male",67.0548033920279,169.814525371342 "Male",72.7385925117877,190.282758630298 "Male",63.4724141868824,141.096824886518 "Male",71.1705874712953,185.051728818797 "Male",64.4645502964371,157.310480696028 "Male",66.408718905892,177.146418687725 "Male",67.2041088078578,168.982091609734 "Male",71.2535351070399,205.353927314775 "Male",66.4882661651719,170.989832607274 "Male",71.7234906243437,202.268277404949 "Male",67.9799625190845,184.374878270726 "Male",67.5811265877706,180.853935558147 "Male",68.0350952876528,162.124431514500 "Male",64.9637723936137,165.070582829592 "Male",68.5417285354561,187.321635984211 "Male",67.9508375310481,178.702061027292 "Male",76.8063436350608,227.220342792631 "Male",65.7634935034213,163.230840261037 "Male",70.3653926348662,185.297115112021 "Male",68.3125196930066,186.120002390678 "Male",69.4892466712537,187.843253324295 "Male",71.4961402371602,192.887289170862 "Male",61.2268286608375,153.520978630761 "Male",70.0240514023442,197.255376590188 "Male",75.9933603294536,231.347400923535 "Male",65.7399612130522,145.991682489195 "Male",67.3608239966572,198.893883187425 "Male",70.3998742879326,203.537194767087 "Male",66.3842319328963,162.017030191035 "Male",67.8565390825337,191.710332303504 "Male",75.6943140029078,235.136674227533 "Male",61.4610130865399,135.511115650790 "Male",59.3806495599258,136.391005519883 "Male",66.3928549260601,186.066678088675 "Male",71.0913321748536,198.030957907615 "Male",69.576571845724,192.466355504937 "Male",67.2855980659836,182.518199763126 "Male",73.6216771468202,225.293143906792 "Male",70.4562985483542,187.518140769157 "Male",65.134165695608,138.654827915664 "Male",68.3600721836798,176.413500728368 "Male",64.8463013698296,157.718438434822 "Male",71.1594004820348,192.351116685837 "Male",62.8131554356113,153.495897463749 "Male",65.6087684647238,152.913063657854 "Male",72.9658800157952,202.624892849943 "Male",66.0442680742162,170.79874387414 "Male",70.3410581098996,206.235470111623 "Male",64.9399896121834,133.511983471512 "Male",65.8732341058732,174.498555669522 "Male",64.6139756312696,153.281212195716 "Male",66.9835356404729,173.663573094459 "Male",70.019504685774,196.250331636822 "Male",65.105442700628,149.106918776500 "Male",67.2591979443731,181.673354241019 "Male",71.9800094541378,191.016162221626 "Male",68.4972345081854,192.339740712785 "Male",70.9471139157593,202.047112302666 "Male",64.6829084798005,160.789864174721 "Male",69.080666511316,174.391088447286 "Male",67.0476697285805,173.816373962663 "Male",67.1351749028692,177.984361143984 "Male",69.7426421173442,199.891271492252 "Male",68.8945293119046,180.691815546380 "Male",70.2534009734233,189.271868577753 "Male",62.307438525405,149.439096779242 "Male",70.4620129165386,185.021223481928 "Male",63.7149513282762,139.411145312383 "Male",73.4596099568632,199.868208976835 "Male",71.6483083070671,199.039288959202 "Male",70.1433861134691,182.832196917338 "Male",66.6415689050248,155.763813806818 "Male",70.7520120246337,197.838902123071 "Male",68.1525343485532,193.159348804157 "Male",68.9537194533545,178.287785533690 "Male",71.1208266236791,193.804892442478 "Male",68.847612185539,178.256907646413 "Male",71.3343489114511,184.520036987219 "Male",74.3402058830245,209.237513065822 "Male",69.3298515857457,178.954373950107 "Male",71.1045893455297,206.239749589886 "Male",71.5052062678725,205.883495751742 "Male",71.5796959944105,200.393123500352 "Male",70.3477552657045,194.328792059639 "Male",66.4023970655201,165.955934671191 "Male",74.5178760319385,201.957971666922 "Male",72.229902099848,206.223537862173 "Male",73.1060590461094,207.239547355378 "Male",69.558051898981,181.321297491082 "Male",72.658071600659,221.885941634049 "Male",65.7047738480621,160.203314026261 "Male",68.0117487265409,175.015090454059 "Male",70.18876718924,192.860019954761 "Male",70.839116270156,213.736135894646 "Male",66.0718645884626,179.704410058826 "Male",66.5581140816002,154.627588397121 "Male",74.5209720871559,216.533191277225 "Male",63.7324378928949,162.221023324056 "Male",69.8962171082176,187.056772431363 "Male",75.8501122218929,227.277965379289 "Male",68.388869473202,185.439840508362 "Male",71.008540415621,207.550279927852 "Male",68.2657235226031,184.988497969991 "Male",72.3919402692833,215.675265584521 "Male",67.1671943275299,158.46989586734 "Male",69.3789501193117,194.488942344429 "Male",68.4643740899053,182.904011737154 "Male",68.4329923224506,196.103082819615 "Male",68.9882868135247,180.365955212988 "Male",70.616362867501,185.444865293505 "Male",65.0385320500325,170.632537515233 "Male",73.0242056315614,205.281493175 "Male",68.7202431773936,182.455923303949 "Male",68.9253088352626,200.060003456691 "Male",75.1469078867175,221.329227716926 "Male",63.1542722595019,119.242855919903 "Male",64.4977259510755,169.841015617733 "Male",69.1694841724535,181.815921528124 "Male",67.1178740741552,178.266543425340 "Male",64.572896855173,176.718916993233 "Male",69.9818915473326,193.718587513775 "Male",67.2907755320768,154.718344015327 "Male",67.578739260442,167.581356732465 "Male",70.0306732915134,198.696298551089 "Male",67.285733279077,199.006613105584 "Male",67.7179469415444,175.159200203876 "Male",71.2524174586648,196.317164230109 "Male",70.9816065331949,191.138848069447 "Male",66.7989765317594,173.208632104584 "Male",66.3835760239606,172.741451887899 "Male",73.5135948991932,210.399769531925 "Male",69.3741611914573,183.936860264066 "Male",68.7206084483133,173.888102715451 "Male",71.5392985030705,207.307916607988 "Male",73.0691967049406,207.652627821709 "Male",69.5052293431528,187.368175986248 "Male",67.2688622118818,190.361496901964 "Male",69.0162747931198,198.707762313651 "Male",72.888870152212,220.908141910003 "Male",70.7109383642151,202.067981453202 "Male",68.9643667326337,181.537669681696 "Male",70.4721950619616,200.575743461554 "Male",69.0062973916329,190.818100843512 "Male",66.4464197394787,162.941041216352 "Male",68.8748761581227,177.133135520817 "Male",68.4231670839035,180.257979819171 "Male",74.2422931391381,232.23264687361 "Male",69.069036069054,198.772190696892 "Male",73.4010332774128,208.221064804361 "Male",70.2738215373148,185.718381426101 "Male",74.3408608692076,210.111536115141 "Male",67.705332854901,196.933267718119 "Male",66.4544411858916,162.811081805815 "Male",69.0557467034876,204.258750662721 "Male",68.0357238794662,172.436208796169 "Male",68.7637713606666,209.281454445367 "Male",70.8925193425129,201.418036626955 "Male",70.8658154487942,201.511537970608 "Male",69.2241151930911,167.738248191338 "Male",68.4395762706979,190.815684355948 "Male",68.2534867517229,179.252155716455 "Male",72.226732736188,203.390169329490 "Male",70.8468214026945,196.306309951181 "Male",68.7871342748427,187.952799687315 "Male",68.8747759608915,168.359034877323 "Male",66.7430038037071,170.662332411944 "Male",61.675406762752,144.763012787371 "Male",63.3312265883684,138.147593056833 "Male",64.914932300492,148.906905063138 "Male",72.963161157143,204.181096319557 "Male",70.0742964754103,205.387909895344 "Male",66.014958328424,169.099038408555 "Male",66.6837510636697,174.571334398574 "Male",62.4015335166755,144.545057014570 "Male",69.5872800833215,194.49835579945 "Male",73.0848942216874,230.678778196553 "Male",70.6489407806026,193.519854917824 "Male",72.3720657331386,199.376234589203 "Male",69.2634288100419,178.354124502323 "Male",66.2057152194741,167.629659838571 "Male",64.6028074324739,149.937712593204 "Male",68.3685971047031,164.903328343631 "Male",68.8907838942253,192.438686892985 "Male",65.0553035477947,174.355752142735 "Male",71.5360560807917,207.199559368969 "Male",73.0597785759867,196.059169371603 "Male",65.3353347489034,154.115056078303 "Male",69.7984568782605,181.418073997721 "Male",71.8987124231403,203.458766787122 "Male",69.8930377508689,194.532819194395 "Male",69.2602915436242,197.411781826015 "Male",68.5709291211613,192.606716690451 "Male",74.1530645069888,212.276327844442 "Male",67.5029664837143,189.006568648402 "Male",72.7934862727461,217.163282456028 "Male",68.9094912858568,184.615535693413 "Male",68.7205292483486,195.670171492147 "Male",68.3123418831717,169.780839733618 "Male",61.0744871038506,122.680111752611 "Male",69.5735915739679,165.784742409677 "Male",71.1650178616645,198.711519430380 "Male",71.7688224564508,182.07224175813 "Male",68.1619250144793,170.476126933133 "Male",64.8904252076047,157.249289180483 "Male",66.4732805906825,176.600529696569 "Male",67.1729318343523,165.026284456612 "Male",62.562141478974,164.051982770603 "Male",70.0497022922758,176.589379237761 "Male",69.326188964555,177.363587799360 "Male",65.6001784302861,146.334379431727 "Male",69.0775774988267,188.259134970082 "Male",64.8725705815475,162.310278328889 "Male",70.704093739471,202.910599271068 "Male",63.7447268654662,146.159211075878 "Male",66.1060379528454,170.262306089256 "Male",64.5643638232429,164.888434776875 "Male",71.993173644477,188.564977808902 "Male",73.0756565099108,203.809263328034 "Male",66.03495574946,160.193763825116 "Male",70.8032012227552,191.947799747621 "Male",65.204521937012,177.049658566176 "Male",66.2428166536137,161.680383359996 "Male",65.9964642618552,183.470679724807 "Male",67.5167678484563,158.113339678303 "Male",66.3070705425612,162.506036879899 "Male",60.2691078279205,126.455612757901 "Male",68.6971236647522,171.143030033184 "Male",66.7341709198179,181.493157652824 "Male",67.2732935501438,185.285081776391 "Male",66.560104631177,164.963433682578 "Male",67.5163696122937,173.520052717905 "Male",69.148775311209,182.753570178696 "Male",69.4161194172908,194.334751311389 "Male",71.6164758130122,208.339311634581 "Male",70.3109443106717,196.749787808627 "Male",68.3951917160158,197.787940433631 "Male",67.7776368682961,191.498220559793 "Male",70.4890526389897,174.042609528828 "Male",74.706964103516,215.225508792443 "Male",67.1157030295813,187.073883863321 "Male",67.6194866038072,194.518819453717 "Male",69.0713143436101,193.434664774821 "Male",69.4586625542238,187.910875685823 "Male",65.5195414396373,178.289459153456 "Male",71.4629608419721,174.347358666318 "Male",67.4242401728615,176.485090451344 "Male",72.4488466681926,213.359530360382 "Male",72.088106511736,192.820500467739 "Male",71.3313126649412,194.401079380422 "Male",69.2797032321474,173.273011526316 "Male",70.7687621567279,188.71103570989 "Male",65.4091468910957,143.418013320364 "Male",62.7889915181073,137.324178310072 "Male",68.2788418439826,183.429056469698 "Male",66.1089024472783,182.875348946605 "Male",69.0506381923026,191.522274876366 "Male",71.2120760243906,198.045548342651 "Male",67.5939622905641,173.830870073092 "Male",65.4090705909958,167.629078784546 "Male",71.273326413992,209.112998212183 "Male",72.4326175593517,204.564479012419 "Male",70.8577943188606,199.966387454232 "Male",70.1714787491531,192.347835853360 "Male",72.1227847321693,200.907146122523 "Male",70.0414169249094,201.546424499691 "Male",70.2466542328547,187.655698757810 "Male",69.4407539429827,184.436002879659 "Male",68.4483486280848,191.824596578723 "Male",72.6885141118863,194.241737568849 "Male",70.1711756121192,207.776547320785 "Male",73.4339533938154,218.692100035152 "Male",69.8956240742108,200.120360949887 "Male",73.1810749085631,223.397572330014 "Male",68.4112747746483,184.148654336179 "Male",70.116970128596,209.975992897927 "Male",68.5801272996216,196.419011993851 "Male",64.575075618789,160.165790971480 "Male",64.9115210174544,159.195105564942 "Male",69.6549653050958,189.609858053808 "Male",69.5824438336788,199.267861131506 "Male",70.035068335856,181.324779190868 "Male",67.1747147572883,178.674937818679 "Male",70.662339523852,189.139705683327 "Male",68.0000811333113,181.146041967053 "Male",69.1300382457198,179.006333462107 "Male",68.0500257764757,173.196265684568 "Male",66.7379274004653,193.726278474487 "Male",70.4417673016369,194.901770200233 "Male",69.3996495235908,189.939907896801 "Male",69.9476363051415,188.314969689569 "Male",68.7424575350868,188.757037229810 "Male",65.2191249894502,155.137550948868 "Male",67.5049012568772,171.975039175074 "Male",64.8451615525444,154.441122475824 "Male",69.1068982563448,191.148807911295 "Male",68.9574385961177,182.192512817545 "Male",65.5514242829528,175.898626877746 "Male",65.7524856447476,167.667058345196 "Male",67.5649415946167,156.181339882736 "Male",64.8280715241918,146.95451586425 "Male",66.1818786661366,156.490890700244 "Male",71.1728685612537,193.720043582488 "Male",70.4822308864686,215.487571789749 "Male",67.9790568899048,179.415810617979 "Male",72.3092648708471,203.24503016597 "Male",74.8140524727739,232.209377348429 "Male",74.0168971080304,207.710756876508 "Male",70.236489814395,184.277627751434 "Male",68.5285125548728,172.515038867338 "Male",65.386094729396,156.865743203845 "Male",67.2904043502669,185.857730988428 "Male",65.8926857716889,175.258072138987 "Male",74.1178821587467,217.354137242609 "Male",68.4870776141712,193.726609048864 "Male",71.456487434455,179.443186246513 "Male",69.2444455670418,175.232834842116 "Male",65.4935087932992,170.810300958355 "Male",66.8162553383686,176.830676963356 "Male",71.7987186685319,205.899263878253 "Male",68.0746232752868,171.695509695384 "Male",70.2123516263216,185.712759569799 "Male",76.8426788279609,211.724166456081 "Male",63.7247268700785,165.979417261085 "Male",63.222824740972,172.024814098477 "Male",67.1713740401178,158.368763158193 "Male",68.9497200019384,181.783259324536 "Male",70.4157303970418,216.214906264873 "Male",70.0985771391676,176.671149980511 "Male",68.2248597694462,186.197249914529 "Male",65.0717845477403,174.705111282301 "Male",64.6264020963261,135.894462208143 "Male",68.3745308889225,190.920242818057 "Male",65.7593989209542,164.086411397045 "Male",71.9484863946171,208.204435251595 "Male",66.7056733197167,173.957855841447 "Male",68.2790225238186,184.813909218697 "Male",72.9752100560429,218.572801626461 "Male",68.1312709424856,175.017649585535 "Male",68.6024127083851,186.965591006150 "Male",65.521632994187,159.936436035272 "Male",71.4290969498032,205.703629131647 "Male",74.1411082830313,219.051728320848 "Male",65.599913029659,165.229522729146 "Male",73.0358069121006,196.655011862858 "Male",71.0599558629686,189.324670708463 "Male",65.6611243670706,169.958789237495 "Male",69.5692353755488,182.866563183096 "Male",75.2594567571919,227.437138179421 "Male",71.9109115778848,204.031741317729 "Male",73.5416086953574,214.343290696445 "Male",65.3896290766619,178.437949265981 "Male",67.8947765533491,178.177298042261 "Male",67.919671377749,179.245883100950 "Male",66.6587633395239,183.171527834575 "Male",73.1817674817105,208.83916249552 "Male",70.1278873879568,192.081131356246 "Male",72.7317876678943,213.683943406133 "Male",68.9672247722024,175.552123767977 "Male",69.4750761769502,183.124801570931 "Male",62.1829285247805,152.791828342801 "Male",68.0485307533177,182.755815169608 "Male",65.5943017632295,171.224026973693 "Male",70.3302134803551,185.588740124496 "Male",72.5044101891815,204.627156418296 "Male",71.1547167578502,190.860975190272 "Male",68.005429002183,194.754189235412 "Male",72.979450587083,202.176783574756 "Male",67.7183933664317,182.361396476652 "Male",68.5222310437138,188.053333094449 "Male",66.3513311088302,171.685169645879 "Male",68.180093074225,172.962111007754 "Male",71.8787168799373,211.041211202106 "Male",71.7655591994397,200.800921111292 "Male",71.1535238540064,210.048406699503 "Male",66.0943192986516,175.648762705368 "Male",70.8158798619579,186.597895634720 "Male",71.3018406964116,206.164718336642 "Male",69.806290688136,186.673516437421 "Male",65.5223891849772,175.571312856724 "Male",68.5583535155871,191.088939684088 "Male",72.2674140170487,211.464487907527 "Male",63.5805658253015,142.174759588665 "Male",71.0447560719962,205.843338309040 "Male",65.678390073919,163.142051843036 "Male",65.2073466646762,151.875669056137 "Male",64.8381936073312,142.725871196537 "Male",69.9648106258336,186.451542800869 "Male",67.3785183467397,170.001347870670 "Male",63.2308119997902,164.502235058658 "Male",70.3753442005972,180.298356688671 "Male",71.6085597220403,193.070142165756 "Male",67.0875518839637,176.417238785546 "Male",63.9735571007627,160.063501695535 "Male",67.5754728091751,180.419530268538 "Male",65.1928622148426,185.348210815347 "Male",71.781995967799,205.169235058932 "Male",72.1002995643528,206.224026920736 "Male",72.3721936385913,210.187294028833 "Male",73.0992837673105,215.709114395579 "Male",69.9105345826093,181.591178707636 "Male",64.5608284830163,161.889769141679 "Male",70.3461044359,197.683319350645 "Male",68.5389783858712,179.571466448354 "Male",67.7893805121246,186.11903739595 "Male",72.629122695722,192.328966620348 "Male",67.1965191153681,179.209194759411 "Male",75.9468664416188,237.567608315894 "Male",63.9562257501968,152.645848084592 "Male",69.0126572462833,196.322531072484 "Male",64.9663466773012,172.524968877121 "Male",72.0553240378125,202.334695478699 "Male",66.976667906741,193.823778090071 "Male",70.2800864760863,186.922283676769 "Male",67.1931713444248,179.722743052527 "Male",65.9030878188522,167.616692609915 "Male",73.6968592231206,232.718677743803 "Male",67.974679560537,171.725456845952 "Male",65.629901787505,179.995123993462 "Male",65.8239507501989,163.585798539797 "Male",71.7158700011345,190.994310790650 "Male",73.5042682274291,205.473091074701 "Male",64.0323188386272,147.371284240101 "Male",68.2799077635859,199.602839934239 "Male",74.3387388213286,220.383448053015 "Male",69.8115195799813,206.285580615798 "Male",71.4179456442086,209.226566604938 "Male",73.29150846491,228.558785151439 "Male",72.087031565042,205.389055805672 "Male",63.9145410829098,167.842391509704 "Male",72.2473247514787,193.511695213042 "Male",70.5970245232896,188.4506741498 "Male",70.8656161119303,214.981393879642 "Male",71.9583877120553,198.404176487734 "Male",68.1537017938172,178.165801687660 "Male",68.929542399055,189.583425533766 "Male",66.2991930296065,180.201266068932 "Male",65.2735393556391,149.934606411734 "Male",68.4840293015593,180.896286583736 "Male",65.6415358932932,170.100647282763 "Male",68.8687503295272,178.818827668585 "Male",68.4594298086293,181.363397153935 "Male",69.3213053675037,194.330003140625 "Male",70.4643184519456,203.258480173709 "Male",72.6652418845385,219.09516559478 "Male",69.3396673761276,181.904824008691 "Male",68.5689593987114,185.975825102227 "Male",71.6178240738735,201.679351976306 "Male",68.9039419009733,175.445063361930 "Male",72.6645041014485,188.395182289828 "Male",71.3803112293486,217.368487922352 "Male",70.2811622513829,211.579496114353 "Male",70.7104060308907,197.060884068186 "Male",68.5212502601429,186.718801866057 "Male",61.740657718642,140.009978611136 "Male",68.7724639911909,187.550830706638 "Male",73.5686363372985,205.359460048360 "Male",66.5597303979436,179.216570220812 "Male",70.3097777619389,208.496496627010 "Male",72.5642205690907,211.766426777818 "Male",73.6898079730097,228.448826901403 "Male",68.1416418429715,170.799951410169 "Male",68.45706108374,186.208565777245 "Male",73.8389292762859,229.339511647714 "Male",66.6678935095837,176.882637427565 "Male",74.4006581136326,240.94226656803 "Male",67.7665131591181,172.66956644217 "Male",64.069492271936,155.344797788702 "Male",66.6351149391748,170.372215566906 "Male",69.3803026970744,194.749523524474 "Male",70.0019801481263,190.088062866182 "Male",74.5947363255385,227.116581954833 "Male",68.4613830882305,175.624619753943 "Male",69.5816999725411,187.028747460720 "Male",67.0477018673448,183.063058066491 "Male",71.2234233851763,194.941406763195 "Male",67.0735038044545,167.284904210123 "Male",73.1196932175068,208.578476343062 "Male",66.463444636652,169.965151554604 "Male",67.7863330273628,164.336269035969 "Male",70.3494997526009,195.971476927673 "Male",71.1257543950501,205.636049561946 "Male",72.2975838279981,212.058246979834 "Male",68.9553349088772,193.828444651234 "Male",67.1435095657555,165.143923827387 "Male",69.9667995979482,189.838617717709 "Male",68.5726842539187,189.126581719615 "Male",68.0929648474786,169.936600992961 "Male",75.8854331273875,224.133192020663 "Male",71.9916433891508,211.019112804057 "Male",68.4567543665949,185.534021112646 "Male",72.4670249302543,208.294588690205 "Male",67.73714618014,166.352335304736 "Male",70.0348210937522,174.324839218450 "Male",72.1929099784557,216.196483053183 "Male",69.5929425862754,187.863071139607 "Male",71.050918440655,200.734578094148 "Male",70.8095594700837,181.5636902091 "Male",68.0619139707749,189.368823710319 "Male",73.3909870598365,203.513414634719 "Male",75.3415841386064,218.533015522811 "Male",72.252704720084,205.234402993673 "Male",66.175870316724,176.479343050833 "Male",61.6784810166065,156.445474818204 "Male",71.8922178708786,199.829698644094 "Male",62.4768026980243,148.914287795590 "Male",67.9664064800478,186.606551866311 "Male",69.6934080122532,201.481471986313 "Male",62.9486815067409,150.670937904556 "Male",71.3594719071156,197.472655563994 "Male",67.3323783007279,187.708566102105 "Male",67.7796703221261,192.199788192446 "Male",69.1614040925226,175.296969396497 "Male",68.8632081958863,201.79550419993 "Male",67.075851920541,203.49368734225 "Male",67.3033862313183,187.346637246704 "Male",67.5246393181245,174.399730368785 "Male",68.5683746655455,179.795968121258 "Male",71.5665173364477,198.026785132530 "Male",73.2291160189156,210.545969530572 "Male",69.4398604703421,169.496510888749 "Male",71.6230975707903,220.337155483954 "Male",65.7685176293773,171.405225641703 "Male",72.7445445618532,208.381539189436 "Male",67.2312608515946,178.073055063128 "Male",70.8778262504891,192.349521779271 "Male",69.9628111350435,189.022745690670 "Male",65.8723498540595,178.216677929299 "Male",70.8591906944626,184.493250594327 "Male",71.5949264511216,197.887062757889 "Male",70.0509901129706,184.833519784275 "Male",67.5000671773765,175.879804411091 "Male",65.1486876162663,140.512792427105 "Male",69.0229741366314,187.568690225956 "Male",70.8219166778792,184.447666728551 "Male",70.8593468293598,190.799189796735 "Male",68.0544500023942,177.031906663830 "Male",69.8369766346359,186.283925066469 "Male",63.4920992472081,160.490300954204 "Male",66.6314017569255,164.059156735141 "Male",70.8846656569365,191.888042930316 "Male",67.3565979381263,181.372970577429 "Male",70.440713078525,225.797524697619 "Male",69.427611657233,196.249697812958 "Male",68.8451168683983,187.027828507430 "Male",71.3298978387032,196.619819738355 "Male",75.2828470066327,219.113209500242 "Male",68.3141883278045,174.243488335751 "Male",66.7787237253305,158.715870170122 "Male",70.5694550880664,185.963995077841 "Male",66.9911674234912,159.761656400265 "Male",67.608066531934,178.886204768114 "Male",72.7782097654647,201.185084766091 "Male",72.3582490369051,175.165507653974 "Male",70.6399789015695,189.809770041737 "Male",68.5621793113471,190.365472252670 "Male",68.1384263518259,192.570363041621 "Male",63.3931588374683,136.672643534397 "Male",63.6712878481583,161.578640664553 "Male",69.578030076433,195.322675034756 "Male",69.1019833071204,194.581051002032 "Male",70.9633688265073,178.55119125664 "Male",70.3596905601338,196.138027509672 "Male",69.2446403786744,179.366456640459 "Male",68.93206938145,187.626609141929 "Male",72.4227613520024,204.706101293299 "Male",68.4341193584622,194.607053071902 "Male",71.5958321642372,196.672556535149 "Male",72.970282502345,200.510726183031 "Male",68.7218244822965,186.425419562670 "Male",70.597420179817,200.372577544792 "Male",70.5440078477089,209.706729850380 "Male",61.1364754370795,125.827021940119 "Male",70.819303798392,204.580698547964 "Male",67.8379857277858,192.368777166558 "Male",72.3547717597445,224.603654842262 "Male",70.087753142143,198.702175855683 "Male",65.5139065810319,162.729848423525 "Male",69.3682213071743,187.333481356689 "Male",70.4347390270299,188.758432103071 "Male",69.1631877439559,200.606237588936 "Male",69.0824453501192,194.280065866594 "Male",65.625005629703,188.318587629018 "Male",70.2542610707768,176.048644141936 "Male",74.2618767906827,218.508338895266 "Male",73.4279700737196,223.190699773500 "Male",68.95308193894,180.482258816931 "Male",69.3095027322902,191.415025361841 "Male",71.9695979612664,210.494003253908 "Male",69.2636786808727,196.375781838728 "Male",69.3222239786402,206.077885072159 "Male",64.5710173368115,167.444140149937 "Male",69.6058825883667,187.531900174482 "Male",71.9778962599426,203.076478821740 "Male",71.3825768532746,205.545794719179 "Male",68.914254430953,186.714567782714 "Male",70.6471391547845,207.556408191843 "Male",71.5906840125055,201.611493751708 "Male",71.860624653893,202.906859257730 "Male",64.1496958890354,153.881377247791 "Male",68.0825461504266,162.510469344354 "Male",71.1879114486,192.969276085467 "Male",68.2600188146995,186.304599622142 "Male",68.1554664740712,179.253570060408 "Male",66.2702572454373,159.008991628002 "Male",64.7622593838677,177.224826339205 "Male",64.5944587099029,161.636100335791 "Male",67.4059505310382,158.753628516535 "Male",72.1177573565846,184.683527293819 "Male",68.1439825448122,167.29454214241 "Male",69.5520414173986,186.902312654022 "Male",71.8036685401297,196.206256661538 "Male",68.0717872785892,172.706258283303 "Male",68.5030556608283,205.891233824314 "Male",69.2416420300541,192.100036015839 "Male",62.807212179616,139.310570947475 "Male",63.7864019423456,169.072735522900 "Male",71.4586641035715,189.176174665403 "Male",70.3585219055563,201.601812203815 "Male",70.4392214845332,194.09613129562 "Male",68.3843868838641,168.153561193501 "Male",70.9494725324929,185.971650002441 "Male",71.1055775682653,206.493612895375 "Male",70.1352657255547,186.108408386061 "Male",60.9357397012703,140.151715704819 "Male",71.7023898005896,199.946154572196 "Male",71.1595359349137,197.258662277712 "Male",71.1270828486855,207.575178539761 "Male",70.4515850235969,182.85621286571 "Male",72.3633543160283,216.056503165273 "Male",67.9067632809089,167.726192282098 "Male",67.7249359840463,180.051856171051 "Male",71.7742059792106,190.408985001033 "Male",72.7967298380232,196.504136070637 "Male",70.4036733012705,188.594408168625 "Male",73.1431777100326,217.238225088706 "Male",70.4389286008299,197.17758847358 "Male",68.5220494533128,176.707355062972 "Male",62.4947330970405,144.461723373137 "Male",69.3258818591242,218.906557006405 "Male",71.9183019193573,203.846582041009 "Male",72.0631803415622,205.941639835332 "Male",72.7072240809875,204.365103834944 "Male",67.8948122354009,178.327235526801 "Male",69.8931506734591,200.120674175944 "Male",68.3191868840158,173.777186361387 "Male",71.7042175732941,202.995132804937 "Male",65.5403025125114,145.913544882471 "Male",64.8215038669723,166.12961409456 "Male",68.6903732515005,200.307314478977 "Male",75.4271605167415,222.183966911474 "Male",70.5937269076303,217.644149327757 "Male",71.0067486753143,195.230402860451 "Male",67.3634902857182,178.173833179945 "Male",67.1670215163877,186.354915991701 "Male",72.5880210913366,204.343186871633 "Male",67.7198142648655,171.731927542274 "Male",71.7737439924026,200.129819441304 "Male",60.936236039347,152.349379859679 "Male",68.2754914380131,181.454462321991 "Male",68.6502179585665,176.030067232873 "Male",67.8376080142153,185.733802058209 "Male",72.3919480375828,206.672708199405 "Male",69.3574910685678,187.401429968938 "Male",69.5081817430195,200.24247867568 "Male",66.9702864105193,180.636688869968 "Male",68.058837015473,187.779075398895 "Male",73.8475295776639,205.479367857883 "Male",70.4284737446407,199.144177535778 "Male",68.3606064047014,187.923291305653 "Male",75.1568785837882,250.317150668765 "Male",66.1187630936604,184.130541739592 "Male",67.7737864692234,187.163668614167 "Male",60.267190118023,132.948178886676 "Male",70.7796702953679,193.759932289639 "Male",65.1193493128246,165.839045167054 "Male",66.2146637464049,180.575334078804 "Male",69.0173775982,191.813673599935 "Male",67.1445299209752,185.787865358235 "Male",69.4761501521454,209.17758056437 "Male",69.7415958786736,183.676901945623 "Male",68.3045359435121,203.230651520549 "Male",71.0525589545229,191.007761650311 "Male",67.9629351447896,190.964765515607 "Male",65.7756583112014,170.219947470445 "Male",70.5459805769923,195.179269636360 "Male",68.8548567103192,196.719284222186 "Male",67.616382973757,165.955952926709 "Male",63.7640494873022,157.511938265132 "Male",69.7171379649828,201.471330687198 "Male",69.559053186111,188.241225678204 "Male",70.0089732579007,184.061795734488 "Male",68.1110970979283,163.700812006311 "Male",72.0934681212874,207.130108912299 "Male",73.0753448487736,211.114809685062 "Male",73.9036701988807,206.641216768758 "Male",67.0035558341377,171.536554598756 "Male",65.7388827173833,166.622732409779 "Male",63.8615537584981,157.413147081601 "Male",67.7826581132307,189.909671216622 "Male",68.0329083425684,182.741959980889 "Male",66.5282661653498,164.724934932117 "Male",69.3579763635786,200.941915713867 "Male",65.8769377809418,174.301247259743 "Male",68.3598740643196,194.466166022013 "Male",75.537221162046,212.008742592347 "Male",67.8020438310124,187.289802156572 "Male",67.8643122295256,175.602707870081 "Male",66.4998225910671,162.624327333045 "Male",64.9508117081588,162.900240863430 "Male",69.3534266660166,180.520579792551 "Male",67.9427850880266,185.009609592898 "Male",67.4486562662053,170.505748711461 "Male",69.6397376244276,190.251042014441 "Male",72.4452127194584,209.323421366744 "Male",67.4598988659109,182.629347823580 "Male",69.9481027786183,196.473753637730 "Male",71.6792949642772,215.875149258531 "Male",64.988090122599,169.409645165324 "Male",60.217018557323,146.956646118938 "Male",71.414336818034,192.573545548766 "Male",68.9146225978287,202.737714374539 "Male",73.6091065220879,211.460479807153 "Male",68.6895150998656,180.932595959431 "Male",74.3198902659849,210.041703167251 "Male",67.3520187546327,174.629994693538 "Male",68.3628584666732,189.203924505248 "Male",69.6836434210941,188.152167728974 "Male",68.8430120886585,153.468050364256 "Male",66.5502881782999,179.097248801662 "Male",68.9920786205981,186.025664909116 "Male",67.3185454961927,178.078360397352 "Male",64.9611799709311,164.295440778111 "Male",71.3635949081281,212.594865491945 "Male",68.7483882341235,174.654960984733 "Male",69.9150925357475,196.429542735612 "Male",73.972510658213,216.859756161093 "Male",69.0680880284594,183.581658567534 "Male",68.7469855161992,195.116243512739 "Male",67.9717209925306,166.311929952205 "Male",65.8060149938198,178.972481199624 "Male",64.5797174449321,156.917314173313 "Male",70.462302710932,191.920727299067 "Male",71.3305536715798,198.423279196709 "Male",70.968527555884,183.196713510058 "Male",65.2396350305159,158.61976108754 "Male",69.5012228835296,186.595514738058 "Male",70.192414255252,198.141175293546 "Male",68.4994406951495,184.660637079457 "Male",69.1918244334515,166.253275901213 "Male",70.563361050068,189.702969875501 "Male",69.4264826985682,199.339857106691 "Male",69.7778750693985,191.497898579147 "Male",67.4711699438224,181.552991717343 "Male",64.4345667470181,166.669569884275 "Male",66.900260454806,192.015678647341 "Male",70.1500203704164,200.147704905639 "Male",66.6870384699495,170.712229694375 "Male",61.6111205420045,136.668509038573 "Male",68.163315167029,194.177979499539 "Male",69.2195680048631,218.314451313483 "Male",70.065929679604,195.857013304231 "Male",69.8834508500669,181.674739027445 "Male",69.0338236669336,180.804449752242 "Male",70.7174393828663,205.549671597655 "Male",69.0827029866825,183.405526128932 "Male",68.4133661184686,184.010267120472 "Male",70.1022462080805,191.995692788387 "Male",72.1972301612506,193.790994645888 "Male",71.6369735696071,200.713270906352 "Male",68.647412310577,178.403969552575 "Male",66.3784113235918,163.783702801819 "Male",69.0721768756841,207.018104532187 "Male",68.8586802310066,185.540118616566 "Male",72.289596098559,213.896689527779 "Male",65.4897623984061,172.467087897332 "Male",70.6394505733988,210.798262631521 "Male",71.9591877482264,209.783979953586 "Male",71.053248957745,215.258776030128 "Male",69.780164148828,191.959128602238 "Male",69.4312591996592,200.2184902137 "Male",72.3112608811738,199.751429968704 "Male",65.8099119333478,191.563494836714 "Male",65.9149706573986,167.72262883503 "Male",70.6451908139862,204.868290709098 "Male",65.2341016680361,167.372980050571 "Male",70.1969204017049,214.004437733449 "Male",64.0683620999564,147.19719036458 "Male",66.8192507182576,178.169090523627 "Male",74.1123042062869,240.8517285055 "Male",69.0015374154057,211.124825201028 "Male",69.9966626904509,196.50774098467 "Male",67.4677707514482,170.484397384987 "Male",74.4466076176889,213.701377011624 "Male",70.119097746151,180.243708931419 "Male",68.7863163727577,179.937695870664 "Male",67.7272495705881,178.300512796430 "Male",70.8398723802529,201.390763412069 "Male",70.3327152499591,190.409829226301 "Male",69.4774099201808,191.76385209845 "Male",70.9672665637126,194.197812324396 "Male",64.1442217409307,159.633740321226 "Male",70.6646995099228,201.802788619146 "Male",69.4915234202537,185.683585728877 "Male",68.4891639587714,182.331487189421 "Male",66.9337377924034,177.60344566602 "Male",66.8571937563683,180.344335374479 "Male",69.8614390783957,183.813798258816 "Male",66.6952963994548,157.728114223695 "Male",70.5672238896023,205.281296152093 "Male",64.3285802013004,163.977237925945 "Male",64.9914045104988,144.551043767014 "Male",68.1289905812942,177.897336186379 "Male",71.9546801297194,207.693089133366 "Male",68.7332489637036,184.510023158701 "Male",70.9620420449436,188.730942756504 "Male",70.8995166962719,193.454164583137 "Male",71.8344661389853,208.693235554288 "Male",65.712982296789,162.291215156799 "Male",68.491311718304,193.458536971397 "Male",70.1203784006513,182.417416592148 "Male",66.8672456973977,166.398121654861 "Male",72.445633797004,202.993331043340 "Male",70.893889775787,194.687100760466 "Male",68.3093744572512,171.305465081297 "Male",71.5947829781187,201.260629439894 "Male",68.8791794591658,192.345052405555 "Male",69.3533197548637,194.450557167277 "Male",70.0371582171478,199.499124221591 "Male",68.6714646998142,186.129921985574 "Male",66.4673781407486,180.765908593914 "Male",70.2995853867691,213.472574289259 "Male",72.3502415960447,201.914847084821 "Male",70.3799320090554,189.717054272321 "Male",65.0109045236611,157.611469827764 "Male",68.1563118657056,177.003760055668 "Male",69.9237142098118,207.074912989175 "Male",73.4327364722673,208.870917718083 "Male",63.7202595179898,156.769607037403 "Male",62.2586364626978,129.291982421435 "Male",72.2101532208955,202.091037355264 "Male",74.2441239982815,222.246795350425 "Male",70.1146936218391,216.946546571983 "Male",72.2012036814976,201.877656555686 "Male",68.0928547589357,175.155597000441 "Male",68.0410545467272,186.057643771908 "Male",71.4228870725134,188.959904524735 "Male",72.8732032068169,219.026140872277 "Male",69.6418207897076,192.942067548301 "Male",67.684325532839,188.223099466658 "Male",67.3831359803017,180.092295787923 "Male",63.4187633663839,150.856910420554 "Male",65.2155559870031,174.931143238132 "Male",69.465858804757,192.978528624568 "Male",68.9307290750948,186.781003542819 "Male",69.2170091490298,188.089942149186 "Male",68.9416586042578,172.382546943496 "Male",67.4527672696579,195.154313749051 "Male",65.3764350085399,152.289839453128 "Male",69.6393119078689,174.157633322696 "Male",64.7904511350664,157.000463793552 "Male",68.8629875977668,192.027534217816 "Male",67.0832641697457,182.008910846813 "Male",67.0388652261268,167.912792643045 "Male",67.295350598399,189.809761363850 "Male",70.5491530734941,194.210823255243 "Male",65.4048857028292,176.155548889135 "Male",67.1101003447744,159.311291947559 "Male",66.8627250647371,173.532699084423 "Male",71.9553618381654,205.564071301754 "Male",64.0377595555002,163.048934465506 "Male",61.6258610740856,147.866824542197 "Male",70.9595910436341,202.116280036011 "Male",66.9118632816853,166.901514585429 "Male",69.2206683275423,168.521566689212 "Male",67.3747648517319,188.77215441011 "Male",71.541082249022,211.836464140572 "Male",71.8906646662965,203.895457654318 "Male",73.610215053458,216.402264467345 "Male",64.0963255375646,161.809544775425 "Male",70.9626171236153,195.017206431056 "Male",70.280271694611,203.465191838017 "Male",67.4444541091852,171.380602557206 "Male",69.4730963745151,187.120945229628 "Male",68.7436471208239,189.780275471416 "Male",70.901460796356,200.466281466370 "Male",66.6687269099779,157.48818323462 "Male",67.788799326341,173.643040393328 "Male",68.4570350328042,183.522520057091 "Male",69.509852369113,193.223196819712 "Male",69.7696044375304,188.844172398325 "Male",66.4872313451816,176.009083385557 "Male",72.7266201973182,219.133231049009 "Male",71.4901791634649,189.990127110246 "Male",71.4735705576821,198.077199385214 "Male",64.6394488390014,165.071396716903 "Male",69.689848438937,186.377447726310 "Male",70.0048866781933,187.716780027983 "Male",67.0328296969054,157.451539975264 "Male",69.885301125946,185.729441009546 "Male",65.3577593032289,158.043230120099 "Male",64.4450976718689,138.092635852909 "Male",68.2864257170627,181.404808371928 "Male",69.9364473254541,177.381766370311 "Male",68.3825216310947,191.593624389339 "Male",67.5109499047117,182.897360017505 "Male",71.8725840567383,193.138076765630 "Male",72.038944494344,181.290483845475 "Male",68.6889307087597,178.507499588265 "Male",68.6888551356641,187.322574823783 "Male",67.5591491239,192.957731294709 "Male",69.5156404511835,189.425072472240 "Male",72.2038769116687,194.867542885399 "Male",71.3057142971261,196.972717188348 "Male",69.6345266160616,175.390825124519 "Male",69.2063484445445,196.268707797904 "Male",67.1920760790597,187.114143580948 "Male",72.1698101464408,199.03956780688 "Male",69.6285565798632,206.017256740469 "Male",67.9008749867293,184.207415563849 "Male",64.766566005506,159.076587711134 "Male",69.0265010461381,180.702751395431 "Male",69.3804994951514,192.759875462793 "Male",63.0124453032331,162.690594098404 "Male",69.773920902644,197.628079004138 "Male",70.229470039308,195.146306947524 "Male",64.9357444096278,145.765027349235 "Male",76.2686678609258,247.38674101635 "Male",66.4634067938917,166.015738476118 "Male",68.4119528471094,179.427933239853 "Male",71.7810574220172,199.714420710854 "Male",67.3831525126228,198.550575484524 "Male",70.0951751594895,196.188048348087 "Male",72.7206032440343,206.396597039918 "Male",70.5505484693878,190.365182258908 "Male",64.4840241907055,164.646469755969 "Male",68.419982758101,189.603113989514 "Male",67.3967832020134,179.573295110834 "Male",69.7619298448695,188.955832482260 "Male",66.8118017540862,179.537041762848 "Male",69.3949917651708,204.586729668011 "Male",70.4196937664862,190.840498780827 "Male",62.6933238488153,153.889337017852 "Male",71.2016596829157,210.169870145623 "Male",65.0357858257653,168.618675855630 "Male",69.5758912724684,206.600442166756 "Male",73.7989360517566,211.764140768071 "Male",68.0880489605233,177.372815267237 "Male",71.4471936652853,192.914809354679 "Male",68.0376764552986,178.113252905524 "Male",67.7748703797821,159.08886542681 "Male",68.1791976790722,170.541400967346 "Male",72.990915597589,205.649920044037 "Male",69.907080582895,183.280806712051 "Male",68.1987958205034,188.202321094232 "Male",68.784717006336,192.407835423950 "Male",67.5683852020563,186.056729156222 "Male",70.8246427164575,184.516687556543 "Male",73.6824661606068,211.285555004193 "Male",62.9511502615306,145.694359366681 "Male",65.4558548230619,161.328227752182 "Male",72.7362929932649,211.170289060502 "Male",68.8402105649315,181.552558614164 "Male",67.4670859102263,162.475957317792 "Male",61.3285017825521,139.827983784206 "Male",73.3583829090763,212.256252827360 "Male",65.1594389659925,157.69050156762 "Male",71.9818297461252,220.757256110849 "Male",70.8638003729676,185.422777885581 "Male",67.6191962613368,181.905318555656 "Male",68.3382369019073,182.676041653178 "Male",70.34761712038,211.490800973906 "Male",70.4826813757293,197.287686243769 "Male",67.783782229416,182.621729823730 "Male",72.4606087939657,203.421675833258 "Male",70.4320483001562,193.237604666057 "Male",71.053367544567,212.110879184422 "Male",69.6229170546832,186.354367392259 "Male",65.6823645970644,186.270772730656 "Male",70.4276026086633,174.046350502894 "Male",69.5785254182889,180.714443779292 "Male",68.0849867358666,183.329033473548 "Male",72.6170375162674,199.056247019883 "Male",70.9569900553812,196.560307688201 "Male",78.5282104258694,253.889003841814 "Male",66.7759834012336,156.881099578167 "Male",69.2370515527964,197.560030950356 "Male",67.724181993054,176.269147813157 "Male",72.1405301177477,204.635439705712 "Male",67.7996452932454,177.786077589165 "Male",71.4566622698453,200.592581805722 "Male",66.0455071549084,170.237314321099 "Male",67.6738585793992,185.099404217225 "Male",66.7336340551268,171.524041744032 "Male",69.5859562372491,176.165703946487 "Male",65.12073518167,156.377043919319 "Male",67.4415352989535,168.431869160444 "Male",69.8160994668863,203.223323290572 "Male",73.4132064237389,222.220351964461 "Male",66.2225182302978,163.571042147135 "Male",69.940973022437,180.47345776757 "Male",71.8394427261804,189.032685065552 "Male",73.205342358939,220.663387279626 "Male",73.8468914828124,228.275180426949 "Male",67.3207762405653,163.292431968096 "Male",71.5240377431825,194.087869342880 "Male",71.3194280648361,210.270568536018 "Male",68.194200258067,181.028404236627 "Male",64.7037921187518,155.878194227401 "Male",74.8428746157352,213.334890879739 "Male",67.8904052054035,162.955173257109 "Male",69.3561086815591,185.916641885235 "Male",70.9510295871737,196.699671301864 "Male",69.1975479405903,191.542328945010 "Male",69.2679023087232,172.321311854682 "Male",68.824451540163,190.764014395057 "Male",66.9463010370476,174.166587147448 "Male",69.9208223571176,194.724702717296 "Male",69.133081397475,192.172136792121 "Male",71.8433084180584,196.505813604593 "Male",74.0668789221699,214.342465803496 "Male",66.6779015437526,174.741784443711 "Male",61.8903594991126,140.804101695825 "Male",67.2503832649139,166.594569919160 "Male",63.0087225302095,158.316027971635 "Male",72.0755228656988,202.849636858283 "Male",74.8852187331568,211.166267656408 "Male",70.6602496413011,185.755060391124 "Male",65.7378121171633,179.48949039803 "Male",72.7617106246435,200.507356240265 "Male",67.639214554505,164.583050800347 "Male",60.7210796557876,123.628359577062 "Male",63.8734089118585,152.554619713603 "Male",63.774862824128,160.627933946605 "Male",72.3621120218197,207.394830496583 "Male",70.406171630899,200.842246885076 "Male",68.6331574878612,193.937299203048 "Male",66.4047821689647,168.289126959861 "Male",66.3498816741056,172.734764801689 "Male",70.3550331221229,182.688091027712 "Male",67.5243275584397,185.299376887166 "Male",69.5588798202877,196.480848013769 "Male",66.0301759401809,168.875994011458 "Male",68.5078117197223,183.595058725788 "Male",71.2309315089778,198.066508069798 "Male",67.8804072160341,177.249146440514 "Male",66.8730344500532,173.061340380256 "Male",65.9522583451574,185.927996877053 "Male",70.0201124838092,182.564517970492 "Male",68.2957784061551,171.916742428320 "Male",70.0137797416633,184.374503622629 "Male",69.1705613879918,173.847925739409 "Male",69.77668670674,203.455105272185 "Male",68.0879038938594,170.125244838241 "Male",69.6082984727492,181.558603352668 "Male",69.7551069464023,180.167612941969 "Male",69.844205201139,195.892670872397 "Male",71.3041757282943,192.847099412231 "Male",65.3621653092439,158.877206213842 "Male",67.3288010426883,189.215790136331 "Male",69.8620565276248,191.913024974299 "Male",68.7684868652997,187.844857048172 "Male",70.2725823162492,188.916579069715 "Male",68.1689355527895,200.006437828300 "Male",68.7686446443589,187.706154021520 "Male",65.504822685682,161.745070770761 "Male",69.9933537684833,185.678101758984 "Male",72.3181720872865,211.761337882801 "Male",72.6596286970028,186.189999394026 "Male",69.1138284178452,184.338081904228 "Male",70.030762146807,205.847783596065 "Male",67.6555433886759,178.915940089694 "Male",71.1609046991552,194.379365806191 "Male",65.0777524600098,177.715214955184 "Male",72.5459925449438,199.168830256129 "Male",65.9249593087153,148.386418452028 "Male",72.3505008750601,203.042213035135 "Male",63.5296342406563,156.789293194340 "Male",72.3236985302843,209.450911024349 "Male",68.4662110111661,192.533340148004 "Male",67.7447069350451,176.264735539186 "Male",67.2974779422128,166.807838725463 "Male",64.0669565568624,145.86408599181 "Male",69.5296711701739,187.533674712581 "Male",70.106640863826,201.879429264648 "Male",66.7749163303971,161.559300847782 "Male",67.9575799142011,169.055490815102 "Male",66.7172738026057,183.715814848729 "Male",71.4151872458157,197.862665414347 "Male",71.4050703560096,211.172791103462 "Male",69.3292133983502,196.139533714755 "Male",70.9764907630517,199.809881461528 "Male",68.2055411243857,178.905299609104 "Male",68.793425111898,170.523536073805 "Male",62.453383131306,150.715885040710 "Male",65.542514323846,168.300029263155 "Male",71.428568577738,184.340747253979 "Male",69.0898022775605,198.410626705823 "Male",66.1937718059295,176.585339759219 "Male",71.146705499924,205.764891897379 "Male",64.9707184739898,166.753110888736 "Male",68.1456210090961,197.476929784559 "Male",62.6724869664439,166.102425028272 "Male",64.5263409447573,156.540928884023 "Male",69.4112054408869,178.591841606022 "Male",66.1665328921595,187.308370250510 "Male",70.1870204541365,182.904303662755 "Male",70.9822732131825,183.743104831437 "Male",69.7483715818259,178.502339612176 "Male",68.990680339432,195.42111622529 "Male",67.9939948307712,187.695368895699 "Male",69.1260223378865,190.692105263721 "Male",69.1639888671025,174.395147818847 "Male",67.9015149298272,173.915819257889 "Male",67.6914301738886,177.113345728953 "Male",72.4304688231764,189.179011191401 "Male",66.5296063374273,180.296519921324 "Male",67.3932285352018,185.556555102052 "Male",71.8161058100474,205.925139709548 "Male",65.5618740179489,172.808129352515 "Male",68.2810002068333,186.677678273241 "Male",73.6491383535261,223.289805871570 "Male",67.9349904164766,182.271021297224 "Male",67.429826997364,188.436837827009 "Male",72.0057660694562,213.070019345003 "Male",70.3968790273976,199.985201879309 "Male",67.9896120611209,181.782545607851 "Male",71.5832716350912,193.085491194987 "Male",68.312478317523,184.532865869033 "Male",69.5911798284485,197.363129548398 "Male",70.0949350684081,196.639266212491 "Male",69.7101762448349,184.055958773671 "Male",69.7414813542449,176.995816783479 "Male",65.4269828685912,189.943108953863 "Male",68.306625327667,178.628881386007 "Male",67.1782344074091,172.469625405963 "Male",71.6780546835656,200.896047890864 "Male",67.3917737722535,174.658930950808 "Male",71.6355006983213,200.755320338255 "Male",69.7165537336115,181.942890215534 "Male",67.1745720047522,170.302575341979 "Male",70.4357014075553,186.809199246236 "Male",70.7906321819446,200.364977928366 "Male",68.2317381094273,167.930407891267 "Male",69.7032216006146,191.703763489647 "Male",70.691597577465,184.689522521487 "Male",69.7813198293436,184.841583387451 "Male",67.9560489762333,166.552966199901 "Male",72.268322638736,207.585872586577 "Male",75.4410579317434,230.987021605729 "Male",68.5781313106775,181.487445778666 "Male",71.6753933986812,193.441744085767 "Male",68.7772149946257,177.356392951709 "Male",69.8414229527,190.270866412347 "Male",72.3844934101481,228.209886603237 "Male",70.3150493587315,192.967756253144 "Male",72.1162479633344,203.053787131399 "Male",64.7040110175763,173.585149761681 "Male",67.9927141677415,167.176045050284 "Male",67.4148608163448,164.867861691065 "Male",70.0657738714313,186.913937859903 "Male",68.4293723742355,184.252544069174 "Male",66.342742515113,176.309573680082 "Male",73.0059059772369,193.086474197542 "Male",68.205842610253,200.754487560994 "Male",67.1728284572243,181.886240895002 "Male",71.472055070747,201.448678960314 "Male",70.0143654838054,179.774158162484 "Male",74.4031992567184,227.824915619996 "Male",71.4537368927103,210.692147696716 "Male",64.0426247285427,154.423732932323 "Male",65.5597541871199,163.011692082770 "Male",67.5455697885065,195.860324468161 "Male",64.2178241001615,152.756689897132 "Male",72.5418967030323,198.733934415516 "Male",67.4973035428096,167.474748426274 "Male",66.6996060354192,177.292476610336 "Male",69.3846609362989,198.516606640857 "Male",72.5873748229986,189.104045711967 "Male",70.2885823619121,195.917873135354 "Male",71.7023601044284,214.787698329876 "Male",71.3300644834237,205.815358424294 "Male",66.7139500377788,170.065479451333 "Male",73.4121190256045,218.755755368872 "Male",71.7958086347472,209.128402587117 "Male",68.832327123595,172.269276632334 "Male",74.9719358130996,237.575313557795 "Male",63.275899191781,164.553854886961 "Male",70.8841087698227,190.554244038064 "Male",69.1398802205973,181.756130263158 "Male",67.2699937679887,171.474445787458 "Male",69.8935583319675,190.100836362948 "Male",73.6652736370644,222.528389858935 "Male",65.5288565491606,184.428199110272 "Male",68.5088511977406,191.395758926253 "Male",69.296829956567,185.649086336434 "Male",70.5422014229517,210.198844900926 "Male",73.9125491549722,202.429959589620 "Male",67.3960207821367,144.277671090823 "Male",72.7389699965634,187.222908934528 "Male",72.1771929263436,217.517537151141 "Male",68.9951071687184,182.898116863840 "Male",66.6688002718378,175.192720785303 "Male",70.8816081449114,181.988856370998 "Male",70.7764147622261,203.241192341915 "Male",70.071183691101,188.262995756588 "Male",67.0893022736261,164.548645662177 "Male",66.0675478969365,153.056657731588 "Male",70.8747915307346,219.801240634199 "Male",70.9962587566796,185.895287293008 "Male",68.7275729852243,191.608447395941 "Male",69.7596380733157,196.731371561523 "Male",67.3841806165813,183.540569026173 "Male",67.196187609427,176.950744485422 "Male",67.0712627748715,177.335254638963 "Male",71.2919759886533,187.964720563133 "Male",62.470602988714,146.045528108168 "Male",69.5416968515718,182.816421625060 "Male",70.090420510288,173.808421558347 "Male",71.1545758301195,194.38301107735 "Male",66.8813142648219,173.554645118575 "Male",64.9808500234197,151.449737418287 "Male",70.028869440849,198.095971593545 "Male",66.1458678659944,202.130274056957 "Male",73.2566806408888,205.575284102209 "Male",69.201759003463,185.258335027981 "Male",71.6954824916327,197.375665701557 "Male",67.7094384591199,168.919827100414 "Male",70.4189573442233,201.673083141507 "Male",73.5261650303016,202.310574467365 "Male",75.8244633444096,230.43823669816 "Male",71.3699900599603,214.283578818917 "Male",68.1464736642155,192.153701298245 "Male",67.1162590047371,180.825220467346 "Male",70.0530080136921,186.586027761307 "Male",65.4190814929917,171.935770913568 "Male",71.5938315174582,203.231489397679 "Male",71.6873915829994,203.561845923571 "Male",65.411491860328,160.969554932694 "Male",69.7621679000208,187.116817810077 "Male",74.2283244704298,219.709084885449 "Male",65.8575773848209,174.763421661818 "Male",72.9218709882587,209.748798893372 "Male",70.3651377165622,206.579524604729 "Male",66.2734170059562,178.614290572656 "Male",66.0894495244225,166.506640877559 "Male",61.3145252823968,149.877065730976 "Male",73.9760052424978,214.203286663676 "Male",71.9651578147017,213.697373670434 "Male",74.1336639229843,204.367106967780 "Male",71.603022737784,208.019660901643 "Male",69.1295121196834,206.838905290186 "Male",65.7658779335604,161.085465285848 "Male",71.8871841573019,200.299452078704 "Male",66.7283203894083,167.794963875779 "Male",67.2834652849401,184.116924387548 "Male",71.8160950208503,205.756373667806 "Male",64.784732603828,173.900510656103 "Male",70.0745963220627,176.612260252465 "Male",63.2344782294149,159.168232426291 "Male",68.2379523116118,173.263974263402 "Male",68.9797938140487,195.122147532018 "Male",71.6712553012472,213.105827076438 "Male",69.258554352234,184.654127863989 "Male",70.9134685594946,205.376736565815 "Male",66.2860528762587,191.279163405694 "Male",71.0409197464826,207.260633349837 "Male",66.2276849313055,169.250343217074 "Male",66.5850935042583,175.056233911292 "Male",64.8744426903976,164.092780848501 "Male",68.5735424597214,199.487271198336 "Male",68.9386792374231,178.209301402565 "Male",72.2523502437517,193.487309132651 "Male",72.118646751665,210.907435779066 "Male",68.3747952454153,184.634413540264 "Male",70.2535336797593,208.063890315076 "Male",72.5568249314721,215.282006684141 "Male",70.6060922182683,197.854673533081 "Male",69.926236680931,197.002452473722 "Male",69.6916891296127,190.145864881414 "Male",67.5431920536973,169.887039234791 "Male",66.4451469338002,163.293386740245 "Male",66.152837851189,168.263672809496 "Male",71.8022124979906,190.354210360156 "Male",76.4537196519925,213.732348152943 "Male",63.6312313419503,158.685876851254 "Male",69.2821378066052,177.804321027551 "Male",72.8542132005059,210.499350997964 "Male",67.0657558383286,175.088561856406 "Male",69.1428488099553,186.856967934112 "Male",67.383450736845,164.200352836151 "Male",68.9888352396799,186.035697036747 "Male",71.4527801632563,196.142630885838 "Male",67.1747664150677,174.356697449342 "Male",67.0711894162546,176.91257196018 "Male",74.1486445150526,224.935328570726 "Male",68.9163141794859,213.143153783936 "Male",69.9711567294641,195.237215570304 "Male",64.7391008503217,171.390033246777 "Male",63.5261937306465,154.124330818015 "Male",66.3401391578515,179.771695401876 "Male",68.9943278372994,199.782400694049 "Male",64.9919095501616,153.655214424155 "Male",69.713918636219,185.131222853729 "Male",65.3778490438432,171.141743401851 "Male",65.22037867453,161.719569770897 "Male",66.4413770025592,185.995470559149 "Male",72.5501873216986,224.747484520258 "Male",63.6128111159306,155.433246561107 "Male",68.3712696379176,185.536558599738 "Male",68.9612163361526,191.354179730734 "Male",68.9400392454081,171.910335234252 "Male",65.2316636955706,176.929981292182 "Male",71.6222661962623,194.419229822917 "Male",72.4729941947761,228.749628076241 "Male",69.5667671400081,175.448594726192 "Male",68.4010551268552,202.866092233022 "Male",67.9047009265287,176.632479457545 "Male",71.8554547201479,213.084104661612 "Male",69.513035537976,177.201552760643 "Male",69.6496606499686,211.914748371743 "Male",70.8896843546012,195.773075283178 "Male",68.8913457092014,191.881403466871 "Male",68.928716684663,167.415548932463 "Male",73.0771195839435,210.210137233834 "Male",70.1825897572044,213.67605429966 "Male",67.797073214846,171.241016685433 "Male",69.924374632472,211.740000564014 "Male",67.8932416856053,188.623549343073 "Male",67.290282944289,187.001020203223 "Male",68.5312196959252,192.525147558551 "Male",68.2679185313807,193.465097652721 "Male",66.4725634295799,178.302198281704 "Male",71.567979756536,177.924173628369 "Male",69.5631642082661,168.666735857766 "Male",68.054519051518,182.213524889990 "Male",69.9763973898253,197.916159286945 "Male",66.8227439750516,189.236103800728 "Male",72.4371503978542,210.705601793342 "Male",69.1763161496092,196.605301582096 "Male",69.3318001265486,182.123250244944 "Male",69.9442505668457,172.898850270504 "Male",70.2078017302564,194.205522589796 "Male",74.6045913696159,227.698982848865 "Male",66.9282666367389,164.230196785402 "Male",70.34760169895,190.817513434908 "Male",65.2398454104988,167.453172181989 "Male",66.4692190675672,185.692555335763 "Male",69.7016376399768,181.219880202299 "Male",72.2155368859669,212.11994212474 "Male",69.7403577153004,181.152034984095 "Male",72.1458518119725,191.874169287363 "Male",72.755214392232,206.710916509747 "Male",72.7908064849952,198.337249683593 "Male",66.5215365830075,165.442751105114 "Male",67.4459611572294,174.379363333192 "Male",74.5687317319457,234.809179633524 "Male",70.1234956383183,186.759015473652 "Male",70.485748777908,196.541177490601 "Male",73.375074609262,224.355489914698 "Male",67.8102511309367,170.457825627499 "Male",66.3727821088677,167.964459583 "Male",67.6188455918898,190.740873102623 "Male",62.557679831966,132.262980453140 "Male",69.0357575216808,190.214007962646 "Male",67.7531002440196,172.640139682114 "Male",68.2800864515352,177.630111723563 "Male",72.3461547935265,213.12967321174 "Male",77.0083360356505,251.425050545674 "Male",67.4952180527907,188.956673957718 "Male",67.0751932652642,182.241531585206 "Male",71.8202866818639,217.393962524059 "Male",67.8856481745227,173.598942323202 "Male",65.2166963455988,166.093503855355 "Male",69.3874864225265,210.485106047439 "Male",70.2093824317211,198.641636197926 "Male",65.9270721025651,159.281486102732 "Male",66.193759732435,176.019621604136 "Male",66.3422088539265,165.699391787903 "Male",69.7570066677427,181.155093365384 "Male",68.7538937820144,183.173493103944 "Male",67.0181793035546,164.893570410268 "Male",68.741348876554,183.401074600251 "Male",66.9662680128975,166.433244778843 "Male",63.9323068334758,158.925779374481 "Male",70.064167694791,197.178222709336 "Male",72.535578705148,205.561789340040 "Male",71.4342519497525,199.437922702396 "Male",66.2547135903433,179.252581891644 "Male",68.1237818059657,182.796933543627 "Male",69.4320194571414,200.341272203950 "Male",67.9302597276854,174.334468643487 "Male",72.1989792983851,218.063751401917 "Male",71.4708610793986,202.839156020285 "Male",73.7827953580717,224.630486182485 "Male",70.4024782014671,175.672962827388 "Male",72.4169729175341,217.722610111543 "Male",69.2378319798358,178.336603552245 "Male",69.6371894405707,205.297105488172 "Male",65.5387684792915,158.703141332814 "Male",69.48171426881,206.824928017642 "Male",67.8818894560776,203.454868633794 "Male",67.928135504694,183.475220126706 "Male",67.5053481366087,166.388727542124 "Male",70.712415303207,182.04572007037 "Male",68.9167884819936,170.658317975343 "Male",71.4014657327597,202.539217686743 "Male",67.0242427795819,187.769634861541 "Male",65.4482702587067,157.103232403777 "Male",70.4783148117138,192.793460165216 "Male",68.2333038132489,181.614111128035 "Male",71.174162576379,209.216320943032 "Male",64.4306958859468,168.795614634928 "Male",65.7407433964426,173.875963217753 "Male",68.1930117228479,166.521110878272 "Male",70.2840560244511,183.789892599096 "Male",73.3669329801502,224.717696461241 "Male",73.6956873393538,218.415504458001 "Male",71.856628833364,213.727914835904 "Male",73.8472936471559,208.357964070332 "Male",74.5834613176231,213.202605668609 "Male",70.0525106688094,194.974115927247 "Male",71.6240954279123,193.365913894133 "Male",68.9235738571774,186.492898108706 "Male",67.1556485489103,176.219278556831 "Male",70.5059653713676,214.26941396547 "Male",67.1017604014447,153.212462525188 "Male",68.0614872671051,168.519763118647 "Male",69.556342326635,174.856849524344 "Male",67.3053285575701,173.105548810837 "Male",69.6741827653077,189.525576663962 "Male",67.372491543083,187.194155275239 "Male",67.6012211231547,179.065049650268 "Male",68.4869511449693,181.500788788491 "Male",68.908949521329,192.428065822730 "Male",71.4151651623308,196.500492679805 "Male",70.0451697616832,180.424599217939 "Male",71.7124963122395,211.579158342379 "Male",65.0141475223805,162.127953744518 "Male",69.1566260268187,193.178917075216 "Male",66.5781653383685,184.755854794232 "Male",64.5904951486658,163.653647452837 "Male",67.882105174723,186.503549964805 "Male",69.8536641257162,201.866648524126 "Male",66.925723852764,182.802828488013 "Male",68.9826192280773,183.245915338138 "Male",69.1468943379911,202.242485332384 "Male",66.3122611250763,168.374071280025 "Male",70.5335505678504,212.435238249859 "Male",70.5768141296914,198.182717865879 "Male",63.9285190034928,154.260979446019 "Male",70.5568038677139,184.379448771756 "Male",72.6931754598046,224.807831827396 "Male",72.4428992070112,200.857658372645 "Male",63.1805101624924,144.773327446812 "Male",66.9539016472247,172.935390833047 "Male",78.621373968548,245.733782726093 "Male",68.55417937269,194.284740916442 "Male",65.0759669309302,149.333894318918 "Male",72.0420431381606,206.980896312816 "Male",67.9643399635844,190.363523332790 "Male",71.3522012311905,207.891509178371 "Male",70.451624265015,200.942722723972 "Male",73.6861703150793,220.711888309321 "Male",63.7671516709609,159.294090456045 "Male",66.7533700929135,181.923421850237 "Male",70.3524997977392,185.864594606426 "Male",71.9418367957432,198.672697481603 "Male",72.4107267625413,210.364091058104 "Male",67.7882964111762,180.077792220340 "Male",70.5787602090088,192.503206844985 "Male",71.4620387835147,201.903092142954 "Male",67.903612050282,177.352589754280 "Male",74.9917528047198,227.010084050185 "Male",67.8647472660432,202.441043226235 "Male",67.457132945158,167.554496152723 "Male",73.2493572298299,217.426659183025 "Male",64.2004025752315,174.873875622716 "Male",73.0423169118097,212.348964540199 "Male",68.7395071477266,199.842516075866 "Male",70.4956821075345,203.907421994433 "Male",69.1583443043667,155.324029293590 "Male",70.2657561365655,192.689381620611 "Male",69.8102913222406,199.681981039903 "Male",71.1770825871222,205.619480953876 "Male",65.4580307067719,173.816261106847 "Male",67.0317772687462,188.155622361558 "Male",70.2040812796259,199.704062687249 "Male",69.1215868729572,192.373651924227 "Male",64.2483526367047,153.120063448002 "Male",71.124285954398,196.278033964153 "Male",63.6174896345623,168.944897691471 "Male",69.4340291402995,214.588317240019 "Male",68.9505702951587,177.02318933412 "Male",69.3685618387487,182.093279408494 "Male",68.9128498978588,177.235863787699 "Male",68.2319485327552,176.583316750997 "Male",73.3628921811052,202.235567823986 "Male",70.0189303059104,201.213167700413 "Male",74.3088869487248,210.267888499549 "Male",72.1991428599497,218.292733091252 "Male",69.007422480103,185.879498039269 "Male",71.9681408427847,207.853053017636 "Male",69.417340325122,195.306359940358 "Male",62.9600113309438,154.434508300897 "Male",63.1748469058869,139.902071061690 "Male",67.7458038766475,197.923247726417 "Male",73.0371838336885,211.720856811130 "Male",66.3833199961678,183.239355850447 "Male",66.801285882628,182.775012149290 "Male",65.976074968155,177.339839216117 "Male",67.546418071752,159.557691967017 "Male",64.0728788500002,156.797857988006 "Male",68.9817188638453,164.721307430671 "Male",67.9973152231026,177.619862912849 "Male",76.7199849250776,236.146730225573 "Male",70.9668342907983,197.235840807583 "Male",70.3041042426717,196.190623010548 "Male",69.8703764170983,200.36663019857 "Male",73.7441928861604,215.162528642991 "Male",72.0311312584852,208.696207945507 "Male",66.1153862145479,186.848358765007 "Male",66.7764378234337,178.620052332972 "Male",71.4488814701957,210.204478888210 "Male",66.6371139056117,155.764454584395 "Male",71.8525372580339,203.620430705333 "Male",73.6149715862598,207.679028491486 "Male",68.893072235194,201.867678856593 "Male",72.7580540391032,211.749664066102 "Male",74.1955760229253,225.327779059732 "Male",72.4973905739619,175.172101098606 "Male",69.7517875420475,184.158554267461 "Male",62.202788951146,142.252545535624 "Male",66.8623927047375,171.733288383300 "Male",66.429741469109,191.946488427172 "Male",70.4105267336954,178.575510367281 "Male",69.9130099834792,188.353784160094 "Male",70.7875397672357,206.586964348073 "Male",70.1830830586539,201.378733803205 "Male",71.3078522150546,202.485157247497 "Male",64.853513183986,160.23940021717 "Male",62.7534911457975,148.102118487775 "Male",67.6185295009016,175.436511058618 "Male",72.9336393273722,224.305079170130 "Male",68.6766407867295,182.183981149124 "Male",65.2133918089393,158.851804819075 "Male",63.8289713844006,148.916937318908 "Male",72.107025915413,204.038125039021 "Male",70.2548469789108,213.903062821077 "Male",70.4549914645118,190.824937901440 "Male",73.0996864679129,213.43172840756 "Male",69.23425085558,193.071008990324 "Male",69.9094216434507,198.999408193499 "Male",71.0179478649994,203.860914092075 "Male",70.929547648062,205.695751278621 "Male",70.32349210341,183.821787651893 "Male",69.4960594475521,203.353900351092 "Male",69.078706734852,204.244873446668 "Male",75.0384115138975,224.303507469314 "Male",69.9587190695622,188.787360865428 "Male",72.4360097554835,207.637832718733 "Male",71.6935305416969,206.940726173686 "Male",72.6574044555652,191.928823483273 "Male",71.1823832672089,204.657403612981 "Male",68.9640508060485,192.858335833834 "Male",67.3421407592253,197.532280979268 "Male",71.7925237599894,199.8985003613 "Male",69.048058154819,187.46816242593 "Male",66.3249535779601,166.615538494989 "Male",69.6659635864823,182.387247100752 "Male",65.7406491037346,159.957495962827 "Male",63.9539583939789,155.993443496741 "Male",65.6417492791339,156.288168385739 "Male",69.053924064725,171.775983463814 "Male",66.4237753380541,167.393255098349 "Male",69.3223167407435,208.984970881189 "Male",67.9974559914588,185.123523721441 "Male",68.9152116618598,172.930340699224 "Male",71.6561754618086,202.530765233343 "Male",64.7683722627762,169.898732923490 "Male",71.3559021908976,203.37635393957 "Male",67.5532284262426,175.658896305290 "Male",65.3467679097834,162.687710272736 "Male",66.0745535978453,178.332049600864 "Male",63.9474170160906,149.329898452067 "Male",69.2314686833257,173.829606022707 "Male",73.884575949743,209.626572419174 "Male",70.2475311041381,190.882937250424 "Male",64.1178916502217,147.399589914605 "Male",67.0221444834477,191.874573127880 "Male",69.6748184754065,194.455593554963 "Male",69.2949121484848,198.956076591684 "Male",67.6984505178563,179.287031263939 "Male",64.6185128824824,169.021100731815 "Male",63.9777044983261,142.343711561615 "Male",71.2302284629934,212.752855482248 "Male",71.6388214240745,196.420170259723 "Male",67.0319802933961,171.732943347725 "Male",62.6429710950535,140.042018509502 "Male",70.6475141490876,201.2655905099 "Male",66.8882494755539,174.086875736044 "Male",76.2393666681996,229.294745824706 "Male",71.8271747900718,212.867963025049 "Male",69.0676816041352,194.822086911727 "Male",71.3012228276606,224.357532518425 "Male",71.5903472755779,210.046394665473 "Male",68.1332102674215,191.588221045901 "Male",69.8424545787291,174.213404449956 "Male",77.0673550156967,249.110241600421 "Male",67.2820244545793,182.269967984594 "Male",66.7960364899697,161.585591056127 "Male",66.1487831560917,170.793778489157 "Male",68.1861656592132,171.528338387337 "Male",71.8457779434424,192.39048440549 "Male",67.6242757404535,178.233066353302 "Male",68.6564917272265,188.589565709332 "Male",65.6055455395965,190.005414854354 "Male",76.5371613195285,243.267497419798 "Male",70.4401616680842,214.172512070730 "Male",61.5141294021722,136.471510645135 "Male",69.5036473738117,198.721843463453 "Male",63.820818667219,155.187428152435 "Male",67.1921025928344,175.590881865137 "Male",69.1025947094925,192.433733864839 "Male",69.1692908245573,186.306298774477 "Male",67.1518639381071,183.689826234423 "Male",67.8190821483444,189.720348321737 "Male",68.9162339563182,183.109209603338 "Male",66.116644596928,146.189967034633 "Male",67.4586851826768,182.959215858444 "Male",68.3319576911493,204.681430732802 "Male",67.7300813566241,175.953797048530 "Male",71.7817140738157,196.522152004661 "Male",67.2274450523167,182.546137959834 "Male",68.8026918034643,184.765811309672 "Male",69.5241003129209,184.109730174762 "Male",68.4823336773937,178.547208187336 "Male",70.5621887288753,181.186370917090 "Male",69.5693470420185,199.829282116170 "Male",64.7176246069987,167.111674312998 "Male",69.8274877880673,206.592175127763 "Male",70.7856278192419,198.936792160038 "Male",68.2296038311483,189.841976070972 "Male",67.030415060392,183.249614417679 "Male",66.634691023532,165.461382023424 "Male",70.4666227168029,187.283252209128 "Male",74.2930365320761,222.327978021071 "Male",69.256722458519,173.279165164433 "Male",69.1199197574605,188.983145752021 "Male",74.3837152826026,213.653765004901 "Male",69.6034980805977,193.726895637358 "Male",69.0199083087571,174.411741345279 "Male",70.7060075587161,203.190610671248 "Male",74.3504437288776,204.412959582247 "Male",71.1375729190273,198.824169852665 "Male",72.1237512378175,203.372965412860 "Male",63.4508577377362,147.445172214614 "Male",68.1853493768153,181.650971526375 "Male",68.8663022069334,190.385361121489 "Male",68.7292281916179,188.339285448556 "Male",66.7977398519111,172.530025424969 "Male",62.3325628205706,140.463266545205 "Male",73.2080258175756,221.779278560574 "Male",69.2724275439566,172.767898109782 "Male",68.9234125332813,196.274977170374 "Male",66.3137508476483,163.466629826812 "Male",70.9094620063586,201.358596039301 "Male",73.6400390073057,198.894295424992 "Male",72.8596390341845,200.991476274266 "Male",70.2250897904765,196.949125709664 "Male",67.6402901079882,186.935279969432 "Male",65.0612402249785,157.030391404326 "Male",69.6965667629509,181.206639603027 "Male",72.2865411552293,189.180183795342 "Male",72.9347673999795,210.054856010528 "Male",70.4289415163797,196.727035125791 "Male",73.8738922252638,217.625073057232 "Male",65.8560430168292,169.676266732480 "Male",67.479777540048,184.209501103775 "Male",66.4079457853008,181.901814348062 "Male",69.1198027872998,174.564806081808 "Male",74.317007993397,229.565477935106 "Male",69.5059599786522,192.842105715014 "Male",70.6486468783228,199.894169324319 "Male",68.1151663027618,171.452922070786 "Male",70.8816195863934,190.678519403256 "Male",71.4691849683880,197.416687271549 "Male",67.8170757985361,183.678674173798 "Male",70.5645414936814,193.321111841505 "Male",69.0509542873868,181.410663462465 "Male",65.5537970083078,164.515650945001 "Male",69.7542135903978,193.459981115456 "Male",66.648475244758,172.317508574215 "Male",68.1718753908101,194.990195228688 "Male",73.3391677575075,203.064741738865 "Male",61.4703691672621,128.724049595521 "Male",69.0122992512732,177.057807017784 "Male",69.8725029290227,179.664958614565 "Male",72.3161401866656,203.988287972572 "Male",68.6621442214813,178.085844481126 "Male",72.7834260157113,200.832792228216 "Male",68.6329563006384,185.538019698976 "Male",68.9196035164306,194.278450689546 "Male",70.9399735505669,199.648257930634 "Male",73.2743270977024,221.431073291153 "Male",66.3923064898095,188.191995852659 "Male",67.3933460662424,173.127460636371 "Male",73.9722780162461,201.205101528797 "Male",69.9573417230263,191.495526516890 "Male",65.4260781609568,165.848029266853 "Male",69.1180452520127,203.596695378063 "Male",74.3089606245795,212.156853976996 "Male",67.4349139491072,158.439049448593 "Male",70.0486672870582,204.779499250912 "Male",65.8482464315009,158.193446084243 "Male",69.5461086688239,181.671650812897 "Male",64.8742014693454,172.818716095951 "Male",66.0575516378233,167.982022512595 "Male",66.533872328423,159.656646762861 "Male",66.3430726365689,171.690124914633 "Male",71.602230803852,209.018700094943 "Male",66.1341753696406,162.682728759439 "Male",72.0772371138461,213.188863570632 "Male",67.3827771549597,184.716311734428 "Male",69.2014932770188,176.220869569746 "Male",66.7517235557101,166.366264560012 "Male",73.2810402497187,201.407019000057 "Male",68.5853149654815,191.026243931068 "Male",71.7787289334816,195.024268974457 "Male",71.3184340915254,211.983344399568 "Male",67.0840433478276,167.893176922926 "Male",71.4271438809247,215.154985406312 "Male",65.7699667927621,170.572520913216 "Male",67.412046032636,195.472663918172 "Male",65.8292966168988,163.105924049836 "Male",73.295350593677,223.870178030187 "Male",65.1861213914429,165.028012640068 "Male",65.3485896341496,156.274801434304 "Male",72.3564470019659,199.972455176131 "Male",66.9881287128124,176.198725184527 "Male",66.6265193462048,179.053683004071 "Male",69.081456752367,176.867604161727 "Male",72.109559993712,206.603433846240 "Male",74.7932882435025,215.235440192050 "Male",71.7943848783154,199.316043562422 "Male",66.1132419928436,172.403019419652 "Male",69.0395224965333,192.092449211837 "Male",64.805302885928,147.363350276346 "Male",71.1107821821191,184.144711111688 "Male",67.3325661747305,173.059213490754 "Male",69.0764356063413,173.363267679951 "Male",71.0903637209687,181.030637176652 "Male",63.9318040372715,162.247075758548 "Male",69.9222245807765,183.779095971085 "Male",69.7412396393621,206.636440218598 "Male",65.126893844251,167.300255680145 "Male",71.6082488278993,210.325952008248 "Male",72.9068175533633,212.799040453567 "Male",66.6870696361505,169.207323155429 "Male",69.62454974967,171.396663132362 "Male",64.0848340866297,164.462737014583 "Male",72.4363238272856,211.942717816643 "Male",71.2379681926701,208.494080766995 "Male",69.0550708370863,176.141893827807 "Male",75.553552225046,218.887283327876 "Male",66.8969915133392,177.573446455673 "Male",73.298338885144,194.948577135866 "Male",65.8640344749623,175.56257866451 "Male",68.7798587415388,174.579325278338 "Male",69.342607631827,186.206275034938 "Male",67.9644693970273,173.911384044234 "Male",69.2082410739386,188.384881861092 "Male",68.5091491736712,199.896558562946 "Male",71.0518734357455,189.594976663833 "Male",71.0478237814855,206.689585451311 "Male",69.5042374371988,188.665144898766 "Male",74.9769526518056,248.8488726642 "Male",68.5031915142394,183.731286117888 "Male",70.6267527240265,196.415983180694 "Male",67.3942812009941,168.520743208648 "Male",65.0424470905307,178.301600333992 "Male",70.8138900127919,196.348029154279 "Male",70.750805211364,196.296643499022 "Male",72.4995798036306,198.939997056035 "Male",70.4211836640729,205.465481239682 "Male",75.5794443353472,239.333840315283 "Male",65.1240419483023,170.056181810867 "Male",69.371178264009,191.405711075729 "Male",68.0747358888746,187.335136792891 "Male",71.9348431728697,215.280294898330 "Male",72.1211495572177,204.457450295104 "Male",73.912908382747,227.257086652111 "Male",65.6776085322676,181.382417042021 "Male",73.3796782646495,200.011262518687 "Male",73.7495365138171,197.605874735158 "Male",64.5987969022366,173.992094268605 "Male",66.3083725837049,181.98781574556 "Male",65.9741449195987,177.664315615015 "Male",68.602856206573,179.187804000123 "Male",67.1367592016168,182.962242783551 "Male",68.629930675173,184.289728965999 "Male",71.4841494097764,229.639861491959 "Male",71.5478186714699,199.797381303741 "Male",68.6175683940527,183.13822371098 "Male",72.6305940036647,204.761965470611 "Male",69.7438052049668,186.705759585163 "Male",66.6382533135472,168.039237104874 "Male",68.0172808705494,180.158380235136 "Male",70.6036801959668,188.423812318267 "Male",67.3667952725085,167.291994880019 "Male",71.789941614854,193.437528654870 "Male",66.4139667403527,182.710149533919 "Male",68.1713988260531,190.235688311971 "Male",67.9530162603119,181.595756618972 "Male",65.334074935713,183.769605369823 "Male",69.8576476952053,186.428481539558 "Male",65.8089913681022,170.704844471673 "Male",70.8966005150552,215.062268826601 "Male",71.5004477406619,195.476003211213 "Male",74.1613143798719,223.612953199062 "Male",71.9835519901657,215.453961443983 "Male",65.9789764412681,168.450365986034 "Male",69.0042995527855,196.362336212804 "Male",68.4651634393393,183.672869075466 "Male",65.0385030205002,164.330133205380 "Male",73.680958444381,223.609136475135 "Male",69.553012381007,176.282408555645 "Male",68.9210464703126,180.79742710884 "Male",67.7302749164575,168.545076355386 "Male",66.9504805967336,174.845396598486 "Male",69.5431163518097,188.090866648531 "Male",70.4477916623115,199.383452889840 "Male",65.7012443142669,173.211608727510 "Male",64.8127073004397,163.428121742457 "Male",75.0760764727887,229.233671294062 "Male",67.5429283763125,166.334796590382 "Male",69.9900983879953,206.660949042745 "Male",73.4317291499693,216.015176365581 "Male",70.2018896651885,192.528056808982 "Male",72.152093843505,181.243648063488 "Male",71.8189261546497,207.709155586242 "Male",68.2671032059243,190.469466185276 "Male",68.9936005179232,188.775621877801 "Male",68.9334261296966,199.632935051206 "Male",69.7465307640816,195.526568621515 "Male",66.2262530887009,166.052640868074 "Male",64.4997101773162,164.723130530328 "Male",71.1061963061444,203.983052809861 "Male",70.3341357383126,187.247847502349 "Male",68.0422060105184,169.430852318367 "Male",67.1128761229939,175.776350093822 "Male",71.8416851655764,207.957832473152 "Male",71.7436748646054,197.936832130393 "Male",67.4495010651725,192.585560750949 "Male",65.7157085786502,163.008036874116 "Male",69.3753243425993,204.973546938437 "Male",66.643246902504,167.813501531290 "Male",67.7799121676394,173.387966081254 "Male",73.3658506177066,206.033858632294 "Male",69.1571915097223,185.414435390982 "Male",73.7421445984726,199.513071075091 "Male",69.701668481179,197.350489259023 "Male",65.8448804890073,164.276917855489 "Male",75.4563283585185,206.503557529833 "Male",65.6826550678392,180.490439873199 "Male",70.4335879900971,199.06839753 "Male",72.2037937631139,195.576430204512 "Male",71.0355086391,192.756097368058 "Male",72.464759914417,225.633703427390 "Male",60.2437181028691,153.831429216947 "Male",71.4840745803273,193.009757912692 "Male",68.6265969129178,163.387454914258 "Male",70.642802923956,187.506566365527 "Male",70.1098295752512,219.857610461200 "Male",67.1334442916497,175.152372753389 "Male",66.8012409799403,175.043755479441 "Male",66.0543772240985,162.517072642348 "Male",65.4421255751776,169.379709559426 "Male",68.6537780569762,194.939858305624 "Male",69.5339449884536,175.818974977575 "Male",73.9338806181208,218.550093254024 "Male",68.0415276766908,185.183339389795 "Male",69.827310105956,200.232020572465 "Male",68.5701254397349,192.329282181503 "Male",68.9855539478644,186.341902051518 "Male",68.5168794396837,186.362411645933 "Male",70.1089904322315,184.135436160748 "Male",65.8254451927654,156.804215038989 "Male",66.2823017245277,163.836439171189 "Male",67.7214921667194,177.663755958389 "Male",68.6730422761976,182.163561701064 "Male",72.8666729122285,215.453272816054 "Male",68.999607560707,171.409465241574 "Male",74.348485150254,210.369030639573 "Male",70.8794672489916,186.270382988466 "Male",70.1878493105397,194.400248420937 "Male",69.351832242262,174.359598738334 "Male",70.6810437360309,195.985898110075 "Male",63.7691149798678,165.701730944036 "Male",71.2536148826262,193.829564444462 "Male",69.3850625328453,194.615457891224 "Male",71.4643326881547,203.632951634329 "Male",71.7856156071885,192.550820558374 "Male",65.0054061792742,152.801310681396 "Male",65.9756468309282,178.295096132824 "Male",68.2807475988903,178.062364738300 "Male",67.6811164490451,179.131733758258 "Male",64.6006005377932,165.463352397708 "Male",71.9543552002517,205.012924750896 "Male",71.6537033892934,203.560177162322 "Male",68.4449674035786,170.046480059318 "Male",63.8530119602319,163.020712290409 "Male",67.9451830843268,176.935955204858 "Male",68.7895393943756,176.936187302851 "Male",71.5952389944303,207.796144117030 "Male",69.4989464774697,197.456280496505 "Male",66.171479665222,150.023472711261 "Male",67.2402582750194,180.410028167943 "Male",71.9886269995038,203.619892177037 "Male",66.8580051449311,177.403382388963 "Male",67.5759710489801,175.891959595933 "Male",68.9919775552593,194.350108768264 "Male",74.6290981211044,226.892153616578 "Male",70.8121622451816,206.293369554484 "Male",70.8535496255446,195.251666491753 "Male",68.5507144535643,197.011049712799 "Male",65.0383833813307,154.104776734366 "Male",69.9892052553004,185.845964022221 "Male",71.9937450614421,206.337325448888 "Male",70.3985435860698,179.424881771189 "Male",68.4137911385991,194.385230284124 "Male",67.0861118731947,177.543107576026 "Male",70.8475808780624,195.969325053707 "Male",67.9075589075407,179.310232906941 "Male",66.3529082736873,172.301393950189 "Male",62.4762567176972,140.160658613611 "Male",67.0600208165061,187.725678368781 "Male",66.7560292174062,165.989782092878 "Male",70.185950915161,188.001394221727 "Male",69.2112071037496,183.096624151011 "Male",71.1765712130773,204.47592322294 "Male",71.6354070267975,211.607861393655 "Male",70.872811462741,179.368529700098 "Male",72.1895620404837,214.686484468206 "Male",64.3984832271446,146.683845559696 "Male",67.6943047368205,178.159153413349 "Male",70.475543576638,197.894757432703 "Male",71.542832896417,204.716798447032 "Male",70.1078517456433,199.451431257303 "Male",64.059623006241,161.015154591803 "Male",69.4627154392701,179.697918533356 "Male",68.7930601669446,197.114929937545 "Male",66.3595061199446,166.122860775823 "Male",67.2498003057156,182.842746657182 "Male",71.9701401976461,206.823605271503 "Male",72.7152245437666,207.24658122651 "Male",65.1865694174926,172.453691601477 "Male",71.5670024732117,211.153566451220 "Male",65.840638295757,162.484866133794 "Male",67.942327464776,169.927496823046 "Male",72.5583724718679,198.809186864260 "Male",69.0962029934429,180.78017477071 "Male",65.9340903421704,157.706693721179 "Male",63.8071784549547,167.362944407411 "Male",67.319520128829,177.16161181273 "Male",71.8795384923435,196.638566065010 "Male",68.7042590395085,184.277158793982 "Male",67.9346615924944,182.688022191678 "Male",69.2698292892284,175.046841795658 "Male",64.8682718320948,163.198206099379 "Male",67.1800452753145,177.821657075053 "Male",73.1586418690673,230.994904705117 "Male",65.7553236599575,166.965345014142 "Male",63.3697644893544,141.901777414332 "Male",76.8668549581823,240.536796698663 "Male",68.2710499073989,172.941248241725 "Male",65.4808580990564,150.292307200069 "Male",71.4081522081335,208.059373566721 "Male",67.678644043458,186.504349407445 "Male",68.6713910540146,170.431873368585 "Male",67.2409041032986,174.295299596564 "Male",64.8150085176793,159.940417052520 "Male",68.023799653567,180.128532379147 "Male",72.7469167831248,204.614317732258 "Male",67.5383087679076,181.865044346081 "Male",71.7599909290842,211.480853499342 "Male",66.2872442901916,180.914926525865 "Male",75.1847948257597,222.475210974731 "Male",63.4886836517284,156.732431299329 "Male",67.2300135468972,163.476266634742 "Male",67.7958934057648,169.039215418834 "Male",66.3818587336622,172.781824110699 "Male",67.1958155305088,194.235438031997 "Male",71.4807287997842,202.671539299672 "Male",68.1790660556521,165.113235363145 "Male",73.2945837202624,225.260179000951 "Male",77.1008721027022,240.455351800759 "Male",62.605034873978,152.726549748073 "Male",69.5761714022238,203.289127006805 "Male",75.4236865563582,220.757114442976 "Male",63.0902897651848,140.517044492207 "Male",76.6909627296268,233.1586923868 "Male",66.9276689663426,169.535121116643 "Male",64.1164285273487,146.237397860166 "Male",69.5783300161394,191.377252247276 "Male",71.1902992551411,183.845507094266 "Male",67.519372152622,200.897021073657 "Male",73.1930084082932,206.750503917448 "Male",71.6256009036064,179.753943802224 "Male",67.7685968800007,190.320218810512 "Male",72.2751824966983,227.269347547858 "Male",65.4181191974688,160.736645446975 "Male",69.5438003916511,207.874838789751 "Male",68.7912043849282,167.670428882281 "Male",75.1812608641992,218.513276857409 "Male",72.3088137820774,209.455552279001 "Male",69.326932139984,212.289297441882 "Male",64.9305300745508,149.837680356683 "Male",69.4862874005581,199.534131277679 "Male",66.7904794483487,186.930370461676 "Male",70.9617877127908,181.050984276392 "Male",72.9932971547313,190.904148445298 "Male",71.7323427196252,198.635976259846 "Male",60.9720323052125,150.865014390545 "Male",67.524889145181,177.020905756561 "Male",68.3146756401921,186.632185304330 "Male",69.3397805355218,193.041363498725 "Male",67.9263853240683,168.685986420117 "Male",69.4542504692111,205.550568068128 "Male",68.0204197072484,172.546900989922 "Male",76.8487612691053,254.209073180735 "Male",70.501368203878,180.135324446521 "Male",69.9823440907218,176.464926128901 "Male",65.8952150956405,151.183699012324 "Male",69.6184519516426,189.584957331078 "Male",68.4510841264866,166.832798718981 "Male",68.2408015505215,163.632516077347 "Male",70.6937611666062,194.230612852264 "Male",67.7491296818774,171.875902745534 "Male",72.0025203669615,189.386299571946 "Male",72.7134907568074,207.459681732912 "Male",66.1477384703774,183.935070087864 "Male",68.3768266999005,189.465942705764 "Male",71.5872158686328,184.457925783800 "Male",70.3561662279372,185.024507597114 "Male",65.8889513998202,159.005856092890 "Male",62.525783739867,144.750084449321 "Male",68.5562814918414,189.036497671960 "Male",69.1969826515158,194.257747797597 "Male",63.8460483229035,161.697693477066 "Male",73.1433355001015,205.721863940232 "Male",71.9251064558823,198.674655193774 "Male",69.604026653413,185.639510744775 "Male",68.5660918222243,180.889582602943 "Male",74.0407798950764,217.122686245623 "Male",67.5629128378475,171.266429819698 "Male",73.0283155143541,225.564077060447 "Male",63.7561632979229,158.747207600433 "Male",71.7897799722807,207.493691093771 "Male",67.725618928594,201.116400930408 "Male",71.5290014827599,220.94065027989 "Male",66.6877422279383,184.508237773870 "Male",75.0444861944777,222.034564699976 "Male",70.7896983309274,186.575625957980 "Male",67.4972703606998,180.742459288516 "Male",72.0747755144427,195.046634080451 "Male",69.105846253042,190.213987201726 "Male",69.1485331637724,190.345610968053 "Male",69.33697762557,180.239516481440 "Male",66.8782860897404,172.285307522221 "Male",71.1644057925392,199.042919819346 "Male",70.2359843634208,196.461413498625 "Male",69.8454220544944,178.674044434546 "Male",64.7373387162336,161.650244516174 "Male",72.9239700895835,204.220209116356 "Male",71.1845576397817,200.837100922882 "Male",63.1219267893518,153.944731337291 "Male",66.4336836456774,173.995006760975 "Male",69.6064373218433,184.644156760949 "Male",70.2510370438515,190.654090176271 "Male",69.6996037726914,182.700813581942 "Male",67.8627382412041,170.795052136636 "Male",67.3602233102933,174.586148187258 "Male",70.983670488761,182.136435149657 "Male",72.8712626131453,221.756660052584 "Male",62.3483179935539,150.721987710062 "Male",63.2183603040133,142.158882740641 "Male",70.1742946114119,201.713032391986 "Male",68.9555250979195,204.427510315559 "Male",70.1563997432059,189.509015405781 "Male",66.673870982868,174.159263609077 "Male",69.9440797901785,196.178101276605 "Male",64.0980072075644,164.482231596251 "Male",66.29944080787,159.235987804992 "Male",70.5573381083313,204.280202715582 "Male",73.3002326791658,206.103156712409 "Male",67.0178481210553,156.544812316039 "Male",71.419541743596,199.667482774619 "Male",69.2620291447985,162.288236226001 "Male",76.6001829545762,239.697207027428 "Male",68.7114178724069,195.391862159653 "Male",61.0907475005205,147.266463481623 "Male",71.850344819342,202.669703139689 "Male",65.2525663468544,170.522745558528 "Male",67.2267185892044,158.125458070433 "Male",74.8531636229816,229.402041956599 "Male",64.8709114048426,154.935691951312 "Male",67.8413625063854,179.647844388469 "Male",68.6817811859002,188.273424525799 "Male",68.8499886145476,193.762099235717 "Male",70.0377611559296,190.715368073540 "Male",67.5436217554202,196.493315163641 "Male",68.4293969443223,172.915306526056 "Male",67.680014500842,171.617124623648 "Male",69.1689560591429,191.820572556407 "Male",71.8102807633512,203.271066643973 "Male",73.865890460385,223.464746852520 "Male",69.7629047258566,186.236750761078 "Male",66.609468641525,191.841854586274 "Male",66.1688164617831,154.594031762614 "Male",67.1436545681765,182.609139212536 "Male",76.4823187091377,230.794195470194 "Male",69.5496995552631,184.494827819341 "Male",70.0012309744693,200.500678135024 "Male",73.8462248688545,222.620663681748 "Male",68.9884453717738,173.098430301644 "Male",70.6431925632497,198.491167722058 "Male",65.1469076866683,153.296437253659 "Male",65.2327708069421,168.739899747244 "Male",70.1031643750325,186.67546614618 "Male",67.7944603103637,179.913766051073 "Male",68.7755036786373,199.601514226796 "Male",68.0291151422145,167.541952036877 "Male",68.7892271430625,187.056791918512 "Male",68.2995143116332,184.840081739358 "Male",66.937451868686,169.450393889519 "Male",65.3437055704396,166.958560451201 "Male",66.2124337212599,176.747909726572 "Male",68.9498577517652,196.035689822723 "Male",69.7236968410306,188.249505345517 "Male",62.0280433365798,149.231284287071 "Male",67.2623418758255,167.074596747779 "Male",65.2859132174667,161.148234552839 "Male",69.42534001901,188.779449754868 "Male",66.0711396118842,162.201840372466 "Male",69.0508397846292,198.371794256232 "Male",68.1246915328235,186.907661618339 "Male",72.717612705243,210.365361519962 "Male",71.300221532449,189.794534874093 "Male",70.7816425068478,209.511912850533 "Male",69.7835319920342,180.137289236640 "Male",70.5240492043179,193.094687490084 "Male",67.6369665865025,161.544106573257 "Male",69.1283566295392,184.142280775944 "Male",69.3474920063227,180.285708246862 "Male",68.0967595584502,189.266348767830 "Male",73.768660920017,216.968238466275 "Male",72.0989044448574,207.539909456573 "Male",72.3860981627709,212.212518831504 "Male",69.5386843604893,189.533169703578 "Male",71.36206500728,189.156791331041 "Male",67.425499838467,187.952602764065 "Male",63.7013645640432,169.759770984934 "Male",71.66933582106,208.335506865296 "Male",74.4606944911152,217.631866436072 "Male",68.5073970671532,167.861298195562 "Male",68.1178089734949,171.706782634827 "Male",63.0341698280492,131.800702916443 "Male",68.73713054322,190.149003712083 "Male",72.0372677997777,209.934707622310 "Male",69.41066207624,180.718257678176 "Male",70.9497700994047,194.256851262025 "Male",71.0146142921773,192.873509134883 "Male",73.1053070852177,206.818026615073 "Male",69.1938714016702,182.427616361242 "Male",69.8932686264077,196.075636901452 "Male",71.074818364463,198.021691384998 "Male",65.5661013584934,162.374232259260 "Male",67.2293422715995,161.703536178370 "Male",72.2477471839842,217.378498294396 "Male",69.442300077574,174.885728547394 "Male",74.1009902457718,217.187610639723 "Male",69.5924791921135,181.616836714879 "Male",68.6430173384938,181.371723130548 "Male",73.8953152272514,208.037702066837 "Male",72.031923917951,198.9535791767 "Male",68.4852135129936,184.657139958437 "Male",66.7552191174723,141.674976833422 "Male",69.2898855810603,179.561863817312 "Male",72.1219265019249,199.120862389857 "Male",71.3169877488631,199.157694522968 "Male",67.2528410428749,174.175000727874 "Male",65.6408449039344,154.503178418822 "Male",65.8497985691504,165.542689956940 "Male",65.5946128268641,162.291597258272 "Male",68.8369333583183,183.697826799390 "Male",64.4512115827048,147.044657352242 "Male",67.3817728386335,179.319259045558 "Male",71.3663654768859,199.881585246269 "Male",69.3005304360303,202.838700722612 "Male",70.2043479472151,176.659089639663 "Male",66.7103909924789,174.990111793505 "Male",72.4320810423557,210.722947438366 "Male",69.9361907343168,187.728757464405 "Male",68.5023678249719,192.578382265299 "Male",63.6515082468666,159.604267027382 "Male",72.2611846469261,216.867467177739 "Male",65.9045066406036,186.015505146442 "Male",74.0911900374635,215.994558454458 "Male",69.6565112136457,182.942292479785 "Male",71.8615998138472,194.764540000883 "Male",69.0120284697781,182.686684277419 "Male",68.5613711736471,175.041945711247 "Male",70.2304111293059,207.412833653302 "Male",65.7967781937743,175.912287800921 "Male",66.2964227716638,176.252799588434 "Male",67.7985803261825,184.716884970712 "Male",68.2116569609695,196.058997845219 "Male",72.7932197292912,209.806121474225 "Male",68.7212180185426,190.120244516944 "Male",67.0429030337102,182.721452432648 "Male",70.7703571321698,197.332612713016 "Male",67.5226605508798,172.867726636091 "Male",72.9622270487991,207.50145546613 "Male",66.5539863814558,171.467480830700 "Male",64.3958283684289,145.39863231907 "Male",69.997463823523,198.817508176949 "Male",69.2176337106093,197.355995147650 "Male",71.4537373827253,195.538165951745 "Male",71.9384959492937,217.559784019170 "Male",68.995658520388,192.513164591725 "Male",65.034102155477,163.995593439738 "Male",70.0304887722538,196.01833670293 "Male",68.3050007333406,181.173558781912 "Male",73.1131767925108,211.419775075714 "Male",70.724292066026,197.361246600794 "Male",68.8494796592457,189.791341203241 "Male",65.9369230675052,180.500485214155 "Male",71.5273414341669,206.543953428620 "Male",72.6531446179203,223.935449889002 "Male",67.5259727503096,175.470021177302 "Male",70.2216472898035,203.995316841321 "Male",73.2230709356739,216.149217729092 "Male",69.6844576252451,201.625724652623 "Male",69.7449152056439,197.655268021174 "Male",69.5114690301677,198.955946204012 "Male",69.812724635604,196.613143811568 "Male",62.5371392122177,159.64599620432 "Male",71.5705082207623,200.546570081206 "Male",70.4599451027778,199.183533286829 "Male",68.1861571479218,184.095237378594 "Male",70.1560126502743,185.257822705305 "Male",69.6726186921254,203.038218257480 "Male",68.3844491037778,178.307495336133 "Male",61.9766861508983,137.666526856629 "Male",67.1070656270633,186.879192802052 "Male",65.1029348660786,159.104753561143 "Male",68.5919540264725,196.184005335904 "Male",66.3746183608329,166.923412925573 "Male",68.1061090732165,187.420090888079 "Male",67.1890459715083,168.695154616812 "Male",64.7089540624648,184.426610901015 "Male",68.7335142635047,186.992237179932 "Male",68.10845837403,178.461168551695 "Male",75.6903839208958,223.587548119164 "Male",65.66251180719,170.932863963365 "Male",70.7225053435769,198.121183383210 "Male",67.5533213058089,178.247784671234 "Male",77.5471863409053,242.041172648909 "Male",68.015294615227,186.094459710412 "Male",70.7627956594325,196.765261064146 "Male",67.878401716611,152.896964847604 "Male",68.0701901396216,169.315686503236 "Male",68.464565083481,182.130883035614 "Male",68.1385508788607,187.078465595271 "Male",70.8304806689428,204.697661970683 "Male",73.166638105566,232.761166336534 "Male",64.7461743198555,176.948432999639 "Male",64.7784801980082,158.17255009629 "Male",69.3476174583757,185.667025995320 "Male",68.4444403761031,183.818407694197 "Male",69.284240158114,206.332544990546 "Male",72.3334760051182,210.964440516914 "Male",66.7472734922552,156.097266729178 "Male",67.5228908707639,179.046712630959 "Male",69.0888645946349,196.738709318429 "Male",67.455245877847,192.835593292195 "Male",70.3749846216782,179.374213738752 "Male",70.3290936155985,209.58529221358 "Male",68.6087581009146,201.781982901540 "Male",71.0069025307876,192.794562338277 "Male",70.9442297643081,190.751029969281 "Male",67.7607874306241,178.820340152924 "Male",71.8047729223144,220.398127200159 "Male",72.9397364716663,199.095171377781 "Male",71.3688907648952,205.216921791890 "Male",72.8536001008955,199.814707675520 "Male",65.7573321116953,167.667432358641 "Male",68.7643601372847,185.934778195764 "Male",68.6671579610973,206.515756632978 "Male",67.5360280897294,177.056515488706 "Male",71.9740370456364,211.98785025273 "Male",65.8692531243916,176.181289497547 "Male",66.9088342309804,195.405195410463 "Male",70.5311746623251,176.993077929943 "Male",67.3858091764909,171.05608268942 "Male",70.513230652926,205.725383948652 "Male",72.4304550804762,208.141537132869 "Male",70.5423927817371,197.041858519770 "Male",70.1965802854446,194.699193524582 "Male",71.1929614495965,206.196180056506 "Male",63.5771768953184,156.820414854543 "Male",67.839590246404,169.459305890162 "Male",67.0085793991972,168.926794443904 "Male",65.4972624621934,175.427247822009 "Male",65.5317996336412,177.618224335460 "Male",68.7978790473127,186.857838775599 "Male",70.891173443606,182.28370589774 "Male",66.3276990468685,156.606046359655 "Male",64.2399122762245,169.850769070359 "Male",65.9790480935737,173.886761190519 "Male",66.0364448092802,172.140801009789 "Male",70.8523785395008,221.053227883920 "Male",68.977802627208,190.148682339593 "Male",68.9253585994432,191.065682955728 "Male",63.8650182456655,161.740260215780 "Male",68.4766174538759,176.762771610032 "Male",72.1365459360299,214.536568827229 "Male",72.9548954312415,214.511760594122 "Male",67.8902088460191,168.824926999625 "Male",67.7223203245706,175.634877438213 "Male",68.4860830678464,203.009243569307 "Male",69.8897376153977,203.390800819221 "Male",67.6568927918774,192.121523980545 "Male",71.4398698519055,182.174364296503 "Male",73.2809668311317,225.207435378074 "Male",59.8680779342708,117.803841692011 "Male",70.836937997105,215.946998824017 "Male",65.0008063302381,149.287684034864 "Male",69.031825524802,188.258598618738 "Male",69.9605218878937,199.816809834134 "Male",67.1660564007431,162.801063885889 "Male",72.7619063895942,226.736155125258 "Male",68.5347706293347,186.703104499025 "Male",66.1714582613775,149.999075714197 "Male",69.1634530739506,189.146861384614 "Male",69.3493930993854,184.316088219314 "Male",69.8055810049848,208.435223167274 "Male",67.4289082159466,172.112076471477 "Male",73.6313363648411,212.485152792428 "Male",68.5257336631355,194.110669885852 "Male",66.6756827176355,169.253940175445 "Male",69.3830474047613,200.566659110968 "Male",69.0613820988925,172.035239471501 "Male",71.2506239765993,209.482124657112 "Male",70.6024088402538,216.511147837803 "Male",65.8801355873964,157.450579917075 "Male",66.5317464234284,168.247436849264 "Male",69.0857938231438,194.643178186085 "Male",72.8389938936161,221.080417861228 "Male",69.1531022926345,201.994030074385 "Male",67.9233106303920,173.348646161641 "Male",67.9015249363869,184.059658918228 "Male",64.4859290574204,160.677632557097 "Male",67.001350214733,183.826758564917 "Male",68.4885098078028,184.006789542178 "Male",67.1788915930131,179.444445235512 "Male",71.915045131092,182.671577948220 "Male",69.8235038816249,189.808602549499 "Male",69.7686528442783,199.672842705658 "Male",66.5573566284942,153.372626085851 "Male",68.3799962978338,190.500939450456 "Male",71.6971771413658,212.509061383528 "Male",67.8992838299366,186.381289115608 "Male",66.7940077491144,165.25964315067 "Male",67.9075830232353,173.898085386098 "Male",70.6435771873362,180.668873838164 "Male",61.8348491587699,143.421461766188 "Male",68.7352545196221,181.954867075458 "Male",67.6044185001555,179.389011247273 "Male",69.9297057558467,199.721623719246 "Male",67.4102139689504,178.833361389928 "Male",67.4647771451662,180.875860459663 "Male",68.8293337723017,195.162042097346 "Male",68.3884270330404,180.737760655285 "Male",71.3296991041762,210.664498242699 "Male",70.2327259474281,184.025130592843 "Male",67.2979732686591,175.338659816857 "Male",70.5957777118295,197.314564065227 "Male",69.8416671006111,188.512232923125 "Male",65.1111161037714,183.862263280682 "Male",73.7060271658048,231.697887262719 "Male",69.3081267829753,195.176476367972 "Male",67.9059322950369,174.086727116819 "Male",72.3595000009733,213.297887303790 "Male",68.9303494469266,187.801336939277 "Male",70.876666835473,209.240253629637 "Male",64.6366312274614,162.40702669862 "Male",69.064130558356,176.355211205018 "Male",67.6854899419856,178.556922838024 "Male",76.732446458109,241.686601265952 "Male",67.8820009353618,181.046205435866 "Male",63.1501309080411,154.801973019894 "Male",68.3132579294602,175.226648576104 "Male",71.5284242920317,192.072946759933 "Male",68.511889336449,175.433105819427 "Male",66.6154888987567,165.350100773614 "Male",68.066866584895,187.038344717004 "Male",70.287376218039,203.531508961978 "Male",67.9222131262908,177.021334759353 "Male",71.4519300391906,199.234438721485 "Male",68.0889431093448,173.828764940752 "Male",69.1457747814604,184.487833523429 "Male",69.8329704297875,196.347783266342 "Male",71.7750231711273,189.639305713299 "Male",67.9079954305426,199.479457999465 "Male",66.3414830491598,166.107467078417 "Male",69.2034285319249,186.393762304283 "Male",67.7770087271898,179.784084060020 "Male",71.2837358812353,211.627537668269 "Male",75.3308465172577,240.44081593557 "Male",68.1714041982134,174.873336993624 "Male",66.7524196522147,176.100266728785 "Male",68.5408946169118,190.131233920062 "Male",66.720492842324,169.684086844348 "Male",72.447983717585,213.239108590857 "Male",65.2416370801193,152.223696532683 "Male",67.1294975106874,155.520712829209 "Male",65.1161720362222,153.128067140559 "Male",63.7508280687841,154.666008652389 "Male",65.4524639642861,174.910328161193 "Male",66.9901405254427,160.178971538123 "Male",67.3093046958745,195.012129532863 "Male",65.0018964277919,157.559024052726 "Male",67.6991017090096,185.006776560315 "Male",67.2667358455084,178.634684467998 "Male",68.211373877601,174.898716996865 "Male",67.2224674889485,176.538232159961 "Male",70.0300095284061,208.272738618747 "Male",68.2841631248024,185.537597227484 "Male",68.3914832395403,181.695335403659 "Male",71.9293400915774,215.049659956354 "Male",69.1316918736416,167.82576492018 "Male",69.8593314375424,202.805975086246 "Male",68.5418416884537,180.353225489144 "Male",68.8570110543018,176.642421881176 "Male",73.5965326326326,229.554636629063 "Male",68.3326048406708,195.876815264353 "Male",68.2627394326726,183.078953381949 "Male",71.4333045402772,196.380703986065 "Male",71.2792428096875,192.675508043898 "Male",67.1722774950073,168.183014977891 "Male",68.4221502236242,178.171410103334 "Male",69.4694468167024,202.649823456785 "Male",69.3707199184009,175.937148417667 "Male",65.0782893941959,163.672480582963 "Male",70.3198275994047,190.047879666060 "Male",70.1200300326293,192.553956170328 "Male",68.6607851306331,182.35904328602 "Male",68.4316603406336,166.114508566524 "Male",71.1893840849912,202.782735719744 "Male",67.9918954453877,179.390563783689 "Male",65.3444634368326,174.258682971630 "Male",68.919881174651,189.918571067353 "Male",69.5985512716625,186.898568969186 "Male",71.6483448651963,211.240333178922 "Male",66.3290572591395,175.683587869239 "Male",67.6353232711792,196.624788877726 "Male",66.887823114077,181.567085710306 "Male",67.4930115906159,171.606063299967 "Male",68.4864120329415,172.546072028237 "Male",74.677470902286,218.845025702795 "Male",64.318061116299,157.783020746768 "Male",68.6021004178577,191.958900203991 "Male",72.4995835558049,212.970303259001 "Male",72.553741616469,222.361125020361 "Male",64.4160349317962,158.088177729036 "Male",71.6875267418006,202.821543098354 "Male",69.6899134730683,177.988816163596 "Male",68.2076337049941,184.027977160472 "Male",70.047065512364,179.723488430778 "Male",70.6544387948162,184.383603208706 "Male",67.272645282248,190.302849963033 "Male",64.7943886700372,153.626119562073 "Male",70.5188417210663,202.468599851873 "Male",68.9027140136862,191.835824742788 "Male",71.2295289574237,182.808731549851 "Male",70.6889433329694,186.792362671577 "Male",67.952921585074,171.21714133587 "Male",73.9214285338255,211.163054452425 "Male",66.1835752777016,180.112060402530 "Male",65.3159988232662,189.420728160687 "Male",70.1423146566048,175.180490189231 "Male",58.4069049317498,121.338322555937 "Male",72.4507213695112,201.919563133632 "Male",67.4952603409439,165.250263812122 "Male",67.0018041360757,165.603321431167 "Male",68.1047853043503,186.908019925609 "Male",68.254144878136,178.929604083831 "Male",68.6058472945698,169.548131726275 "Male",72.1191035791778,205.491229435449 "Male",67.236978375492,175.908649800196 "Male",72.6933787427792,203.453595842764 "Male",63.1756549936294,139.132976418735 "Male",66.5707725621267,189.843709342592 "Male",72.9006512255815,222.509054888283 "Male",74.5294545564111,225.540078907474 "Male",69.4285574073058,169.574620818447 "Male",72.7837660754439,201.668039598642 "Male",70.2948149158061,191.986612707550 "Male",72.2122970853614,188.935909316701 "Male",70.3877465290357,181.002358907756 "Male",71.5737775152923,215.297447449297 "Male",67.5644570022929,168.540416464356 "Male",67.5124846483694,186.291276195306 "Male",72.875444304985,190.341920750120 "Male",67.6527859307046,165.103769834012 "Male",61.7672589768196,146.396972718713 "Male",69.1622308250648,179.817768188541 "Male",65.6595048250479,151.627434333072 "Male",65.854525211549,160.111998791411 "Male",69.7688621939797,186.332843345925 "Male",67.0121854088821,166.631665835137 "Male",67.6684485047045,193.304068842539 "Male",74.975230833088,214.495489269683 "Male",73.5042593769053,188.875893529098 "Male",65.6736434092637,170.062794097362 "Male",67.1658594001592,182.680352432697 "Male",70.378607812303,193.945086866535 "Male",70.7982707392368,198.388000808297 "Male",71.2217634694065,204.359917546015 "Male",66.7528662909405,163.690688814000 "Male",69.359457953741,185.284807206561 "Male",63.009573422471,135.630877138289 "Male",67.0769690473284,182.555284762756 "Male",71.1711534560498,213.457232614393 "Male",66.6615647492038,172.014538315318 "Male",68.5029434854037,195.045319296530 "Male",70.0995449281213,181.956001488203 "Male",69.5997949529986,208.948774636174 "Male",70.6950010426886,192.025785860003 "Male",71.2085658090395,204.242177018492 "Male",74.6505402664529,213.320520443745 "Male",72.1974895052807,199.49198859641 "Male",66.37565643783,175.691355271653 "Male",65.82763577673,192.881640534385 "Male",67.6832185802234,192.150041915083 "Male",71.2201778723495,210.456504601406 "Male",73.1033640538637,214.372161472232 "Male",68.1739637087841,179.070339397527 "Male",67.8845153200526,182.226331233505 "Male",66.7858035604488,186.304735627593 "Male",65.9411193658542,181.069175790509 "Male",65.3886284831394,165.546212938478 "Male",70.2944398467073,183.823945444194 "Male",66.765467424153,168.074511931168 "Male",67.4142774006172,183.839221408314 "Male",69.0219010922145,198.622989558571 "Male",66.7307545541728,174.156893015953 "Male",65.091960817426,160.470735856154 "Male",72.7258065631587,225.984684115917 "Male",70.534667254932,203.763291531888 "Male",68.4745852641165,183.375133902353 "Male",67.9304599001737,178.965963782647 "Male",71.542808179959,212.443510123348 "Male",70.0350426795083,193.775477318303 "Male",67.5435971769712,187.354159098741 "Male",70.9309293899503,188.703885266529 "Male",72.4951768182044,225.378590274705 "Male",69.9698858378657,203.275694600745 "Male",66.4286519252902,176.218204621022 "Male",70.4179702961361,190.324439626527 "Male",71.3870199005143,198.822647415191 "Male",62.4302762486154,152.841340807724 "Male",72.1753091181222,188.630657238075 "Male",67.8300013361605,172.776568980666 "Male",70.4363473835276,196.175553508369 "Male",68.4167672422548,188.117700345724 "Male",71.483440226678,209.914741516558 "Male",72.1535110041023,196.538474025017 "Male",68.9086520378441,185.055132548027 "Male",66.0223055376785,167.378816529532 "Male",74.2105213931492,204.759343692016 "Male",64.5852633931835,157.556611541136 "Male",71.8700110838311,219.197877948184 "Male",63.9584961713448,138.576564110431 "Male",65.5200757970214,166.422109232451 "Male",71.9736933807892,205.856369992931 "Male",67.3666401182682,167.937531281634 "Male",66.4242479825577,169.405618895853 "Male",71.5855240582124,193.978622618299 "Male",72.7603246597996,219.521253776724 "Male",68.809922560961,186.908816513133 "Male",68.3790979519897,179.632490713938 "Male",70.4748147089426,193.647456075930 "Male",70.0406405251763,199.037679063698 "Male",70.1783070523867,198.367612206909 "Male",72.8314344195098,206.665313669606 "Male",66.4162258416784,177.676880522868 "Male",73.8017665730408,218.979725750831 "Male",64.2764930680842,159.738668065138 "Male",66.7244445669455,182.198405909344 "Male",70.4149212539265,192.683061466135 "Male",65.3991820948526,146.146730027501 "Male",68.2152297970961,183.1433826074 "Male",68.5148872512248,169.135073809257 "Male",66.6697750359324,180.468741850148 "Male",73.6833643424223,213.546686840463 "Male",70.372074455918,192.078251235246 "Male",67.8514590700922,181.718885083568 "Male",70.5551256742648,205.989402021695 "Male",66.8140260260694,186.324839805672 "Male",74.217090997325,222.829850613626 "Male",67.6728752379897,173.807418332666 "Male",67.2840061842762,172.676874059096 "Male",72.6144618351339,205.374252591854 "Male",65.3733665582574,172.942984226681 "Male",72.1693910043912,204.985511717953 "Male",68.0837821109529,194.143049202359 "Male",66.1416134798381,170.898027754784 "Male",67.8890821850513,170.930201784064 "Male",68.1301680653248,194.925271146555 "Male",63.791446089604,147.144958260896 "Male",67.0716599206962,164.806605914513 "Male",69.3887324558585,194.230427615346 "Male",69.576910461382,182.888713352003 "Male",72.5596952881594,210.863639710134 "Male",68.007994184228,171.222080694357 "Male",68.5540972956237,172.215745405675 "Male",67.6374661865604,194.827041178524 "Male",66.0671152576339,167.485795452626 "Male",68.3876488596868,179.651758621182 "Male",69.6134038324844,188.868777815123 "Male",69.7896325283724,192.438324720181 "Male",70.7507801350366,212.64766663837 "Male",70.5104101560048,174.884884359253 "Male",72.9832209363286,224.372519860368 "Male",67.0138284235961,176.465211274895 "Male",70.358557603781,183.383772184424 "Male",65.673076953518,181.595631192572 "Male",64.533737605798,153.583453266102 "Male",63.8620410671123,155.081236703994 "Male",70.8098265262868,203.978417730569 "Male",67.8090146892489,179.934465358978 "Male",67.6159544950297,185.579959015503 "Male",67.9024370702648,173.397528071836 "Male",72.67888503907,216.68631525849 "Male",65.2556091498026,145.335260567609 "Male",67.512204323907,177.422820109922 "Male",68.7372207368562,169.641736925312 "Male",70.3673141609706,202.571580239465 "Male",72.0408340759254,199.173600442789 "Male",66.9958641306279,166.567359396403 "Male",71.5311788037522,199.973543676069 "Male",69.6820883873604,187.576051609740 "Male",66.1902380972063,170.414340979886 "Male",66.8231541998584,173.610736598779 "Male",65.8514183198708,169.606859808599 "Male",74.0079626803179,219.895739057804 "Male",66.3814354332932,172.735908265385 "Male",69.8284492616355,195.979019588875 "Male",70.1447629127649,194.831395532055 "Male",71.7093075693084,205.648449202477 "Male",67.5306062690097,167.613776859818 "Male",66.0080674395092,167.011632074001 "Male",67.445142662697,165.274244872490 "Male",68.931795241309,182.364295307144 "Male",66.5308350442977,189.361395082828 "Male",71.1694471518134,195.330595550546 "Male",68.9128309304113,180.823137965411 "Male",65.4183342603759,160.770308692432 "Male",70.4371769711896,200.20473429455 "Male",71.2689307374579,189.307461274244 "Male",68.3598105857093,174.198289239276 "Male",73.3395900024196,217.061053258419 "Male",72.3001903913442,213.229451657476 "Male",74.043289756811,219.337908800423 "Male",68.3028391832953,193.702694008131 "Male",65.1423142899643,171.616709864373 "Male",60.6141147615686,156.458354816187 "Male",68.9744813993748,192.129879968925 "Male",69.484562922529,188.855205531895 "Male",65.0014131583689,161.029415825707 "Male",70.2133754264451,197.500019161713 "Male",64.9928915425001,138.92417255949 "Male",71.6444188193627,190.063285629929 "Male",72.6168163296781,224.85790171382 "Male",71.0465619010339,191.274561952476 "Male",72.7263417773615,218.766293664343 "Male",69.1198305542332,176.665959237319 "Male",68.9739418276205,182.312208712821 "Male",71.5309776799117,203.820261045102 "Male",65.3273367078766,171.762517973172 "Male",73.0928708226033,193.944180606132 "Male",68.8600624723444,177.131052159944 "Male",68.973422833645,159.285228223534 "Male",67.0137949681931,199.195400076662 "Male",71.5577184876743,185.905909489285 "Male",70.3518798786343,198.903011944154 "Female",58.9107320370127,102.088326367840 "Female",65.2300125077128,141.305822601420 "Female",63.3690037584139,131.041402692995 "Female",64.4799974256081,128.171511221632 "Female",61.7930961472815,129.781407047572 "Female",65.9680189539591,156.802082613991 "Female",62.8503786429821,114.969038250962 "Female",65.6521564350254,165.083001212576 "Female",61.8902337378544,111.676199211845 "Female",63.6778681520585,104.151559641935 "Female",68.1011722359871,166.575660760601 "Female",61.7988785298549,106.233686988457 "Female",63.3714589617276,128.118169123676 "Female",58.8958863500041,101.682613361014 "Female",58.4382490995692,98.1926209281421 "Female",60.809798678611,126.915463276282 "Female",70.1286528332314,151.254270351714 "Female",62.2574296463807,115.797393408160 "Female",61.7350902197,107.866872355221 "Female",63.0595566947049,145.589929145704 "Female",62.2868383725748,139.522707668371 "Female",61.8274775548724,122.766166670135 "Female",66.3475372155375,157.380964816028 "Female",65.3206320269197,145.037375621008 "Female",66.1038727954936,148.645182574529 "Female",64.5271820296461,132.680868243034 "Female",56.5479749809036,84.8721236452797 "Female",62.7392809291012,138.530421130127 "Female",61.585198645852,137.425286781889 "Female",62.0244248323023,124.603940620149 "Female",65.3113341377437,140.266700393455 "Female",61.2049560689218,108.290104228827 "Female",67.025093515345,150.219175933031 "Female",60.2111665623754,119.037534152405 "Female",63.9399727739834,139.495957335990 "Female",63.3578051598708,125.613238151682 "Female",63.685068445343,132.282977854988 "Female",60.2888703924791,130.440809040632 "Female",63.4072897919724,128.848389435403 "Female",60.6316001185165,109.719696252994 "Female",67.3735965886919,146.023295039745 "Female",66.8727415972973,158.855194208793 "Female",60.0471472234037,114.603525896347 "Female",64.1544722687217,133.138355593842 "Female",63.4616648933184,128.950960852672 "Female",67.2438679477325,154.061574837338 "Female",66.2135945099311,139.001133618245 "Female",64.6928213839027,138.680813564999 "Female",66.1992832819946,180.698317098880 "Female",65.853375824511,149.118528392780 "Female",65.0495202214884,145.073538581697 "Female",64.477615149807,144.638245692437 "Female",62.5400773193173,139.478643930727 "Female",61.59623161922,129.977149249753 "Female",60.9503289147806,117.422588668035 "Female",63.5532238018192,137.492070428581 "Female",62.2483463509287,138.382413290926 "Female",66.190590843343,141.271956088319 "Female",62.5480579760466,123.712853940157 "Female",66.6298343220198,145.594711615587 "Female",59.6085601361981,109.813156032597 "Female",64.493394759493,159.456065776193 "Female",64.9365559015708,152.419352004462 "Female",61.3792584854039,141.427450563345 "Female",66.0707872085545,147.752330110449 "Female",63.914431661526,131.513704638389 "Female",69.6198060242191,157.023733848368 "Female",67.1815358769843,156.950847065556 "Female",63.3990508337142,143.840429687839 "Female",61.2131714955926,98.7074925949256 "Female",59.6678488000619,126.355255679648 "Female",64.0894064651938,134.211017209693 "Female",60.5780628792393,118.242811799265 "Female",62.114866399197,145.337359446736 "Female",56.1594580191187,90.8152556552271 "Female",67.449272973975,170.830353595279 "Female",65.0651446274894,156.163126863795 "Female",65.5288561745669,138.989535511843 "Female",63.1496527400666,124.193771665091 "Female",58.8743006695406,102.927077538710 "Female",66.0212319116557,141.656245159955 "Female",61.5250911236378,133.528507704123 "Female",63.5843104973355,133.189403796986 "Female",59.7867629089699,116.904871470824 "Female",67.1492063558276,139.552814769724 "Female",62.323087083779,127.130913031099 "Female",65.1476595576194,134.662024671615 "Female",70.6285964525231,170.148468502777 "Female",67.3874511948522,164.892658411008 "Female",68.130408809775,177.240131210861 "Female",63.4884596395885,124.052871755915 "Female",61.1630652757277,107.23544334682 "Female",70.7101395263283,161.363484297774 "Female",65.2088548097869,137.703041572099 "Female",61.3594893280584,123.420134597368 "Female",62.0717151894243,142.663619361408 "Female",65.4048818826678,144.025941163566 "Female",61.8233681172395,112.001861732583 "Female",62.9471972521971,123.684238635036 "Female",64.3630337197069,133.183927036323 "Female",64.038537483693,147.240564000238 "Female",69.7883326870588,167.437658866369 "Female",62.8223500167531,126.816039038744 "Female",71.9912565421476,177.366001765282 "Female",61.9940865436986,134.417291950693 "Female",65.8046058667036,139.483209612705 "Female",60.030610123321,104.497331810975 "Female",64.4988656513921,146.125363035389 "Female",62.0496445072297,119.865377360177 "Female",64.5679794100138,137.534164326015 "Female",60.5043159198482,116.381974250403 "Female",61.2144499154672,128.266498910134 "Female",65.7806082972014,146.856354296309 "Female",60.674278397707,115.805035158068 "Female",64.7898526139103,124.172527335362 "Female",62.9965793146519,131.004284503501 "Female",63.8094826504867,142.421776480813 "Female",62.2799001065922,133.255261053524 "Female",61.7110319057525,108.028807023383 "Female",64.8226454585033,142.697039339943 "Female",65.5350871813485,146.135542370311 "Female",61.3366590164904,127.341819977669 "Female",57.1038694679138,93.506315903823 "Female",56.4456850266095,96.6402446637704 "Female",60.8155622040312,132.174817011755 "Female",61.4647835289526,137.299168988017 "Female",61.9240636007588,126.431696747156 "Female",66.6645901535482,153.948513395745 "Female",65.0826657837113,141.125351061446 "Female",63.4931430001388,160.554603918248 "Female",64.5902856291067,140.176081684439 "Female",61.0243422117445,134.193712558431 "Female",62.2470807592287,117.230337235004 "Female",65.0601256724748,140.985245791637 "Female",63.2198242886745,142.973406430632 "Female",63.2290195165613,131.238126208326 "Female",63.2789284322783,134.827593587405 "Female",66.0506705716618,138.906378734208 "Female",63.0377049362755,127.070393942324 "Female",62.6280829350044,121.724752976693 "Female",61.6685660209029,111.619612391082 "Female",63.4440555002437,126.507631240561 "Female",62.0694248149154,121.961284895735 "Female",68.0068039692137,161.164709184170 "Female",66.5349588948616,163.561500746848 "Female",62.5498457985719,118.903203961550 "Female",65.1822388637889,133.514009654304 "Female",65.2269007475441,123.173382052447 "Female",63.9548303820439,121.888637124568 "Female",63.8260384360516,149.369118956566 "Female",64.0912122326925,130.972209739261 "Female",59.6456491039143,116.551867007723 "Female",64.2992174382013,140.106806448349 "Female",66.1576281723834,143.709183931123 "Female",59.088694630918,129.272607527928 "Female",63.9615351757076,140.762188360656 "Female",62.4070641317515,120.303349805267 "Female",65.4607849419499,141.885129657558 "Female",64.9819782864878,157.829151800939 "Female",61.8176552663779,121.615000159206 "Female",63.8260177297046,153.846107496592 "Female",64.2707720747361,134.13881613433 "Female",57.9619361820506,112.226983636465 "Female",58.5972254723861,104.797463356533 "Female",62.4308668218842,127.765249467294 "Female",61.2184548963704,119.275426752581 "Female",61.7063937760483,110.923344274973 "Female",67.4078762473504,159.728213586267 "Female",63.0419971036865,122.087245508190 "Female",63.9177194287055,135.697284242661 "Female",66.2595580379875,138.839939938552 "Female",60.9673174396153,113.795249953307 "Female",62.3828475994099,125.347102031623 "Female",65.7528095339208,160.290048457993 "Female",66.2526040466702,150.096454812290 "Female",65.95375621906,163.597121888682 "Female",62.028373055852,103.275029340058 "Female",61.5206085297862,127.390660904010 "Female",65.1436158860325,141.575300322436 "Female",65.2743311062302,136.508506170129 "Female",57.4425669680862,104.486636219839 "Female",64.5661075838473,129.775457057716 "Female",57.3139027398949,95.1390467981634 "Female",61.8392298475715,110.414161092118 "Female",63.6178151757957,122.59035594592 "Female",64.4851647256286,150.402898695227 "Female",66.1141556115706,158.953933508482 "Female",61.6685228676763,112.935590557600 "Female",63.3095949331229,144.017519304721 "Female",60.8455119968138,135.956449885158 "Female",60.447396660563,117.653785035939 "Female",58.8616250965517,90.7285608829213 "Female",66.563772045055,156.83219101961 "Female",66.345674662825,158.28513170699 "Female",62.6964285223027,134.395978725645 "Female",63.1138692587779,124.818530125508 "Female",61.7430549493235,111.964092547299 "Female",61.6299865883532,111.172465906796 "Female",61.5260223271191,124.882434098149 "Female",64.2344698443578,130.219638125047 "Female",61.759546496511,131.022230398974 "Female",64.8301932747815,148.984312804607 "Female",66.7590705407222,150.881329670661 "Female",67.1907633167527,176.432901559757 "Female",62.9552737535274,150.582520877049 "Female",64.2762427390933,123.298801482061 "Female",60.7791579742199,110.880045352394 "Female",60.6284986157526,130.999824233273 "Female",59.0280872446527,111.833549001828 "Female",63.3060181635752,134.323769255019 "Female",61.6199458712052,113.170156124666 "Female",61.1972231892203,115.906395897950 "Female",63.2187589332422,140.407857970989 "Female",61.9799346927729,119.910845573051 "Female",56.7854343692644,83.9930774713752 "Female",62.8061993667207,116.733315098915 "Female",58.7512536320208,97.7224905977011 "Female",61.2362474889617,111.502707371425 "Female",63.3198176682499,119.315988261806 "Female",66.909452269651,151.612890693732 "Female",68.2767254397253,177.085241926696 "Female",58.6486596777328,100.234250669338 "Female",64.0628724771001,142.86946947706 "Female",64.4932362576784,141.735675802085 "Female",64.3187898134621,136.113112416632 "Female",66.5375281932,162.0245078289 "Female",62.6740943947114,147.517898734144 "Female",64.3163283525621,135.154220744067 "Female",58.0615529715125,113.060720349670 "Female",58.9265027030452,105.329901527587 "Female",66.2552984349504,148.832458010864 "Female",65.6656495604404,131.339756031349 "Female",61.3495814422394,120.500037006939 "Female",64.5868557403,147.179384480972 "Female",65.4655470077031,150.469160712364 "Female",63.0140721214378,129.189009965093 "Female",64.8525499753406,140.228602729561 "Female",63.1819005014715,144.684993267094 "Female",62.0273574864439,131.358662095764 "Female",64.7708720817028,139.034575173835 "Female",61.4565043263512,119.548497493285 "Female",65.2713830952983,145.245082896938 "Female",64.3927112060248,133.318356933567 "Female",62.5989133602596,119.146173612437 "Female",63.8500081784127,149.761885603035 "Female",65.2968684923415,150.253650333801 "Female",65.129065854611,147.772480425275 "Female",64.4904227143592,157.116970421069 "Female",62.4570895407546,124.436526398277 "Female",67.4031614914766,154.259068464375 "Female",70.392737827924,184.658610479957 "Female",61.791885722479,118.166394232429 "Female",65.333637392558,149.725394082419 "Female",68.1748921244644,144.817907648842 "Female",64.4670652353147,143.663382287202 "Female",63.6004800623691,131.040872806245 "Female",65.0600117405822,144.758964434927 "Female",61.1247265949404,117.388948978733 "Female",64.6768789154258,131.1821481418 "Female",65.6706172883962,158.044333094153 "Female",65.6299184575689,130.134356372411 "Female",62.8119078563338,129.822383356382 "Female",61.7526959532595,112.909947814590 "Female",63.4758721970993,127.160704835653 "Female",60.8945194705127,128.103419034246 "Female",62.9349262148006,132.616525370780 "Female",64.9600151276839,154.739031155818 "Female",68.5049300948965,155.720652613621 "Female",68.481368641366,180.922454085005 "Female",66.1100750805556,176.352784845131 "Female",61.1042051296563,133.184099825599 "Female",62.5013641801295,128.581091995706 "Female",63.9867085026774,146.265814757148 "Female",65.5027242869999,150.300950175204 "Female",61.4687033842901,128.742972861135 "Female",63.3060862385002,128.729688256535 "Female",63.0123623919906,128.148812904635 "Female",66.6682857273936,145.34609366298 "Female",59.5287882585904,114.752101723709 "Female",58.9871389352788,100.743008049753 "Female",63.9659421942122,130.611869495422 "Female",61.6599217548307,104.342469807496 "Female",65.8750206552292,146.962716661053 "Female",70.4354630538055,163.218061552294 "Female",62.6450417377898,117.460636379714 "Female",62.9659218299081,130.024532169872 "Female",63.9217762335782,135.665990376898 "Female",67.4085278522187,157.853324468035 "Female",64.0724731933834,153.465039447212 "Female",60.8596200372557,112.090753334639 "Female",62.5174090733556,128.661047841967 "Female",63.5993726430893,130.048574977112 "Female",60.9699127252181,115.22816590943 "Female",63.1868648875671,132.977067402018 "Female",67.151191453272,166.520118793196 "Female",60.8077120880396,117.183531552643 "Female",65.5647207551733,155.256044301334 "Female",68.5841947603568,165.807872916003 "Female",66.9869801293675,155.33023439413 "Female",59.304006674877,124.667939944881 "Female",57.3977403653233,106.587562707410 "Female",63.3000056139882,121.948216965336 "Female",63.9304349811277,134.409159480214 "Female",66.3948756331919,162.303398750158 "Female",65.3799742061384,142.875141463859 "Female",61.4586449817035,109.208331364350 "Female",62.0703964153284,119.298986787558 "Female",60.9117709191833,131.710812833578 "Female",67.0419717239002,139.993373972995 "Female",58.4450728445732,90.4066747700377 "Female",62.2245020221864,133.875237869795 "Female",60.7177828443625,120.569576018192 "Female",63.5687601892505,154.14541190635 "Female",62.1916974375019,112.935460903956 "Female",59.7764551910631,120.743637801798 "Female",61.6273472434732,123.637225339968 "Female",62.4269612065783,127.616505950701 "Female",60.2433587713343,131.661110167329 "Female",61.099684522662,117.196783823799 "Female",63.8035583689906,146.069789093321 "Female",60.1214940797834,110.277399096982 "Female",62.1515390284783,117.622643059512 "Female",60.8455082792894,107.446054418329 "Female",60.8149266614059,110.141214580722 "Female",66.6406919712605,133.006943491138 "Female",63.9734478999678,149.408992650491 "Female",62.1103513180408,136.870855338002 "Female",64.6232920305636,134.611015330786 "Female",65.2359128237191,128.446414954298 "Female",62.9747851017198,137.474569849565 "Female",64.7207937398357,143.840839802554 "Female",61.991103315523,124.263052907899 "Female",63.0344867270615,125.467016142592 "Female",61.7220786947145,107.224707081941 "Female",66.235472294563,149.413467570318 "Female",64.9485359270927,155.133186403789 "Female",68.0047071978932,142.289254801081 "Female",63.5649944650528,134.111374252931 "Female",65.9047444550849,126.277039892645 "Female",61.5826702131507,127.686515250633 "Female",60.8508818055655,108.945837143582 "Female",61.470937755893,114.674279364657 "Female",63.2365175403148,132.175494890553 "Female",67.9453913666469,162.163974662772 "Female",64.3635203905005,155.573499373380 "Female",55.336492408949,88.3665825783999 "Female",61.5871964272971,117.478149437881 "Female",67.098583252735,160.693329855376 "Female",66.4708459825994,161.374932965809 "Female",65.0497203709364,128.039086079110 "Female",61.1779832423059,121.327062450280 "Female",65.9426580836807,157.022986870301 "Female",62.1960203776221,124.157289067095 "Female",66.9351291414654,154.947305136066 "Female",61.4323999425898,127.844520031770 "Female",62.996069969002,141.072078285295 "Female",62.7320919601965,126.373784882524 "Female",62.164904387045,119.304213033600 "Female",62.9254755099168,120.192431587993 "Female",62.4557192957967,138.360765182304 "Female",55.6682021205121,68.9825300912419 "Female",60.9601467947002,124.876795694859 "Female",65.4710910498764,144.379121833208 "Female",60.8929255610217,134.713555165105 "Female",59.8050927800746,102.147229843053 "Female",64.4434955523069,151.523947280029 "Female",69.0078312369192,159.086870772944 "Female",66.6546363773709,156.764291927540 "Female",64.3283172106086,134.744705000123 "Female",63.7850382085228,152.559196426352 "Female",66.5560973073082,154.393417449840 "Female",65.5674452507982,166.959825735408 "Female",67.8037894478938,162.509490965831 "Female",68.3171198579942,150.53320061435 "Female",67.4606049324002,165.866935218659 "Female",61.4552792378346,101.801104556745 "Female",59.973722018482,111.224290083868 "Female",62.7867326752516,107.695853478586 "Female",62.0712021112973,122.633793869728 "Female",57.882977877878,110.725972142648 "Female",59.2391987586138,111.181236095562 "Female",60.8483432381663,114.949997304144 "Female",59.7634004434417,112.741362002212 "Female",63.6846975166008,134.263881206765 "Female",62.6359268260796,119.789160101035 "Female",65.1252205395475,141.597218212974 "Female",57.8697044083998,93.533752874761 "Female",69.9094619536732,162.465432383775 "Female",62.8616279247227,135.520535634779 "Female",59.6319099013699,109.281638742373 "Female",64.3254057975894,156.800503578845 "Female",62.7745323390548,144.906207413141 "Female",63.642045335268,118.186717861156 "Female",69.8258260971064,171.486365149906 "Female",60.1625103505144,94.232330573943 "Female",62.2851140096946,132.091499136112 "Female",64.328491192675,135.819093790461 "Female",62.5182337160901,129.279567833282 "Female",62.8928308396335,131.130446581715 "Female",62.3961536333553,127.032748132563 "Female",60.1211674783819,113.406966734996 "Female",62.0910912813511,123.697903291224 "Female",64.2556542421888,142.503455243134 "Female",66.351365899781,131.277990256992 "Female",64.7446553819592,125.775812303844 "Female",64.4044917904229,142.161396233841 "Female",69.3217453937076,157.161889030641 "Female",61.8635413009161,127.018966168159 "Female",64.5604883757869,134.198153325494 "Female",66.8244076938673,165.966231405226 "Female",64.7858059969865,147.190935111554 "Female",63.7311128493592,135.598592190331 "Female",66.323922447613,153.220042862039 "Female",66.2572465189432,142.715293703949 "Female",61.7055757907997,126.787299377007 "Female",64.6875911866408,124.728487203707 "Female",69.7949870329252,182.45116816137 "Female",61.1619212877002,119.040161837050 "Female",63.3710129855295,139.299934580169 "Female",66.4188654356773,134.244934974749 "Female",64.6426127422204,128.606254115255 "Female",63.291301795676,126.409991249452 "Female",61.8245071244127,133.692684009314 "Female",67.0324664782839,179.727325039126 "Female",59.3351078902134,120.819870074702 "Female",61.2369877967915,114.160746392997 "Female",57.9231593597871,100.540042842024 "Female",63.4060849249549,129.372212442842 "Female",64.42841794434,142.205860672309 "Female",65.2363218490845,143.939347554022 "Female",66.5350086370735,147.501913797559 "Female",65.7477314420735,145.576248360178 "Female",63.7317326816991,114.269749554834 "Female",61.5797765712626,117.903634880013 "Female",59.2527254716231,139.140812286463 "Female",61.4562621266792,117.028716831825 "Female",62.611869335698,134.765898952825 "Female",68.7596360266078,153.689738524650 "Female",64.5974345354265,144.330320141990 "Female",60.6030101186213,100.001590658139 "Female",64.657939990267,134.444784807854 "Female",62.4538156072119,132.697317246472 "Female",62.4053361255275,116.602306473742 "Female",64.7855512218543,148.431176858902 "Female",65.0877442549353,148.264304715129 "Female",62.0775229481741,128.493024202435 "Female",66.4651840424592,160.083864210568 "Female",62.5478779512339,125.598026309247 "Female",65.9785772877327,141.113930522559 "Female",60.8896815106693,116.567487619501 "Female",62.7509967144146,120.545152927970 "Female",63.7355604496328,142.491203674906 "Female",63.1992030737393,125.467253919726 "Female",62.1486693111973,131.114126484876 "Female",63.9714726655432,150.377404742749 "Female",61.472110562733,118.918114328354 "Female",64.9485469479208,141.689745352379 "Female",62.1121735944475,118.979326164760 "Female",63.9105157740826,140.730951619697 "Female",65.2410722836874,150.229901485131 "Female",64.3178639340617,114.065008310172 "Female",65.0376071535425,140.190188753279 "Female",57.3130235163555,93.876437404092 "Female",63.21573488063,127.005158871953 "Female",66.8927365581372,161.098982098272 "Female",63.9739246653843,133.45950261332 "Female",60.5417796163516,118.376376113162 "Female",65.2631142388383,138.074901360749 "Female",63.4580537184868,133.575257573268 "Female",65.0533825651357,150.106493587000 "Female",63.2219071891592,140.272834359120 "Female",65.6529509085425,151.182098017021 "Female",60.5521255218089,113.232336211797 "Female",60.5858203774355,112.599493992172 "Female",66.6743600250031,132.004280081081 "Female",63.2065614774725,129.954140226785 "Female",68.3067631381034,166.781194968542 "Female",63.5802764717087,135.780213650099 "Female",60.9180252416831,119.772634041478 "Female",61.2923629781984,118.330546968483 "Female",64.8290993311632,154.856569081163 "Female",63.2639771202887,139.071144275766 "Female",64.3082114857892,140.879463008474 "Female",62.5871156965349,153.574348447221 "Female",67.3109193480839,160.395789915512 "Female",64.062578774024,137.254518317345 "Female",64.241109008327,142.579014412498 "Female",60.5115488791556,123.693718263582 "Female",64.5508407642547,133.311057115518 "Female",66.0369906490538,150.994562500593 "Female",61.6989411060057,117.003707390074 "Female",63.6719719524865,149.155947076426 "Female",62.9675196987056,124.810695121021 "Female",68.2692742007694,155.587147229121 "Female",63.3917872708458,144.049387433744 "Female",62.4880358544193,138.393841101676 "Female",65.3136848056351,136.880954026378 "Female",65.4110529854993,146.977077807044 "Female",65.8200234464721,155.941972817023 "Female",66.3323351436742,147.725695974025 "Female",65.5819630301696,143.541242212163 "Female",64.3409196248961,137.841074854066 "Female",64.6237587121933,148.922934610244 "Female",65.1762534245278,139.996347326218 "Female",61.8348171745656,141.039826994712 "Female",64.400188270258,140.033502099948 "Female",64.8022125176934,149.631948558897 "Female",66.7006517050195,173.532518008275 "Female",63.9214312444869,142.843103380073 "Female",64.6539409098882,135.07388613303 "Female",66.2292600252637,169.101686826467 "Female",60.9364387860402,118.618540931868 "Female",62.4172265791266,130.795699390072 "Female",62.985253475543,122.322000450754 "Female",60.5583547356878,121.465205228422 "Female",62.7929560060569,144.875397677067 "Female",67.3034054445073,165.018629756849 "Female",59.3902798125922,123.830413116507 "Female",63.6744824391735,134.660232151018 "Female",65.819006672503,170.627119265832 "Female",62.6223371329449,106.593985687972 "Female",64.1515761711753,130.434558208938 "Female",70.1551179927514,164.003370219607 "Female",68.2593111409607,171.856035488825 "Female",59.9684185677438,115.476812840551 "Female",58.417163446819,96.4221710048584 "Female",61.3074456940536,137.065084958094 "Female",63.5510697224229,133.378699080680 "Female",65.4285104758149,128.039695652442 "Female",61.4944578000568,129.420924180631 "Female",62.1317499066882,132.808352593369 "Female",63.4355938700062,120.184682701804 "Female",66.9710141729402,166.398387131634 "Female",64.4828948391264,143.339869524192 "Female",64.1761633597464,129.602202769888 "Female",67.0134125677726,166.436635591387 "Female",62.681352506608,144.199475712639 "Female",65.2820544319443,160.485732696033 "Female",66.1390603645017,151.500754694049 "Female",64.2980081681169,121.339437182554 "Female",62.6332596216282,137.976895846461 "Female",63.0841710443907,148.955189789064 "Female",63.2324193735435,131.906070938145 "Female",64.8180778022974,151.493586981401 "Female",61.0085441877015,118.038053266885 "Female",64.7432660120597,141.434997471028 "Female",63.144169145211,120.555017173442 "Female",63.141208873533,138.651477740768 "Female",64.366194026362,149.660186416663 "Female",63.2174878945598,135.601005744142 "Female",60.8077724069542,112.436341613195 "Female",60.4359641599548,118.098866565329 "Female",66.3770424654759,151.309180072980 "Female",67.6291331328271,163.112272488408 "Female",63.091703137238,121.008872902635 "Female",67.5354147442836,175.019563892355 "Female",65.4010385942373,158.224826445444 "Female",58.9969439920839,113.734396983804 "Female",66.5689402328776,149.082480309893 "Female",67.129880241637,146.604283911017 "Female",61.9915610492115,129.321530441353 "Female",65.1110636621304,129.070359037732 "Female",65.220797969986,151.569783701549 "Female",61.6005970877239,136.609345601026 "Female",66.2954044521177,154.696731646770 "Female",62.6164606594454,114.988391905055 "Female",69.3299216808351,167.582852426375 "Female",63.2380660879524,115.985360957491 "Female",65.013435001229,140.600831139430 "Female",60.6748561538626,128.615808477141 "Female",65.3866908281118,154.239363331212 "Female",63.1028497186618,153.520357385879 "Female",63.0242234616811,131.639253708063 "Female",64.4954896927827,142.495848026494 "Female",63.6691129398454,141.914930746632 "Female",62.1097570425215,124.483947181836 "Female",67.0688136559148,152.456870971246 "Female",64.5563984334083,146.411541695103 "Female",66.0049985990387,146.668808011168 "Female",63.8260546124413,125.556013177822 "Female",67.6166729266317,171.112202786287 "Female",66.5384938612383,164.161857019799 "Female",62.5376588122446,124.920283434545 "Female",69.0583292258541,174.727654536209 "Female",64.1981553087341,130.296177151677 "Female",65.065914319463,154.493133335891 "Female",63.1767412364093,133.305962960520 "Female",62.8924807371768,142.895625913257 "Female",61.5004865343244,126.088338208402 "Female",62.5092134625984,132.122065997657 "Female",65.8175965051632,138.710513674517 "Female",62.6992776704058,126.639871233991 "Female",62.0045067675116,136.975398054233 "Female",64.1571004654397,130.624199724108 "Female",61.025224979151,121.055279305515 "Female",62.7430546559301,135.352914549541 "Female",62.763723922867,134.619078048893 "Female",65.5488123192662,150.069691938647 "Female",63.115267498179,127.508135982421 "Female",63.7387846485527,136.204024074546 "Female",67.4816970921321,170.617082005891 "Female",59.762156488396,95.5003308531445 "Female",64.0269597600027,138.87640638951 "Female",63.9323879354694,130.936857530366 "Female",68.2618555144814,173.395692395635 "Female",60.2762621629998,92.0379430397919 "Female",63.2385247118844,109.197849767591 "Female",65.3397249536015,161.431657506077 "Female",62.0693336458313,132.654701141979 "Female",65.9876102918289,166.844114319683 "Female",63.6001516903264,142.682825085499 "Female",58.6212042754936,105.682555962401 "Female",62.35161807096,147.776633057825 "Female",62.064464782076,135.553886774225 "Female",65.1329984432297,163.390770134078 "Female",63.7804505357159,125.964967064398 "Female",61.595700475738,125.690445565054 "Female",63.140719924336,134.749660807651 "Female",61.3876900470254,139.325303119848 "Female",62.4040612072824,132.859670011568 "Female",63.0996464734617,127.897077555075 "Female",65.2870994428939,145.469236629349 "Female",67.8334497064817,180.289831374591 "Female",60.9011029650348,117.069212796024 "Female",62.0118603437534,122.709384363170 "Female",68.0060889738665,160.498871328297 "Female",64.4186641653042,159.951109604137 "Female",64.7420043709058,146.046996429122 "Female",61.177417249355,119.026199791625 "Female",69.1288146980393,173.743433577378 "Female",59.7616961246051,106.181546007383 "Female",63.8829118578512,133.274269386444 "Female",63.5988925995822,124.829550138566 "Female",66.5002841569765,164.212378062450 "Female",64.39724056546,148.369054489955 "Female",67.5558985148114,154.436977189173 "Female",63.4876370769227,152.939283220944 "Female",62.1989274746945,134.416769094881 "Female",65.3279690131631,139.04543565718 "Female",66.7661566062845,152.944405048544 "Female",64.1231482423097,144.457759045625 "Female",66.5485395589009,155.940305599885 "Female",63.7915820567127,137.413177969282 "Female",66.1837581260769,146.077559642319 "Female",65.0345368407552,145.706062161174 "Female",58.3992732847804,114.914523775531 "Female",62.7552630779708,143.679072724016 "Female",61.0169136485069,122.551131346505 "Female",60.4106109489089,106.642293994736 "Female",65.2381384425361,135.648212327642 "Female",66.2136806163984,142.916533748820 "Female",63.374620073333,130.403337418144 "Female",65.888565594617,136.802560143162 "Female",62.0886315795757,112.748109757602 "Female",63.9256629281186,146.805057738270 "Female",58.7817576324036,90.7747091832357 "Female",65.6031682309183,152.793643566824 "Female",66.290520331928,139.939393704934 "Female",65.4202438116462,142.726785943638 "Female",68.1270163237332,155.431006532304 "Female",67.3990489604949,161.387355893036 "Female",68.3016220795609,168.786938659971 "Female",68.821431782895,188.691862114076 "Female",64.1643366015432,139.644700239823 "Female",66.5867359089946,143.998415428368 "Female",68.1977955440264,172.381274901777 "Female",67.9105865875531,164.395261722055 "Female",69.3797348894693,177.700043739673 "Female",64.5562119271014,146.335896831846 "Female",64.9976097965344,123.868429160287 "Female",60.7325592012657,129.93164947606 "Female",66.6670985158094,161.034529438125 "Female",65.4259315004385,142.451122039710 "Female",65.0563251192091,148.805739652020 "Female",66.2451658543593,165.61655605684 "Female",65.3286775638761,133.693674862405 "Female",63.761419932705,117.551987292536 "Female",66.6157115789694,148.707952227472 "Female",64.705436895879,146.848712168825 "Female",60.6808456196719,113.642060430966 "Female",63.784909476139,140.410741148516 "Female",60.8583531423618,117.696491881752 "Female",64.859973239722,140.784838024313 "Female",65.80002802435,151.556946419100 "Female",62.6330053145602,127.536664725424 "Female",63.386660312589,114.504560767949 "Female",62.573491827726,120.583444827689 "Female",70.6643003503891,162.281555177633 "Female",62.7213495566306,119.486517223659 "Female",67.3919259559781,167.488226481695 "Female",59.5596477140795,110.918225634754 "Female",63.6880398794519,130.336549114258 "Female",63.7414312550819,140.454048475041 "Female",66.2173148683178,143.042566799264 "Female",61.511383226993,135.051580448911 "Female",62.7810480514985,135.628790604296 "Female",61.9455232926966,110.657142075488 "Female",66.2048298983819,137.164879397097 "Female",63.7848705959536,134.228371270992 "Female",63.128042988196,136.592800500294 "Female",63.8894436057504,144.37596784709 "Female",66.8372303694138,152.919820790312 "Female",66.0554726305611,150.995672533918 "Female",64.2646579812066,162.804122273241 "Female",61.4896336601811,119.330341229469 "Female",66.8302430947442,165.352733012123 "Female",60.1078614836828,122.363789403639 "Female",65.177100228481,134.671249126970 "Female",62.4587916193706,136.098915292115 "Female",61.3640524103822,115.175752886687 "Female",63.623574223705,137.904633308725 "Female",60.7720543835753,103.274543570465 "Female",64.5422498909552,162.413463280536 "Female",65.5981804983064,145.080404329489 "Female",67.5170380601641,169.308893401756 "Female",61.8314398602573,144.912759286863 "Female",57.6548850278643,98.8767225455992 "Female",66.1629308541201,158.172355213959 "Female",65.6923233964042,174.794468987562 "Female",58.6428888204366,91.1363036572996 "Female",66.2150732581635,175.080993699551 "Female",59.0017419565727,102.478664670655 "Female",67.9652660098935,147.304044263115 "Female",68.258236847678,165.845779437455 "Female",64.13259552012,150.518295372649 "Female",65.05626826711,141.160100509472 "Female",60.2133953702512,109.662813179920 "Female",61.1201164293565,123.581164718325 "Female",69.1192918242978,168.864402796581 "Female",66.7398825824609,152.936623367452 "Female",61.7122667642139,129.777130481080 "Female",66.1685183044283,172.006997965417 "Female",56.0786997324948,94.4883740514904 "Female",67.9598135606305,175.353450340295 "Female",63.3499879341012,139.223151035297 "Female",61.4502821665807,100.817996164838 "Female",68.5054423225546,176.904921236491 "Female",61.4680996449647,122.868498594010 "Female",68.469715400869,172.577358071262 "Female",65.4030257273507,146.950388715448 "Female",56.108902096181,80.5312593808895 "Female",67.4643693664088,175.837259465974 "Female",63.9165972026092,145.624290589582 "Female",64.8066858300476,138.485217717169 "Female",61.2244579969429,130.539050835342 "Female",63.5720738747121,139.189754635499 "Female",58.5038208838195,102.124460727719 "Female",68.1601590941242,158.096183401911 "Female",63.7560237265498,148.878322871828 "Female",66.3996869750026,148.633153610737 "Female",59.5676198493025,130.119245608480 "Female",64.0607208343705,137.798691417923 "Female",61.8229563157747,151.621748021954 "Female",67.7635043217747,154.041758704619 "Female",59.550766330213,132.98838873545 "Female",62.667580120138,124.033977823712 "Female",65.9417881940748,142.839645892174 "Female",60.7868835207597,133.235538441663 "Female",67.3824748767537,158.817502397030 "Female",62.8140534616654,114.333915530655 "Female",63.3665552927455,128.037235319090 "Female",67.3571661976723,163.667183228395 "Female",62.5657303998949,128.871196256066 "Female",63.0711709583662,141.214977779151 "Female",62.2346329852014,118.852705355753 "Female",60.6794569073923,120.952343048977 "Female",62.1406891954094,117.287234136288 "Female",60.5033265387832,117.673179032708 "Female",62.1839823428074,131.659119191964 "Female",64.489375631941,141.926122065719 "Female",65.268411971242,148.201080454699 "Female",66.78882198784,152.410698939111 "Female",59.8913966191576,108.625579032739 "Female",66.2065976991153,169.089759579162 "Female",67.9022522420795,150.724448776685 "Female",59.0866684886879,101.037153610585 "Female",69.1291556325151,164.81908286244 "Female",66.81189039961,139.786475579899 "Female",64.1504027430315,144.985145957166 "Female",63.2632746056996,137.364902527897 "Female",62.6176900041191,138.082482281735 "Female",64.7256018545135,157.971880190933 "Female",63.44051580012,140.143427227101 "Female",63.4029164816637,118.271687679224 "Female",64.295861990972,120.115820761886 "Female",60.266154767081,106.138265858869 "Female",64.923624559071,122.485795292252 "Female",66.5173447485184,143.074198031542 "Female",64.3289227653181,140.181267726941 "Female",65.3410408308385,148.721399690314 "Female",62.2422084376345,133.324581124254 "Female",60.6263943477523,128.617380700552 "Female",64.469422853858,135.193971875581 "Female",66.414583993891,150.957699589141 "Female",68.9749909103401,167.219940456707 "Female",61.9842298634471,117.640454127762 "Female",62.1608492873229,118.512310847137 "Female",61.4105897100327,139.899818308485 "Female",64.7471479759165,124.546685632424 "Female",63.8440598448956,140.008238050349 "Female",66.258258030821,160.530052507513 "Female",64.6045811718413,151.030972352349 "Female",64.4097945427114,136.245058498943 "Female",67.8247150033196,153.269571608594 "Female",63.732847083697,144.777657493938 "Female",69.2719782406486,168.181741476728 "Female",67.6435386568677,145.907967969146 "Female",60.5684836937429,110.490718413001 "Female",60.037287660545,117.605873795749 "Female",59.6266045472612,107.471732438746 "Female",68.3334475088363,175.134535138437 "Female",65.6879082977069,158.840720250103 "Female",68.1679857043417,164.961351967609 "Female",67.5183990233758,151.764313582989 "Female",63.4626198297076,126.689845437587 "Female",63.7430398445612,126.293962316978 "Female",67.0736607623134,160.459758969941 "Female",62.694682057334,126.692714269078 "Female",67.2346539451645,153.426506052046 "Female",62.8032334146675,126.010565667123 "Female",62.1175122119449,137.282178100606 "Female",57.8073228489915,107.705025913598 "Female",63.4138540642601,121.200849225363 "Female",62.3855341496913,137.533670497237 "Female",62.0501442011013,127.051031458001 "Female",63.7780793626365,149.894951440861 "Female",68.7174196489747,166.799975787303 "Female",65.0779682795104,148.733153676712 "Female",61.5606091197838,116.626798287403 "Female",61.7189238838311,121.606508600220 "Female",64.5216098418886,147.025010556358 "Female",60.7710584976098,109.837385673708 "Female",65.2547298526553,140.505386618028 "Female",63.2546663036786,135.865663634336 "Female",65.0422212012702,142.904254064657 "Female",63.7838704037937,139.340537312666 "Female",62.9200494946017,131.57367513268 "Female",63.271718526254,149.122726526788 "Female",64.4243382873525,136.976951830596 "Female",65.1550798754679,137.806165718192 "Female",64.2428154724719,138.406496385409 "Female",61.8936565184405,117.646102933760 "Female",62.7559587583006,122.515319572172 "Female",67.7112315413313,145.408446289980 "Female",66.2939197475216,168.143509951866 "Female",58.5775758255851,109.051629285320 "Female",61.651771889465,129.028241356304 "Female",58.4709836424501,103.045952845206 "Female",64.9563447510511,144.759089436304 "Female",57.9470911003493,91.4689976337068 "Female",68.1114186443258,154.785882837839 "Female",60.1438688169522,107.166050588278 "Female",65.6426217600759,155.911023326178 "Female",63.8227248654108,138.895712416732 "Female",67.5466633053304,150.887869458715 "Female",67.4502833890771,168.517067145212 "Female",64.9641466246892,125.820071532799 "Female",62.149295755193,131.114972670710 "Female",64.6013585348886,168.907893686434 "Female",65.1142153551371,142.971914418017 "Female",64.3105091847238,158.745129301723 "Female",62.6593439584431,124.257211247832 "Female",63.963226842032,110.581001855524 "Female",64.9346429569326,129.219354503378 "Female",66.6903528715739,157.793825220765 "Female",68.0222823506091,162.652528233230 "Female",62.9027288010334,137.041794764637 "Female",63.6657977906739,122.148252708969 "Female",58.3768121939762,96.5792120329965 "Female",62.2438493000684,113.29063745559 "Female",67.2772495748027,155.642603187778 "Female",61.9236976699269,134.682126594453 "Female",61.6466411754478,134.475773050625 "Female",63.132339355837,130.514736487237 "Female",65.6783060394966,146.513376669120 "Female",61.8272781508049,129.68531010624 "Female",61.6664350850308,120.606159272429 "Female",65.6981278803086,145.625184197326 "Female",59.2644116953942,117.535231988082 "Female",64.5206270450062,133.294238258861 "Female",63.9056469656532,169.079129369228 "Female",60.6143859598376,130.370011518555 "Female",65.9394256591248,157.160363540210 "Female",59.2796539717926,86.8907118416325 "Female",66.8024913405,152.067766650711 "Female",63.7905286347469,122.121197764408 "Female",65.6820332301062,137.067229035461 "Female",67.4130635740314,146.090040562755 "Female",64.765449819323,150.560675298113 "Female",66.3239655671198,148.938463980075 "Female",63.6953074251025,120.965576317010 "Female",61.7503104664995,141.285499543180 "Female",62.3446077262348,128.732390202663 "Female",66.3874352909995,124.277551954560 "Female",61.5954743189745,140.376801203415 "Female",67.9417369115361,142.961977935272 "Female",64.7154646660173,146.189493253909 "Female",64.5056539129233,143.043457846382 "Female",62.7888677862447,130.071925160203 "Female",69.2467636974264,168.218019463714 "Female",60.9495616747468,114.791401025589 "Female",65.7774433977874,167.686231738308 "Female",70.0839211281893,165.771322537549 "Female",64.3990911588392,141.730512557911 "Female",62.2671781021688,129.351649873223 "Female",65.3415308457202,164.030416532173 "Female",65.880013996992,131.761442822398 "Female",60.6803877196751,119.195697933808 "Female",64.3870614645801,133.115212860813 "Female",68.0593085975349,150.979677796380 "Female",63.9896920632008,141.487752526284 "Female",64.1020130333803,141.745050046555 "Female",64.7490074581613,149.331487345740 "Female",63.1516293523298,119.191194477355 "Female",60.9386984898315,135.601568354786 "Female",61.6943371258118,122.746494612735 "Female",65.747710914558,139.838362880126 "Female",68.668672203965,168.540757514377 "Female",61.6855430637008,126.007336558882 "Female",64.3746173880224,135.623948166457 "Female",60.443789129043,109.688325769838 "Female",65.6063503885667,156.043087297473 "Female",62.7842763453096,109.029690178438 "Female",61.100516080586,114.955814222543 "Female",65.0203140186567,156.735692835617 "Female",57.4813920896452,87.4965711068527 "Female",59.5271969623395,123.044667837303 "Female",62.196274493421,120.008198718904 "Female",59.9980659303265,113.944988323158 "Female",62.0150135779691,121.239436200904 "Female",62.5905347139169,119.541594250199 "Female",68.621342499956,161.350356478781 "Female",60.8543111878693,140.811513978200 "Female",62.1458607025379,128.967996843239 "Female",59.1817312308563,106.772488510281 "Female",61.3511138475123,121.966343592203 "Female",68.6038356448301,179.18192407042 "Female",64.8314493670077,128.344592012362 "Female",63.013256878704,121.787566579416 "Female",59.8377120086964,127.947748191752 "Female",61.9627954969954,133.374761452122 "Female",61.2458279351572,102.918033517196 "Female",61.73903740721,127.160584033742 "Female",62.6188631643794,118.716168129320 "Female",65.4808205215746,144.643031686080 "Female",62.2118424372008,114.850762301452 "Female",59.9985291119596,96.856488099381 "Female",65.5315538303727,158.598827675123 "Female",64.2466719555024,145.028015212802 "Female",64.0906870957569,140.530167167976 "Female",62.5044968802861,142.639641930986 "Female",62.6435170912578,142.887379341998 "Female",66.644634715642,145.540189733852 "Female",68.1229008318943,163.344631708686 "Female",62.0080771491404,136.997220424575 "Female",65.5935629924078,150.935054290217 "Female",63.5779273506287,140.760938882789 "Female",65.5633590016224,141.291784270822 "Female",56.7576036320284,88.8848531761247 "Female",58.0483879435182,92.3258299115623 "Female",68.5906667720027,171.175342045736 "Female",63.7011397144788,152.904962789341 "Female",63.1788467544409,139.052102359510 "Female",67.6321277689353,164.86760520507 "Female",66.5400154996689,159.992034952514 "Female",62.231306437616,136.681238290303 "Female",60.5786306823931,97.9775540088973 "Female",63.3503418961264,136.181916612555 "Female",67.0492443214269,160.738096384215 "Female",67.518692667356,170.330889207843 "Female",65.6517073770095,159.490164305561 "Female",62.6238524863747,142.946827368472 "Female",63.5004535296126,137.198700301645 "Female",65.8710380337067,156.432378466109 "Female",64.8472337284786,144.906885673795 "Female",60.2574933105572,110.101139831754 "Female",70.9321942044308,175.954400609796 "Female",59.6643406247125,107.322245909936 "Female",62.195908169483,137.284026960041 "Female",66.3091009385077,147.586500017265 "Female",65.679010990448,148.292152806936 "Female",58.8583977310176,98.549364155062 "Female",63.6902996213132,132.971110377536 "Female",63.1667384919388,130.740933092532 "Female",60.5977270957684,106.969691988335 "Female",62.8250805619894,111.615089915203 "Female",62.7136523745064,119.789782668783 "Female",62.2050376294717,122.917881852374 "Female",63.857098025805,125.401719607698 "Female",60.9780090660765,125.104335777660 "Female",66.7000747594028,135.856007822104 "Female",60.3034430760768,134.694862750144 "Female",62.5594947136909,129.439231106236 "Female",63.0080671298698,139.393372975680 "Female",61.3992063189541,118.243214867285 "Female",64.0136536061212,121.812722244771 "Female",62.1000960989526,109.349031666849 "Female",65.253688546256,149.531118367038 "Female",68.0401433127524,161.881840823847 "Female",65.6055753685281,136.143748949103 "Female",65.1748308761764,139.989934059748 "Female",63.715969976713,144.256790545024 "Female",64.9670945229996,134.724966128497 "Female",62.5864637847256,132.732254677612 "Female",66.0738700860418,162.949944756918 "Female",60.6668224727029,121.598168438201 "Female",64.8466441917349,149.668368517619 "Female",62.3211968836268,132.118590072080 "Female",63.5249762127878,147.026850497157 "Female",61.0863776667252,127.166576438328 "Female",64.1710760328905,127.212313432553 "Female",66.2615270525255,153.761022070456 "Female",57.2079464481391,99.494823757459 "Female",63.3228513649821,130.875115859355 "Female",58.9805742499834,105.971759903372 "Female",64.3936934541556,152.223401910660 "Female",66.3603885993806,152.757084683682 "Female",64.5370480426537,130.670259933203 "Female",66.5951368299181,154.317997769328 "Female",64.7612257338878,151.942264691657 "Female",59.7654023621743,133.479484363974 "Female",63.3494163565599,156.005407993291 "Female",63.9197225629009,146.832640146898 "Female",65.268557290483,161.477744308455 "Female",66.3915957093158,148.055640138066 "Female",64.8531982689437,135.013854029631 "Female",66.8956296719244,151.531283381560 "Female",65.8972696829023,150.478851413989 "Female",63.749253320049,133.511540858199 "Female",62.4956808670057,137.536814793135 "Female",66.0595701938935,141.301108236847 "Female",62.3725869576043,135.722305560273 "Female",63.4422117789602,134.801973619515 "Female",64.5289979382754,131.120790736503 "Female",64.2483429811119,139.252338622666 "Female",63.4561187875777,124.031688109340 "Female",64.7457909907791,147.318865953805 "Female",63.9021615105496,150.187598464574 "Female",61.0724435059547,111.765896991427 "Female",63.1808638527067,117.010256885193 "Female",64.2182482784235,137.606344649293 "Female",61.49888657429,102.696974533694 "Female",63.9768333597098,142.372879940519 "Female",61.2575726538818,131.469281576650 "Female",65.656126049222,136.881979564154 "Female",64.1241653747849,135.003347531826 "Female",67.7290819215933,147.505871272483 "Female",56.6304119764382,89.480480272958 "Female",58.2136140977498,98.869252929314 "Female",60.0407793463283,125.681644042020 "Female",59.4974060191257,125.601269024671 "Female",65.5562572176743,133.352164363273 "Female",63.0684183548493,131.157066933971 "Female",62.8646332718698,120.247147644501 "Female",65.476902588083,138.124369185163 "Female",67.3204066473136,149.078827195281 "Female",60.4068930646657,122.223338680230 "Female",62.7904953943164,145.992045419017 "Female",64.4824946688634,140.010825245196 "Female",63.7948401617126,124.655638900198 "Female",63.3741426139251,138.024803709393 "Female",62.79478140952,123.517806382056 "Female",62.8948396869464,129.943212021255 "Female",63.1251364340679,120.274188626291 "Female",61.3884204016023,130.734180311493 "Female",65.0581465772376,142.308517030730 "Female",60.6471053112835,121.880256816862 "Female",63.8848755242758,126.938871407855 "Female",65.207359450851,150.498578930879 "Female",67.9630161715707,162.409988494667 "Female",62.3024965761823,128.387109264372 "Female",66.7717159734268,126.360234069603 "Female",65.223136216003,129.136069457107 "Female",64.8142919970243,145.905983073062 "Female",61.3051465213603,122.534743665854 "Female",64.532862779695,148.206743267389 "Female",62.0246228538539,116.971457537277 "Female",61.7814522684375,119.956198553202 "Female",64.2355616328491,141.401345178251 "Female",62.3417961766414,137.492143041157 "Female",59.0303022780839,107.701246562834 "Female",65.2594419654651,149.599596041979 "Female",63.6831809886458,127.597515249022 "Female",66.8941112254811,140.3460606498 "Female",59.1696039759662,112.043944486811 "Female",59.1390873118783,113.468730417278 "Female",60.9662640820926,109.946334605674 "Female",65.7975156802185,134.342744519461 "Female",66.4221167700854,156.752631345030 "Female",57.5402686323147,96.190511238138 "Female",61.9059184995613,114.568376671197 "Female",65.204481018529,143.563339319018 "Female",69.1902638633848,164.044585015642 "Female",64.0088764698066,154.051429787699 "Female",63.9573089571671,127.444970022639 "Female",66.2692991071185,141.902023998710 "Female",65.1726768644519,143.878029369242 "Female",61.9323519094684,124.780164610408 "Female",66.8136805613258,168.597929485838 "Female",62.90082474974,137.420455826089 "Female",62.3754184915593,134.870906081511 "Female",66.842898079791,151.464648722805 "Female",63.8875151445974,124.753377622056 "Female",66.8475848218763,165.272511306906 "Female",66.5046532313147,144.210830467714 "Female",58.7063154217927,101.990470324876 "Female",63.177398804039,138.022592491558 "Female",65.1514754236429,122.751654123712 "Female",63.0850236136518,124.459625457958 "Female",62.0998542419859,133.714224546198 "Female",64.5880784104178,129.393176124176 "Female",63.293828919941,159.82130423599 "Female",64.0910936609475,142.162552780834 "Female",62.2059641381313,130.526883320967 "Female",61.1919833059315,103.586385470313 "Female",67.2558041753211,142.866245151200 "Female",71.4389467760974,175.035491537161 "Female",60.5506048942084,108.215882832314 "Female",62.6116600750035,125.094021930470 "Female",61.8794633631368,108.136639402511 "Female",62.3157520666132,123.783563825451 "Female",64.0633172180763,116.471442701904 "Female",60.1948969474763,127.860000106261 "Female",68.2305543548021,161.334232064197 "Female",65.4201831879245,134.612715838218 "Female",65.6404834126995,148.498919556826 "Female",59.5129816980911,106.636429529511 "Female",64.9811959751322,129.839588948602 "Female",65.8778749776462,159.815468791593 "Female",59.3077871493332,108.425989559395 "Female",66.0721927822985,142.595275001706 "Female",65.1908596008262,152.499760668414 "Female",65.6935888686274,140.608412362972 "Female",62.5864298982446,133.928179771128 "Female",66.4109077861082,161.99138563683 "Female",65.1295282301444,132.063776409835 "Female",65.3833115263583,129.375501986123 "Female",67.1797608759326,159.318643402433 "Female",64.2619995713383,148.390479746549 "Female",64.1725254231146,142.433423672126 "Female",61.1032162867816,120.409350956552 "Female",68.244709889445,158.251718872370 "Female",63.4199546377084,125.962116034111 "Female",65.8807620656729,159.873201407205 "Female",65.0025119975338,156.057175933406 "Female",61.7095710275463,120.604339328759 "Female",69.4368896801976,170.138856676594 "Female",65.4316983367532,153.818743323927 "Female",64.8425948916241,142.879180453390 "Female",64.8896872138484,153.586247185204 "Female",61.8251695502446,144.555484485503 "Female",63.9426236505085,125.194118433785 "Female",63.9211759989884,140.883834629129 "Female",60.7181902703438,116.690215074499 "Female",63.9798230457517,156.624549709382 "Female",68.6360765090186,156.413094350772 "Female",61.2984846219795,137.994478820382 "Female",60.8895008371525,113.062457650902 "Female",64.1226611948796,141.051938228504 "Female",68.2110663412755,145.486903558213 "Female",67.0223707095967,162.026552396676 "Female",70.2662739066393,158.234595970963 "Female",60.8427403570946,131.305434159197 "Female",62.8173539608313,143.248770278712 "Female",67.690562078224,177.50062892361 "Female",61.2524352280807,122.824105041194 "Female",66.0766818709977,156.200706089896 "Female",69.3367356628538,167.635786598418 "Female",60.5792080632693,127.354500043278 "Female",61.6541746571694,141.49632459471 "Female",63.7376822067027,139.674979024569 "Female",62.2307136151842,108.192002771498 "Female",65.1828932404828,143.764129771746 "Female",65.4975909127757,151.542118171723 "Female",65.2424430570022,144.757202709172 "Female",65.9190369939423,165.064970123921 "Female",55.8512138219031,103.767137286226 "Female",58.8096536336339,93.0540913754368 "Female",63.7000670167339,142.322039721723 "Female",62.8523317573488,145.315497088658 "Female",64.8968616591026,143.344692374485 "Female",63.3906337002984,110.513180867796 "Female",64.2352160578657,143.313587978686 "Female",63.5354693614422,137.622958502453 "Female",66.2040391981081,153.413708691206 "Female",60.3946356235736,130.785432134824 "Female",69.6262621971809,159.867870788118 "Female",67.2972538491168,161.644762075658 "Female",62.5900175545683,132.321686028614 "Female",64.8327522241635,136.430728165546 "Female",61.9245004850171,113.661109982740 "Female",64.1104988809597,146.75626290364 "Female",61.144746927994,118.798229605216 "Female",64.5877950681436,140.774670960951 "Female",64.3612490796002,141.201045206224 "Female",66.066489194068,158.503983325740 "Female",59.8302635762905,99.7247419691343 "Female",64.0078381283592,135.667416355705 "Female",64.1109153622425,134.164839382822 "Female",61.7743660293559,122.405364444669 "Female",64.0569755425466,139.436196765653 "Female",65.9355551232688,152.120566956733 "Female",63.1185882518193,122.115106126656 "Female",68.8046648653474,167.946171555331 "Female",70.2740232838408,187.001787580092 "Female",62.3255550442168,144.942334803669 "Female",59.8150485166839,112.097417070758 "Female",62.9964835977481,122.564700136315 "Female",61.9834447222965,110.514436990301 "Female",64.159390750059,136.847598058533 "Female",60.5229120730461,124.742290932328 "Female",64.1358562661878,132.991795162713 "Female",63.7274692550505,140.025285076403 "Female",66.167536635487,153.750443897188 "Female",67.7366840897626,152.706192826675 "Female",67.832737274091,160.354768837742 "Female",58.1096631726451,96.2662501541608 "Female",61.532999160452,115.202312834372 "Female",62.8944904066328,151.347465107385 "Female",63.1044489208074,138.335712739484 "Female",64.0729203023192,127.223188135152 "Female",62.4106343023137,143.347460113507 "Female",64.3168663346422,143.859569230449 "Female",65.8810668704332,166.348793459138 "Female",66.6248838059415,141.187261572672 "Female",62.0264796805277,123.172683968554 "Female",61.4673326778037,137.143537430737 "Female",60.8257662539451,113.619397986316 "Female",60.5887991674755,109.306131003385 "Female",60.1241670269045,119.057425460790 "Female",56.8560821293767,97.3649783271705 "Female",61.3039241329657,128.269264728816 "Female",59.7074846568776,109.923623246467 "Female",69.5981068230002,173.529944739299 "Female",66.9426227608456,136.132223109725 "Female",58.6463298569074,96.5248498312934 "Female",60.7097933802161,117.333173821634 "Female",61.8397127739331,127.327628233853 "Female",66.8873234452573,162.872453448311 "Female",61.0419050946963,131.702313600744 "Female",62.9523215491681,134.733745611152 "Female",66.36787715073,157.616005204023 "Female",65.6741783451272,159.890413782323 "Female",60.6707844690725,100.559840283468 "Female",63.1669759374437,120.944577217097 "Female",65.6467141843977,164.557520932076 "Female",58.9640689917515,91.785549827755 "Female",63.5521199204627,131.298644601033 "Female",66.646720980068,151.445538528458 "Female",65.0754189285491,140.052978913209 "Female",59.9002745344656,118.468947054012 "Female",62.031264677257,128.748688352743 "Female",68.6872321923365,173.115812588004 "Female",67.2482236059834,172.713624757025 "Female",62.5236118770252,127.149734648921 "Female",60.797820249182,125.934423770373 "Female",58.6883916120875,119.599000429571 "Female",64.8613181346612,137.829508366699 "Female",70.5443059863273,196.107116001942 "Female",66.2507508327093,140.534427474639 "Female",62.7591767919005,134.744757267404 "Female",60.4340546221386,118.481624096983 "Female",64.8313595058783,143.086255999237 "Female",61.6306358437811,141.980447214242 "Female",64.8968783608954,149.545199984187 "Female",63.2655798154007,148.984215793627 "Female",64.4352331456538,122.563653466312 "Female",61.7645690001265,147.957716829586 "Female",60.1298674461234,107.919315173185 "Female",59.3125340407551,92.0430875699975 "Female",66.9410546146316,135.010041347243 "Female",63.0386943759791,141.170727562953 "Female",65.5374631224154,149.294182633801 "Female",63.0342601763786,143.324946029736 "Female",63.3645364244639,135.900351891681 "Female",65.2223895395911,153.450440466032 "Female",60.3601748517583,127.841812513999 "Female",68.1692678882482,160.347225467517 "Female",64.7436431302013,141.980646731978 "Female",65.3971324673664,141.506019820105 "Female",62.9468079064824,131.267399254072 "Female",67.109840475482,161.548252255358 "Female",61.2664978779032,101.244919138932 "Female",65.0894921495665,133.313495422583 "Female",65.2849460379949,129.293602421454 "Female",64.9917135704149,137.801970334798 "Female",64.8412153964244,154.425304428477 "Female",60.1908582824432,117.955518204098 "Female",69.6403815578602,157.014287866744 "Female",57.6751810901334,125.941865449606 "Female",61.5694742826729,128.539311293180 "Female",57.5587103279895,105.173923396841 "Female",65.7985442654329,143.790203295817 "Female",62.9525409843533,120.673464017242 "Female",69.0511806029094,166.451937309373 "Female",64.0274263083623,146.789985656520 "Female",59.4990773904988,128.915658582563 "Female",64.2339455280588,151.540788870287 "Female",65.7867230221436,159.373921755772 "Female",62.1987073393976,122.548925366031 "Female",62.8282480084833,123.071175876530 "Female",60.673430810886,112.715432765977 "Female",60.7848160377108,114.892326418711 "Female",60.1595090304518,116.106376111620 "Female",58.644611816453,95.7879688678834 "Female",64.2946984483287,148.066097319915 "Female",60.7509152510232,113.418401494811 "Female",66.1904972693211,151.321738329975 "Female",65.6829449604425,144.236194928815 "Female",61.5501125732668,129.754367532567 "Female",63.3965048272174,150.542043818078 "Female",61.9454767856846,125.224706814081 "Female",64.0512364004406,135.794065719530 "Female",64.5732678455844,148.475554544558 "Female",63.4970658194016,134.915438582361 "Female",62.6701568243573,111.080658285661 "Female",62.8103875742565,124.267588126539 "Female",62.6566187480512,123.870493713578 "Female",59.4361512802665,111.864139742294 "Female",64.493942764868,127.704661003082 "Female",60.6934108818164,130.017847924579 "Female",63.7099594764057,135.849924747892 "Female",59.7985872655286,102.787826403860 "Female",63.5241898654944,129.910745914848 "Female",68.4605823450771,170.106711796821 "Female",66.6483558171759,159.593544317633 "Female",66.7193769639648,146.891576814818 "Female",65.1574535737745,136.754348214373 "Female",69.5004004743538,178.020674450648 "Female",63.0374496097039,131.048845282274 "Female",60.6797234360632,114.831030020050 "Female",59.1041956260695,103.418916656386 "Female",60.0024634791096,114.445720805035 "Female",62.7925657799972,119.173397008303 "Female",61.5508608045011,122.883437440469 "Female",67.4807367148067,164.455343751580 "Female",64.7910182373408,140.400913206640 "Female",62.4409303955215,121.427728189135 "Female",66.5538980156604,150.016876075446 "Female",62.1852212947346,111.099321508592 "Female",65.3104361385266,136.434393105399 "Female",67.8363970813314,156.274296728665 "Female",63.7812151046128,166.105800451365 "Female",61.3340325087736,107.44566005185 "Female",66.3182407416543,138.537010044666 "Female",64.1160229130275,134.301424967617 "Female",63.1043474623505,116.902770597259 "Female",58.2121647882327,101.757024898513 "Female",63.001431689828,120.185888879339 "Female",59.3400072593782,110.183222127801 "Female",63.0306350404741,126.733534709637 "Female",63.5205745629814,130.429113623409 "Female",62.0987571475771,136.382333817617 "Female",63.1826177658809,132.246094440381 "Female",65.0659658600642,153.570518323377 "Female",68.6856629343441,165.924318727404 "Female",63.0362941884185,130.117520780242 "Female",63.2583509652557,124.217167528261 "Female",63.9132602193041,131.029178550155 "Female",58.19008891566,107.057140817042 "Female",57.8007687381103,86.1909601800444 "Female",65.3674681551483,139.195691983163 "Female",62.0596795459491,122.197037105345 "Female",62.598648179779,114.766881635338 "Female",63.7111525803582,140.619451067452 "Female",60.1139197250871,127.712452805848 "Female",67.6125139624813,157.760811230146 "Female",58.3872722960955,85.7930852355214 "Female",60.9100242709036,120.271964808635 "Female",66.985923375184,142.920389277444 "Female",60.568529487382,106.791251200868 "Female",61.6219921069495,123.233766232869 "Female",62.460812613958,126.679585492026 "Female",61.8317180411029,116.795015056221 "Female",60.8705857147916,115.132236501892 "Female",66.1571798492929,162.339163832511 "Female",60.9427947533818,110.921330982054 "Female",60.4961932301216,111.831682461495 "Female",66.1677332242878,153.677836355102 "Female",64.5172151999749,139.012683868889 "Female",63.4368313598477,141.579212145631 "Female",62.3106683042188,131.363274836162 "Female",62.8984140743408,125.040891841666 "Female",64.5120640767188,132.627365790212 "Female",64.7486644480899,133.541417829553 "Female",63.3381848169439,144.704339499288 "Female",62.8117338858984,123.091287052690 "Female",63.4973037194707,146.229435886445 "Female",64.0548106472709,149.753473914740 "Female",64.3476315971152,138.815261189938 "Female",63.0824857917176,135.946957015882 "Female",64.4019345814973,139.124799447001 "Female",64.6824790849082,138.854072645178 "Female",67.1920732004003,158.342220439684 "Female",63.8680599445794,126.834671797464 "Female",63.3134176904304,137.276959741850 "Female",59.3308190713878,102.515972835535 "Female",62.6358440193902,134.418862222534 "Female",60.4213849397397,116.101256403700 "Female",61.658446198194,114.569944695417 "Female",60.8342383869735,107.281036034548 "Female",64.6190905970177,121.575262542001 "Female",60.6237811608255,120.382573166409 "Female",64.1773425630975,146.636834123204 "Female",64.7067164433632,161.677903420103 "Female",59.9682045037674,103.616818443881 "Female",65.2941650150928,138.807700108306 "Female",63.8423043040513,129.555974846026 "Female",63.1686483726241,142.010379059998 "Female",65.9596911675545,149.895441706738 "Female",66.1484588506305,162.244457456505 "Female",62.791409301769,120.420103328205 "Female",65.7486011903599,142.067437927928 "Female",60.9720209774758,138.428510681648 "Female",64.0955183782878,149.274099544133 "Female",66.81442135179,156.838580291276 "Female",66.423943654048,132.616279779813 "Female",65.8645192773374,158.167168203670 "Female",59.7613696356758,103.944018725278 "Female",64.1061809159585,144.765942818329 "Female",59.6930163509511,110.370347859948 "Female",62.7895240833095,141.718207045392 "Female",65.9288687376648,125.515854861365 "Female",63.1943426938051,139.531254744664 "Female",66.6271443061042,160.135141832633 "Female",64.5314780193245,144.088522083089 "Female",61.7593413335719,110.025793235236 "Female",67.3850648614665,162.550612450752 "Female",63.2769596158887,116.761840344260 "Female",61.1220454563971,123.597949379234 "Female",64.2637556542925,132.283150711151 "Female",69.9952020289046,176.550874225454 "Female",68.3654384654345,153.742635126006 "Female",67.5078440178079,171.591684287123 "Female",64.0435875096738,165.326424284525 "Female",62.5073353104524,121.546400468097 "Female",63.5395838419634,143.363631326756 "Female",63.0402794926928,129.545202140483 "Female",65.7360571868887,139.640354771554 "Female",66.1276368951701,150.433688847781 "Female",66.1943499787524,167.734703540521 "Female",65.6327984107276,138.333397755781 "Female",62.6829438790182,134.899864407116 "Female",63.7376719628781,137.940289517604 "Female",60.798270827389,109.096956288588 "Female",63.5101510150327,114.087595997379 "Female",63.4336075291544,145.973897875105 "Female",62.0601992542499,115.381538188906 "Female",64.3933663699142,127.743307082642 "Female",63.8220671456443,153.646201172092 "Female",62.2492144489699,116.605800703524 "Female",63.4504017553677,133.515492001933 "Female",64.0828652967109,133.451352646078 "Female",63.8962241979306,112.425137694589 "Female",62.6449123675215,133.110079883077 "Female",66.4359022522135,145.784964650180 "Female",63.8632225365902,137.153446020002 "Female",63.6796180218315,154.912211310770 "Female",64.7519358010767,138.39317735973 "Female",66.2530860273699,153.853087444795 "Female",62.492464178453,117.307067163667 "Female",65.4815211968108,147.739952846827 "Female",61.1673763732543,111.572765675295 "Female",64.3883960776249,130.926901853671 "Female",62.7192129702128,138.230234010648 "Female",60.967807186911,115.502468491191 "Female",62.7631349334808,117.654076787706 "Female",62.2113989087749,126.001493693523 "Female",66.195570717868,167.791169173519 "Female",63.7726037768398,136.298244324940 "Female",65.8048472802124,156.362511063534 "Female",63.5917907507405,128.614684828773 "Female",59.481420066797,108.895812844617 "Female",63.7099866204872,129.272667510002 "Female",60.5318365898715,110.363797455051 "Female",67.8487391021176,163.580383909747 "Female",60.0155623206961,117.666953570492 "Female",64.3544151166757,139.315165978067 "Female",64.2952841312693,131.238651146887 "Female",60.6596553789213,117.931116327742 "Female",62.1921763613132,119.824287836539 "Female",60.1765377712381,109.258419458198 "Female",59.6405315946486,100.527747331819 "Female",63.8819459330222,142.992135310370 "Female",64.4493418991982,140.337115300162 "Female",64.0887827184629,135.821993620792 "Female",62.4803421519663,153.286220593713 "Female",62.2665917969345,138.381679212020 "Female",59.7087305628415,114.936629125138 "Female",65.5415388083143,134.699063621454 "Female",66.3469350914194,156.789401979836 "Female",63.2447747592981,125.693729070407 "Female",62.8199231659251,102.400373646523 "Female",68.410117222915,153.465334505013 "Female",62.716831922634,108.592687133970 "Female",64.2805041951824,162.298996107723 "Female",61.9241968136952,125.821691740655 "Female",62.7371890177554,141.343095272557 "Female",63.0930940057529,137.112267429623 "Female",58.4312689585081,114.504437766370 "Female",69.3584863661227,181.620926855241 "Female",67.4607919735716,157.258668127919 "Female",62.8356806595155,128.850671697200 "Female",60.2805975643144,116.468154225546 "Female",67.2813582403504,151.006827602194 "Female",69.3822453552615,182.308529635185 "Female",60.3987947778955,123.831414573977 "Female",62.432426249785,116.161491547557 "Female",62.2313974453422,142.155661288298 "Female",60.0762407628217,139.084603688100 "Female",65.4990108523165,146.784446100872 "Female",61.2383813168991,130.527647155786 "Female",60.1809766937198,126.345706579432 "Female",61.4781357929314,116.277148004896 "Female",68.554568155727,151.786039269199 "Female",67.9780198460861,157.833633410408 "Female",60.5007655934477,120.996983910125 "Female",62.0483185693854,141.224547036410 "Female",60.1834384808811,99.3550398494005 "Female",66.2469657392108,154.406373277828 "Female",65.9240682228457,137.199153272425 "Female",63.6415700937888,121.494687965331 "Female",62.1577512772891,133.951889189126 "Female",67.0312170911189,145.52519036879 "Female",62.7179793731272,113.622065762769 "Female",58.596554530003,107.048405038270 "Female",66.8749708944032,146.057972372553 "Female",65.1792627741624,149.947046307033 "Female",63.6760971019316,122.344654587626 "Female",63.216686269988,134.896117147254 "Female",63.4661161157611,132.361844159787 "Female",66.0810430982694,150.705902781092 "Female",64.5616787688241,142.841771124436 "Female",67.0996613263998,148.562706097317 "Female",65.0387401702194,129.510812116208 "Female",62.3212719284674,139.320931600689 "Female",68.3754527268264,163.809745755738 "Female",61.5119869103612,136.424501103128 "Female",63.1585225252602,132.234410728138 "Female",62.2158420710198,133.615154335579 "Female",65.5643155666142,134.620920196678 "Female",64.5626271159302,137.440086539848 "Female",65.095308354207,156.062396331944 "Female",61.8155231944616,118.325882647957 "Female",64.6557952517356,136.044220575536 "Female",66.2304573345808,152.312632220637 "Female",63.7149300563257,127.876873176677 "Female",61.8196628362272,121.580383946857 "Female",63.5528924997549,141.953060290094 "Female",63.8530882856352,137.148691939272 "Female",63.5563537144268,134.750594090197 "Female",66.1559220263282,151.567096250222 "Female",62.389502626001,110.805629277423 "Female",68.8742685596147,165.592199289134 "Female",65.248367004034,137.164305171993 "Female",59.7181011502269,109.816654764320 "Female",61.0186105692054,120.826700385081 "Female",59.1092475164094,104.877067662659 "Female",61.6670033688642,115.677892392139 "Female",62.3645496502654,128.419625530123 "Female",66.0347472144724,132.261165669554 "Female",64.2608414896929,131.395557032087 "Female",61.5513666447146,124.514235635028 "Female",61.6272092334934,134.335283481320 "Female",65.2554175370148,137.415543495324 "Female",64.688603071739,120.088892092051 "Female",64.2053845092834,143.623303795025 "Female",61.5389201073947,125.497218608813 "Female",62.7748173963773,137.509995754580 "Female",60.124776854483,111.576860831724 "Female",66.7910091388349,142.775819230023 "Female",64.1094065141738,131.779166586226 "Female",60.1328489177149,129.735131242109 "Female",64.5471662617022,143.190660564056 "Female",64.7553657247725,146.115654341459 "Female",63.5791007065596,144.055093372015 "Female",61.9516968671702,127.313316973134 "Female",62.1535621695042,134.027912784951 "Female",64.9037990812869,152.572858025664 "Female",62.9433573974615,136.773155829146 "Female",58.5101606316805,113.788590299694 "Female",65.6869228078674,144.49925095425 "Female",62.3366233478735,134.112154017071 "Female",59.9035387926638,119.580853820813 "Female",64.6840329292463,144.404883988058 "Female",64.8539766018777,158.445602978367 "Female",60.6675066270986,123.624924360335 "Female",63.7878975280429,128.204118811137 "Female",68.0780274880187,182.700436977971 "Female",62.718076536375,116.056341644654 "Female",60.9257906631992,114.784399157430 "Female",63.3551022216768,122.11604765339 "Female",67.2043717732867,156.172227104204 "Female",58.3237477025474,117.053155966036 "Female",68.0143909849971,171.798276279545 "Female",60.0138637331979,133.327530135541 "Female",64.113196123206,146.891232620050 "Female",69.4453867067032,164.369884142347 "Female",65.7205342700544,140.024855725633 "Female",66.3785893171629,153.447070977824 "Female",64.7623660718552,135.780229475904 "Female",62.8309194126271,142.564695304550 "Female",56.9494151377438,107.171855854965 "Female",61.753159576662,113.006257387641 "Female",67.7429014435532,152.650097547674 "Female",65.2574451203723,155.164552719508 "Female",63.0419819967601,119.937293351742 "Female",63.4284486217658,132.357672235730 "Female",59.942119715856,123.498491782078 "Female",67.4264836309286,156.665034611206 "Female",63.5514031572518,129.162024848008 "Female",63.595166725964,145.477539500486 "Female",63.9514165896779,132.106321704748 "Female",62.6423654799376,146.737562005470 "Female",58.6199806303476,114.050606687101 "Female",62.0489256276432,116.514068210916 "Female",65.0845773303252,149.194092604907 "Female",64.5549343258853,134.546663725556 "Female",62.1809970471628,133.884059347308 "Female",60.4007145012663,118.713809273295 "Female",56.6781404906408,97.2699666809593 "Female",62.4484696390075,132.337077539733 "Female",65.1635008076718,151.978449983096 "Female",61.9210484640948,115.874817580150 "Female",54.6168578301035,71.393748738973 "Female",55.7397368200335,108.121968520277 "Female",62.276682717882,130.090964169807 "Female",62.5707914645928,126.181469003783 "Female",62.4081181742735,142.76441834988 "Female",60.1773514494768,98.7450377324097 "Female",61.6676885310788,134.732657779781 "Female",67.3362746886476,164.929043058758 "Female",68.7801231492795,176.450817700996 "Female",60.5418681848476,102.545790872528 "Female",63.8060445313626,145.429650465367 "Female",65.7379348720023,144.089916888110 "Female",60.2188377648127,109.190529197858 "Female",62.8938215969302,118.217640742940 "Female",66.6825021462107,147.152815858590 "Female",62.7304591121103,110.242110829049 "Female",65.4491063695484,140.608626198260 "Female",61.7062921526329,124.812240995469 "Female",67.530860269407,157.715299501870 "Female",61.6123816146825,117.103154830241 "Female",63.9399261045257,149.857247128355 "Female",66.2940589437949,153.138692653924 "Female",68.2254073300281,162.924771886706 "Female",66.643322972208,162.160094473799 "Female",64.3225587969732,148.651472199028 "Female",67.2962680175572,162.528178374671 "Female",61.8656142294332,106.732049474341 "Female",61.6398912057676,117.848626145069 "Female",62.0733897954425,103.141097116868 "Female",64.3675909472732,126.519119134419 "Female",69.1361444266303,165.681833987971 "Female",63.4226467871166,138.427955614620 "Female",65.8809718889139,151.065324509502 "Female",63.3421499833824,138.945613021622 "Female",66.2084199250643,147.855952838583 "Female",68.7865661160994,168.944931014248 "Female",64.704358519924,152.580008937117 "Female",64.7419034524409,152.978567802506 "Female",65.6078704483238,154.229073084599 "Female",66.2350945397925,145.217177513931 "Female",65.1081200254628,157.584439027933 "Female",65.7696421670041,152.683155978537 "Female",66.6737836948828,148.429127913253 "Female",61.9238750648119,130.767249306575 "Female",66.0627648620883,160.292250557623 "Female",67.16180564654,160.201031212767 "Female",56.9751332313244,89.1698499679495 "Female",64.081269781806,157.589141097243 "Female",63.2068304244758,140.457941408830 "Female",57.9815124140768,92.1184263949018 "Female",62.6360161380774,129.573204760978 "Female",67.2774972985599,146.491898249847 "Female",69.0827594819084,163.632026476272 "Female",62.379651185778,130.781392883480 "Female",64.8606586704668,159.568225487359 "Female",62.2335982938096,122.759629375763 "Female",70.642135436292,183.287278158289 "Female",65.3899163560362,140.720092888626 "Female",63.3095393090567,134.417675049052 "Female",66.2652226539959,158.742915050982 "Female",66.2829378218642,132.755788498616 "Female",63.2427359285594,119.229506104819 "Female",64.41585420801,117.336588297242 "Female",70.0148367679715,188.617883435310 "Female",69.7350669556986,159.629646600913 "Female",61.8905593072285,110.919687713943 "Female",64.2108661508261,158.206205959913 "Female",62.5074655865151,126.114933801602 "Female",64.255289363374,124.900181375055 "Female",62.805063803755,124.765437960402 "Female",62.252717260433,122.580065185696 "Female",63.0607350477948,133.943536984491 "Female",61.9572385749377,130.971641450175 "Female",59.1766095155136,115.448815582697 "Female",66.3828699734191,150.14229914172 "Female",65.0741193368074,149.230333232592 "Female",60.7160823550811,130.647715131428 "Female",62.644216957666,123.792897499861 "Female",60.9554866464405,105.880580609229 "Female",68.8502596015303,178.295462465379 "Female",63.5937091500711,144.419186927609 "Female",64.2168207729234,145.603465596979 "Female",64.4509046740969,153.021775814507 "Female",56.789386413216,95.3280876779566 "Female",67.0081865601136,151.735235300403 "Female",68.9916905873029,183.638580283194 "Female",59.7609323611866,100.362087004136 "Female",64.4085998547175,131.524417487282 "Female",61.580044134072,137.053056598707 "Female",63.1507454856481,140.680375356368 "Female",58.0374179835325,100.496830643472 "Female",66.5841399927365,143.296387880775 "Female",66.982895497664,140.016621121927 "Female",66.0403980841735,137.874573591315 "Female",64.6031356339456,148.638806367736 "Female",65.9355246730795,135.926725243504 "Female",65.6551278606797,143.533127451717 "Female",60.2664077661042,113.069568924979 "Female",62.9358925657025,130.843636394652 "Female",66.1189435261362,167.573556523126 "Female",64.3062188192723,132.864068200096 "Female",64.1733059984275,149.326567041739 "Female",64.035496100806,138.701315838669 "Female",62.6463522783996,122.336024322481 "Female",63.565374323495,134.800715092180 "Female",61.3073677559788,119.632028588423 "Female",64.6408569467034,119.329330186660 "Female",63.8975258060854,126.614512830558 "Female",59.3395680493698,105.298655206447 "Female",66.1238371607167,143.371408369052 "Female",64.6652423992274,145.979477385155 "Female",60.3150453482763,111.974874107803 "Female",66.8549765868893,164.243192515289 "Female",62.8593737917474,134.051640659371 "Female",60.1748993202177,110.776088773910 "Female",63.2819878471528,128.489854292 "Female",63.1368709433922,117.305005816988 "Female",67.2129641609691,165.078884979482 "Female",60.1616691929441,130.820809922092 "Female",68.9668978203634,152.430938001244 "Female",61.8950791076939,153.465823856868 "Female",67.7389204308209,172.362800365281 "Female",62.0641181848779,125.14364095733 "Female",62.1928870965855,121.589198303805 "Female",64.7357322605432,132.594245447223 "Female",63.9590584877951,159.709278783747 "Female",63.9247280105252,139.653461308064 "Female",63.0144591887414,144.440138600963 "Female",63.3491860007723,144.072707031161 "Female",61.736889726249,106.438565925417 "Female",65.3189456601437,154.480913000963 "Female",61.8356708000742,118.361356571278 "Female",66.1518928600605,145.176662951848 "Female",66.421672932557,142.122820700552 "Female",63.526835643402,131.806333295944 "Female",65.2000728688147,148.078098820810 "Female",65.204446002775,130.22819503886 "Female",67.4622860330137,156.307310695025 "Female",62.980180936594,129.923012583355 "Female",62.1593522677598,121.788931972887 "Female",65.393018736976,142.924166859430 "Female",68.8236920802898,175.031807554806 "Female",68.1868137585487,159.033589991075 "Female",60.0424196500998,97.0346553321367 "Female",61.4346865096745,119.599116550570 "Female",67.4268136434204,166.937120481574 "Female",63.5789823320194,117.709241852597 "Female",65.790395145954,119.670671677234 "Female",62.6384566268964,136.629533603639 "Female",63.8230624833228,136.825948505328 "Female",64.904535602698,134.818969330538 "Female",62.4251792410459,117.929910137109 "Female",59.7470964261647,102.354857714544 "Female",63.8922616137393,148.971114310970 "Female",65.1769471193764,145.339906260729 "Female",65.7811451594002,136.661427239037 "Female",61.274773473752,110.287342471998 "Female",57.2026600428674,103.962705070983 "Female",65.0112525643062,143.397890270859 "Female",62.490957539387,137.086322357491 "Female",59.7356852588024,129.004417604914 "Female",66.4818952901101,148.549695379998 "Female",60.9586661236777,123.157813951721 "Female",62.493299806759,118.646287183217 "Female",65.2409408815651,155.400046346551 "Female",63.7731858120352,128.278800934202 "Female",58.8720290218358,92.2682046392832 "Female",59.8217110299354,139.528116833386 "Female",64.4724181061073,146.841964238380 "Female",62.6162136007295,127.965249309513 "Female",64.2617237107347,122.383432102662 "Female",65.5264136137104,128.923343708277 "Female",62.3610923797426,148.713960108758 "Female",65.0256114310639,136.853110734144 "Female",63.3273036381936,144.273382407219 "Female",68.93769670614,157.537640131473 "Female",63.4641092316783,134.045732124858 "Female",65.0841673833511,137.168119783590 "Female",60.5856377146781,116.430074671494 "Female",63.204342264444,133.681868654585 "Female",61.6257831684427,118.762925311885 "Female",58.3865759394898,102.063907340682 "Female",66.6505397130851,158.221301296675 "Female",58.523290492565,128.777739142407 "Female",63.251340474777,143.823094536532 "Female",69.4459321022436,169.819908603971 "Female",62.4473335177222,122.606806538548 "Female",63.0682029208552,93.424239299503 "Female",63.287513696204,121.250406002931 "Female",66.0978769473177,154.560236711613 "Female",64.5297549662538,124.970022965080 "Female",64.0607871527546,131.307690879035 "Female",63.8724251271273,130.211705629183 "Female",69.6110142466156,170.025642721664 "Female",67.3900200219722,169.626607720642 "Female",62.850449248909,127.518885313523 "Female",62.9387181119805,124.292191869965 "Female",66.1608844979343,155.906891730000 "Female",63.4012051394349,145.316583178589 "Female",65.4709896468326,155.580439909483 "Female",59.9976945996976,115.812815561687 "Female",62.5760803936105,111.379473827934 "Female",60.8175901896942,133.879482558839 "Female",64.0857388302738,126.994626284417 "Female",62.246303994358,122.034176101357 "Female",64.487842187011,148.225840518359 "Female",60.3985158082608,126.983076621141 "Female",61.4801465364967,108.043177513285 "Female",64.4966552348729,139.814160267031 "Female",59.9221619954801,125.547187166399 "Female",56.0666363500952,89.5712047395611 "Female",67.4260159958821,157.303923669967 "Female",62.6400190057392,114.822802773880 "Female",59.7628981871236,105.152517099366 "Female",65.9979415886757,141.890779030964 "Female",59.8095342466238,109.657436717525 "Female",67.691510479391,163.903050235576 "Female",61.0122336535468,108.967859722161 "Female",61.7896119717584,123.681887562023 "Female",63.425282464969,132.639019207120 "Female",61.3325812835183,139.792206193116 "Female",63.9993197515268,145.689533288481 "Female",69.3133813369547,154.484541722811 "Female",61.5940662630643,122.221535113172 "Female",64.8857482253305,130.615848087016 "Female",66.2643659171894,141.299454688788 "Female",64.0785595533523,132.366492127765 "Female",61.9265149061287,131.735986660939 "Female",63.7530688529558,129.872985401821 "Female",63.9952980877785,130.577662378410 "Female",60.3038675679378,120.622362166802 "Female",66.0547512513851,157.67553246724 "Female",68.4405667603505,153.584230580735 "Female",64.6875356311116,119.024652360040 "Female",63.6124256935818,123.743338578239 "Female",57.9684983865593,118.720590126508 "Female",62.9935497718745,136.673908627291 "Female",62.6570400938303,131.731382544018 "Female",65.7880838429692,160.831030062061 "Female",60.24552998231,135.511964950233 "Female",64.5163492264064,124.592496077081 "Female",64.4367122254289,151.923769902396 "Female",61.8256451154768,121.277607966454 "Female",62.9372692153786,127.725289343243 "Female",61.0354898793316,111.326962428825 "Female",63.4111696780531,129.196149161022 "Female",57.4722523992131,96.3135565290208 "Female",62.9304242471874,136.596762626887 "Female",66.2027558306022,151.357788892023 "Female",59.6011545333216,115.227993009646 "Female",63.86336603658,116.948330067137 "Female",62.9811500235096,154.428477515132 "Female",63.0172574419779,132.008180674873 "Female",66.4166018776215,142.940118909056 "Female",64.9861569954852,148.171777071186 "Female",59.2663032433087,100.648523552276 "Female",68.7100749700579,165.110459051454 "Female",64.4341430912102,138.002083669234 "Female",63.0751976139891,127.702046958862 "Female",67.0708979448361,160.413714975911 "Female",62.7473570491129,139.885857751443 "Female",66.367317765652,156.421116638841 "Female",60.1296602830221,122.924091237250 "Female",62.7455231879435,132.733781507518 "Female",67.444719078617,162.436362745506 "Female",64.7560205104423,142.125889487156 "Female",62.1906716426627,119.767149930255 "Female",63.3384595940784,126.381659570671 "Female",66.27929714891,144.894263633821 "Female",59.8949240533751,129.173838843876 "Female",63.2169648195118,142.426466263503 "Female",69.0997048970776,177.018151597129 "Female",66.1637280851813,138.032075185304 "Female",61.2864640570681,119.536035232557 "Female",60.2742338674115,106.853923912948 "Female",63.2179335547522,139.745985788187 "Female",63.5164997476628,120.810049058451 "Female",61.8161479812756,116.247391952186 "Female",66.5558866343793,158.661410589980 "Female",64.485088567056,133.322581360073 "Female",60.8720437479104,120.329728806899 "Female",63.6080208533715,136.642739703650 "Female",61.3061781326752,121.889180635039 "Female",63.0590091568904,116.461142760063 "Female",56.098245784398,104.954100411731 "Female",63.1920753912695,126.331898826172 "Female",63.0346856482085,139.281282721488 "Female",66.9215440184083,145.872308038656 "Female",64.8021887988608,159.877141996378 "Female",64.5066921583708,134.613710172598 "Female",69.3031109315133,178.779110673022 "Female",61.3730951205005,111.307885465738 "Female",65.7759283871753,160.861750569939 "Female",68.4589107358197,176.152647563730 "Female",60.0985913347773,122.744885450502 "Female",62.5477598731306,123.965162480870 "Female",65.6004495046736,151.462245088581 "Female",67.6522189471494,174.834610855242 "Female",64.3752497169112,129.305335468191 "Female",60.9132709085014,123.827603454657 "Female",61.9904800146353,110.925974999292 "Female",59.1333142472393,129.537708759531 "Female",62.8665688313445,111.469959586106 "Female",65.1048453706957,142.292705036780 "Female",61.66262810901,112.565576386528 "Female",58.6327204671158,102.469086784996 "Female",69.6359311508284,177.589351352631 "Female",67.5524040763352,160.726511331665 "Female",62.1803193786528,135.610834999441 "Female",62.311533182375,136.236832642485 "Female",60.8589900079646,114.214034424918 "Female",66.1668762591729,146.678954584022 "Female",58.1260240211065,98.4028512342667 "Female",65.6470552009538,143.929981334410 "Female",66.475461065156,149.205171164975 "Female",63.6247193052323,144.046264235287 "Female",62.4147683634091,137.053633683289 "Female",65.4601013986786,159.043161986306 "Female",63.4229332047802,124.689046619650 "Female",61.3680454092299,124.915823563304 "Female",64.1210647473445,146.801099540977 "Female",59.3474682310805,100.092095362701 "Female",65.4486288644,149.817241126221 "Female",57.7903892106098,103.312056196025 "Female",59.0259533939983,116.811511736994 "Female",66.1791113608416,142.628593569601 "Female",64.0145859014987,136.703387469422 "Female",64.5917165363395,154.931947987984 "Female",65.096876700842,142.369714823914 "Female",60.7315426506603,113.230495815602 "Female",62.4165867360014,129.753823130793 "Female",59.447426401833,112.118359627860 "Female",58.4904670158935,93.1924386532048 "Female",63.1140543077552,145.26879625192 "Female",62.3960942599344,121.512779746521 "Female",64.2183153111119,168.546457720601 "Female",62.9841806506908,138.924058552704 "Female",62.6392050525529,123.991476879123 "Female",59.7352786738488,124.842659567033 "Female",62.704790197731,135.590644484552 "Female",58.1344963096015,89.3572282346796 "Female",65.7343489284889,135.642651899425 "Female",60.8468627311246,97.7246018780605 "Female",63.1669012409128,138.029804103007 "Female",63.5046948605898,123.504327795153 "Female",63.1108328639923,135.804858726326 "Female",69.1829595439274,175.9928612072 "Female",65.113845492676,153.880192555540 "Female",62.6752082392742,109.147605924986 "Female",63.9804717552887,137.033434098098 "Female",63.6504413061419,125.592163659089 "Female",65.3443102960553,140.587103680462 "Female",64.0697361108965,128.569472211131 "Female",68.3782045384245,157.524368370239 "Female",61.1166085358772,101.097499662153 "Female",64.5667983838582,137.43164487291 "Female",69.3518897897901,182.659368946149 "Female",63.3938511213131,134.33174640659 "Female",56.7644564465812,79.1743758333647 "Female",63.8325125789469,132.507460012275 "Female",58.8502944694345,119.452016573893 "Female",66.2475915895005,163.577028617583 "Female",63.0740024560145,134.445701930690 "Female",63.7625843367692,132.611074008374 "Female",62.5145777561098,129.174322272705 "Female",61.8275984497385,123.822844285578 "Female",63.4912694222218,123.186628805130 "Female",61.018473982121,120.442300701328 "Female",63.4896439153582,133.142449306516 "Female",61.5282119837784,117.654738347276 "Female",62.6529476723371,122.756385438491 "Female",64.1930817701103,137.840193859934 "Female",65.7995608057062,157.293742488265 "Female",63.7870504011948,120.838528221416 "Female",61.1862590325358,109.582355619731 "Female",59.3538310142786,106.108275084455 "Female",62.7049166540007,142.789501031010 "Female",61.926249766248,113.648007121316 "Female",61.9910742589966,131.410731903028 "Female",58.1624630438929,105.147024548327 "Female",67.4118336321295,147.360805343919 "Female",62.0747828069918,119.659324498929 "Female",65.4980583420813,159.089781373979 "Female",62.6152799119337,128.168140868402 "Female",64.4337554607933,162.524500625397 "Female",63.4492106192036,132.018784650726 "Female",64.0360087547458,144.489626342583 "Female",62.8679776104447,122.781815955197 "Female",61.8449657391164,110.981625519654 "Female",62.7958160718507,128.806293343160 "Female",60.396830471111,112.882706758414 "Female",61.9309590529235,141.441314335719 "Female",66.4725675389246,162.580953949789 "Female",61.6114003651734,124.531675552031 "Female",62.5793233659445,141.375098245458 "Female",62.0353191067829,119.418134889076 "Female",61.8730330852759,122.538528152337 "Female",64.8334732923971,138.521671353659 "Female",58.9179608162174,111.334359330355 "Female",63.522955031307,136.570485660579 "Female",62.353340648806,124.067387848950 "Female",65.8731063086245,155.915543502642 "Female",64.962069048165,141.482513741701 "Female",66.7224387982738,122.793732523590 "Female",61.3111924053438,113.519613719958 "Female",63.5017993703251,123.075560184459 "Female",64.6558482819269,143.826786815177 "Female",69.4202812301656,181.853797589974 "Female",62.3379569642366,107.003876853630 "Female",63.9444056874588,126.978568506184 "Female",67.6146309369832,174.322489846433 "Female",67.1170914153179,154.172579921507 "Female",60.5191830071578,133.539208160737 "Female",61.8356523835951,141.579654053645 "Female",66.4779569676677,146.579576770180 "Female",68.452418975902,171.573255351871 "Female",68.1786580886526,144.333579379023 "Female",61.1188703556325,108.438995490801 "Female",63.395793315672,145.615016741257 "Female",66.3244698073095,148.670800681898 "Female",66.0456086685346,143.327828781158 "Female",64.7424445716161,167.141598260590 "Female",67.5113620182894,159.949725788353 "Female",61.7751114962527,113.153725868315 "Female",65.186934585604,135.432340852366 "Female",60.4256341356745,130.629367670644 "Female",63.4607461749803,127.305711380606 "Female",62.0929152465116,116.764230039087 "Female",63.6645011655707,132.295552658609 "Female",60.0508463603663,115.656207992136 "Female",64.2288700516471,140.997714930396 "Female",64.3341068573576,138.739445194193 "Female",60.6073459319762,109.05140536388 "Female",63.9248923156247,132.960485399147 "Female",63.7678147266928,134.751636815619 "Female",61.2071346548003,104.514575966614 "Female",64.226355415332,152.972108288524 "Female",62.0119169320373,125.286160354856 "Female",62.1755194406988,144.184612871390 "Female",59.850244716096,101.716162645895 "Female",63.6425966811643,135.422802487943 "Female",64.9858098368903,141.288353684465 "Female",62.4764273743129,132.518460719584 "Female",60.1855418545228,102.098732817094 "Female",64.6282947362038,137.174866100291 "Female",61.4241094209123,148.114807352452 "Female",64.3741026831914,155.082744562303 "Female",61.4646336735126,120.715162714821 "Female",64.6508177806484,135.033626423437 "Female",64.1874572720678,133.350625059257 "Female",68.7108446478983,178.870748110566 "Female",64.293269435426,146.701616834121 "Female",63.5822004848389,147.650478991119 "Female",65.2191144765081,138.569994661066 "Female",66.3659022452799,137.287606985786 "Female",61.6168709720384,117.133586874945 "Female",64.7954292522828,152.918265027715 "Female",60.6843760788939,118.077696698914 "Female",69.5343008050466,163.796138792924 "Female",66.1780910442507,157.792424198492 "Female",65.4275869144579,143.336330917209 "Female",59.1670438872346,109.870097951339 "Female",65.2960157586116,141.551239478059 "Female",60.2577763633924,115.389785852213 "Female",64.4320508457608,159.335936926435 "Female",59.3847989690841,109.688441653679 "Female",64.8395638981968,137.700086545495 "Female",65.615611629581,123.498255823953 "Female",66.9346286716035,143.203782009350 "Female",63.6741671113923,135.830954683939 "Female",57.7648078883808,89.7899984409701 "Female",68.7521759317412,174.580379341546 "Female",65.9621872417718,150.763548055290 "Female",64.2718562267311,121.741340005636 "Female",66.5408134231897,150.971358256648 "Female",66.8354886156107,155.995109221324 "Female",66.7276319099223,162.598816648826 "Female",63.8828040482993,139.202834593304 "Female",57.1580335208417,94.263202648759 "Female",66.7939270749045,127.096778305724 "Female",60.8097170438054,120.940202299242 "Female",67.6279194508829,169.687934742153 "Female",63.0433833566499,117.033984396597 "Female",59.9065278616466,105.649773684418 "Female",61.5295834626432,126.352118738195 "Female",66.011997702534,147.196045864223 "Female",65.8313688925656,147.15046321916 "Female",62.0549899082979,115.767138046494 "Female",67.0449228375836,140.815517479934 "Female",62.1305677393144,125.283478076033 "Female",60.2848014518491,126.956702006286 "Female",64.9814987272783,140.400766521233 "Female",61.7245405582376,134.255543725269 "Female",67.9227634574601,172.168292894246 "Female",64.84395682334,143.462978461094 "Female",65.0113805431648,151.189080372441 "Female",65.0564113126271,151.113500080107 "Female",65.2202120160348,150.441300495906 "Female",68.3332596673114,159.089482900375 "Female",66.4365254185167,129.358950668383 "Female",57.7955339974672,112.458167910890 "Female",63.067693652116,131.492455984797 "Female",59.772731464376,127.065546312256 "Female",58.1186990006697,116.396779983347 "Female",57.9366743216043,97.7082846904373 "Female",58.8232618583708,108.359609085696 "Female",65.5446192385114,142.703632475422 "Female",65.3350518517926,147.102398686601 "Female",63.0137307892522,115.961858993977 "Female",65.7285801912972,137.839895869937 "Female",66.4698209360831,152.809403175247 "Female",63.6379643111756,131.420697110637 "Female",59.6237144814768,107.375239880095 "Female",63.957320935815,148.369413924417 "Female",62.3635508968891,113.926880675428 "Female",64.0888584285991,136.792488653510 "Female",64.8464594227474,139.169260550047 "Female",62.5545836634636,135.665547924939 "Female",61.2788124967258,135.081159304844 "Female",63.2314173253626,138.831252078422 "Female",63.417439990576,144.873936146368 "Female",60.1241678224455,109.388928394541 "Female",67.8441031587467,171.736596128538 "Female",63.071178369542,145.870637337015 "Female",63.4003331722617,147.604935212835 "Female",62.6879280393794,116.271542013176 "Female",62.678265448176,120.905938733318 "Female",63.5876376035106,117.440810971778 "Female",63.3319130407544,126.108328910639 "Female",58.5585125217826,131.404223879543 "Female",65.068037693219,160.800725592022 "Female",63.879595826396,143.908906921624 "Female",65.4840527678581,144.410070470814 "Female",65.2033567140227,125.198700579601 "Female",64.5596218249224,151.291990541091 "Female",60.4599065958028,125.463911259826 "Female",64.920239193102,152.899243244218 "Female",67.1224220901005,165.324899283495 "Female",72.4297709549193,177.969532057211 "Female",65.2315621863496,174.470637325615 "Female",60.8150594252685,108.708421258134 "Female",61.6751768204811,134.708122322579 "Female",65.499938492071,171.131213210522 "Female",63.8344907670014,133.776896651513 "Female",64.2582611393541,144.080612407411 "Female",61.7086682523646,132.915088904272 "Female",63.9110236867082,128.094073872448 "Female",59.0262558060589,106.370538958630 "Female",64.7993937583322,146.036839833797 "Female",65.4502630634137,150.338793654030 "Female",61.8931668681119,128.557198366814 "Female",56.8859710456207,99.873592652194 "Female",59.1412467089945,103.026622174333 "Female",63.4768957086912,127.336697539953 "Female",60.6641682305455,111.165788105148 "Female",62.9859804938356,129.449238632723 "Female",69.8090871215674,162.650675686815 "Female",66.4757110932144,164.865386638469 "Female",61.1134980230268,114.433436035660 "Female",66.3702136143256,149.478953346151 "Female",67.3817998906326,144.306712391127 "Female",64.4032728250128,162.561183574085 "Female",63.5008257602947,126.860582596528 "Female",66.1905716647731,149.581804645982 "Female",62.3810466339444,117.819984140482 "Female",63.97034122017,146.302666629339 "Female",63.5353054428129,121.115927158397 "Female",65.2714248589465,133.573311047081 "Female",62.0290144651524,113.888700265216 "Female",63.8041313556725,120.607957981681 "Female",66.0596612484963,158.535626059938 "Female",65.4063008453468,158.055365734088 "Female",59.3946454616342,124.212181865667 "Female",65.1307384470393,130.160045517050 "Female",62.8234429951876,126.796977867036 "Female",65.2799959581265,157.979981506673 "Female",60.3990119652801,115.416770678645 "Female",59.1706875044306,106.139635985780 "Female",63.9936166909938,139.86774919173 "Female",62.489080333513,124.175464892566 "Female",65.6242382442685,153.826971188466 "Female",64.3376567715843,135.043901093493 "Female",67.9170502294277,157.971823031305 "Female",63.7682118376327,143.723793978361 "Female",61.0194665614671,106.855294660298 "Female",61.3091084396778,115.788850140333 "Female",63.1095282917306,117.895846821556 "Female",68.2977185431035,150.146734705521 "Female",60.6892002966586,125.569601886453 "Female",57.5527537088968,98.6439631211755 "Female",58.7072357667941,120.253512026281 "Female",62.7036220063421,100.234800710191 "Female",64.567795559407,153.568256538341 "Female",63.0807403912198,128.478442313831 "Female",67.0539943713518,144.347355932324 "Female",61.4153067712281,106.295001359125 "Female",66.5355111276663,155.370872010890 "Female",63.7959572932735,145.878757210495 "Female",63.1261391707175,136.239929417406 "Female",61.7576643020811,115.581550799842 "Female",66.1921299825332,145.579208735676 "Female",61.6886831190551,117.631365742968 "Female",60.918302397855,114.033101789345 "Female",62.3667664952284,131.740460390606 "Female",67.3343483716378,168.626296087776 "Female",67.4436612888538,160.288167417213 "Female",65.6974573610416,142.157675048619 "Female",64.4972906112441,126.584642127197 "Female",67.2177194195441,153.989572015241 "Female",64.6736897170256,143.775262638953 "Female",66.085399677953,140.322403280307 "Female",61.745701431103,132.595679803653 "Female",64.9778759997047,123.699679626214 "Female",63.1923498898307,140.386703743264 "Female",61.737734964322,123.080062776970 "Female",64.217291687705,137.001510230805 "Female",66.1892085178543,126.376299874420 "Female",62.7887475838338,126.422734418834 "Female",62.3030668822716,139.194288951347 "Female",61.9763096967803,141.855825003357 "Female",63.1799477496157,124.90602445081 "Female",63.5626556671376,151.295244170098 "Female",63.8064817211739,122.779400220847 "Female",58.7205181329078,106.066862474914 "Female",65.4400923980753,146.958881516114 "Female",63.3171511186049,129.306269880838 "Female",63.1323807585613,126.483785003300 "Female",62.1901894196916,126.912515456222 "Female",61.2143488490394,112.915208906285 "Female",64.7152918722448,143.939716619654 "Female",66.7387303757463,144.412004792003 "Female",61.8627333444181,132.602229328457 "Female",63.1550467589118,141.487418151798 "Female",67.4198400141083,148.605734775702 "Female",62.6572940335873,121.087478035969 "Female",67.9907957276719,172.217648887405 "Female",63.138861742984,141.769751769082 "Female",64.1303410995415,121.292596753100 "Female",57.0726562519626,93.7461421572008 "Female",68.4143793384505,163.785138209359 "Female",62.5947589687373,145.987786783849 "Female",69.4064932432102,156.876698931138 "Female",63.1534331787895,136.621592575599 "Female",58.1178719316896,102.088966183677 "Female",65.2848633008434,125.131053617712 "Female",60.7606886780906,116.975427749271 "Female",67.5888398323064,150.380597436566 "Female",64.4282887433345,138.225737407810 "Female",61.1538660164304,135.425417795574 "Female",61.8113882295903,127.248292884252 "Female",67.1220031251137,148.826486086286 "Female",62.5494853771572,131.111181192592 "Female",67.1437307546759,155.831560422294 "Female",64.7989611645402,152.828705503825 "Female",65.9652742064042,148.800598054251 "Female",62.0875945279007,125.450263729454 "Female",64.1891453660802,112.507011538138 "Female",64.6242894563227,138.112329636081 "Female",62.2648301015387,147.964386978245 "Female",62.7785164006338,140.387944975753 "Female",63.074027226635,155.278109304186 "Female",64.2647144784978,150.071344850799 "Female",67.4182852960096,156.681836887368 "Female",64.3553428554025,138.311322814244 "Female",65.962277837649,156.096074244372 "Female",63.7323742116415,151.238789487023 "Female",70.3601232241529,185.848720873231 "Female",66.054472963575,145.139481166407 "Female",63.8780763249485,125.173586465678 "Female",65.8171735578993,153.341550871176 "Female",54.8737275315254,78.6066703120237 "Female",62.1999501039088,127.229606638475 "Female",67.4348643652968,170.955041477143 "Female",67.0707076121726,154.711459145125 "Female",64.0534944330628,142.999379460173 "Female",58.4040274115958,106.771114569519 "Female",59.150511426605,103.998976427179 "Female",65.4818317922621,134.954434856605 "Female",62.0971842483706,124.410835543093 "Female",66.358955997367,154.019108067268 "Female",67.8689541127261,147.865625304535 "Female",65.4252305778557,147.021035347300 "Female",63.7999588750213,134.947032581911 "Female",67.0229342238859,181.793068596532 "Female",65.8606286943176,165.414135012143 "Female",62.356371468031,120.662528666269 "Female",58.7222194137094,110.538417637148 "Female",73.3895858660697,190.078728869075 "Female",64.2583419546562,140.236766031172 "Female",61.1907163834998,124.463273163155 "Female",60.3802844905412,115.027231092651 "Female",66.6204476866371,152.275355644461 "Female",63.9533279065464,131.453081198777 "Female",65.946674297991,145.098144824548 "Female",61.8609237787591,132.473541569064 "Female",66.6835119027085,142.956797833686 "Female",68.2642123095288,158.793731631606 "Female",68.7319514535088,164.110188723456 "Female",62.3117478029964,105.146363088167 "Female",63.0750241664874,146.905558126176 "Female",56.8103172829116,84.1706947685606 "Female",64.0932233946195,128.417741153788 "Female",65.3374524964983,139.277280224493 "Female",61.9682943402663,132.765642087371 "Female",68.0976891521211,152.179216712455 "Female",62.7452648071635,133.292831832067 "Female",61.8665605034954,118.764489912888 "Female",61.7279285756597,132.711551352170 "Female",66.2094519012334,140.506413126246 "Female",67.1513382982195,156.302306778909 "Female",66.1381724292227,152.083122334257 "Female",64.4460036682061,142.821216631186 "Female",62.3692957740735,129.344962657775 "Female",60.6402661925309,118.136726961146 "Female",64.5184730055432,129.803719307602 "Female",60.3886526068239,124.982197346581 "Female",59.9399817113234,102.466949336749 "Female",60.9161961014147,120.943247945087 "Female",67.9990993625186,158.572006495653 "Female",65.9090465431074,149.059448178539 "Female",62.9880148156093,142.543946866373 "Female",63.3835055681941,125.662081296122 "Female",68.6111164962452,174.978168656253 "Female",64.0962071844308,146.640546215490 "Female",67.1117394223513,162.604791122585 "Female",59.5158900942439,124.889617900995 "Female",62.2357469976516,120.421334011018 "Female",64.9393881766096,149.162905979376 "Female",67.724592112743,161.353307368869 "Female",63.9356970015143,142.987758923614 "Female",65.2152313261256,155.611441352197 "Female",63.758114276467,152.039541910673 "Female",63.9976955829103,143.341661234668 "Female",65.8815129204047,138.897783066567 "Female",67.6798718630526,175.012799747873 "Female",64.3901691403194,125.610002697303 "Female",67.031156236937,154.484356890303 "Female",57.1125394233587,98.794038096719 "Female",62.8995280524548,117.422674731288 "Female",64.0450904513746,138.761173888071 "Female",67.7812819698204,162.155569591109 "Female",60.0130777083266,113.878352921621 "Female",61.4406566719271,126.299913218738 "Female",59.7422795757212,95.933285537061 "Female",64.3350561766612,138.702045792777 "Female",61.0434450562291,113.182538192302 "Female",64.6337945235674,138.146125324249 "Female",66.0949579884856,153.264188181073 "Female",59.6056316088103,109.391842484274 "Female",65.499346929538,152.927061091038 "Female",66.1055024468506,154.59545113415 "Female",67.1068511176505,151.911376208450 "Female",61.3017880778946,127.066942258631 "Female",60.8221181358334,127.441434013439 "Female",61.3789517735375,128.444527601689 "Female",68.9376550725009,155.689830924000 "Female",64.912130321443,151.491811759122 "Female",65.3024106069673,149.462818196512 "Female",62.4856911318762,116.460806849906 "Female",67.4790516747645,160.882681184436 "Female",59.4249121111149,94.7470145707541 "Female",66.9028551373297,141.31754755188 "Female",62.8471579625354,152.610384327734 "Female",61.4353315194174,125.978766739902 "Female",64.6503983040135,143.510788498396 "Female",59.36813918013,118.764518263849 "Female",64.8304398670452,152.942983011778 "Female",63.5058944615779,138.221630721892 "Female",59.9085446722934,115.525915618152 "Female",67.2087362144735,171.184913466072 "Female",60.1433219478219,118.797659019963 "Female",64.2815984124147,135.966146065618 "Female",67.9456742479996,168.894471531594 "Female",61.4544833672535,104.313445031433 "Female",62.3437817093089,129.9661831447 "Female",61.9589645904203,132.692405283877 "Female",70.7420859115169,180.053865742702 "Female",62.033045348303,108.174020271596 "Female",64.2691371202651,140.571139361807 "Female",63.1484373509699,125.386925172440 "Female",63.7127298392637,138.940035758568 "Female",63.9817648879527,147.812868567064 "Female",64.9269000352668,147.923955264791 "Female",63.336849817675,137.975016013827 "Female",69.8614309758372,178.391841824564 "Female",65.9122173981784,159.231768186134 "Female",67.1251887734022,168.063934159781 "Female",66.2223287297128,144.686304641875 "Female",63.3284314887729,136.393240969392 "Female",61.9169992927485,126.878449400850 "Female",57.7832316168349,126.143595942272 "Female",58.7384288577014,96.761941400132 "Female",63.020298998632,137.899014653914 "Female",61.0179883521021,120.139649263721 "Female",67.6744631903692,156.513341078976 "Female",60.8346811681980,123.805006249194 "Female",63.3325826301889,163.079037385705 "Female",66.499866553481,143.75800686392 "Female",60.9258681631907,131.939426865014 "Female",62.8177799430666,122.412693365632 "Female",62.8446674819454,132.368977925599 "Female",65.6901378510322,142.532357544652 "Female",60.9420995031292,126.713649298855 "Female",60.331972034375,86.0590456033491 "Female",65.0738743041411,141.810065009845 "Female",64.5482456058877,124.975784487198 "Female",65.3771683602314,136.199777295795 "Female",62.2515593558823,135.932372668237 "Female",65.5694612084522,138.539317263762 "Female",68.3032330596564,167.999553483597 "Female",64.7158856942041,139.522762190142 "Female",62.9808612183184,132.096614760346 "Female",60.7542193800619,110.133724045189 "Female",59.9978055592368,113.651111325544 "Female",61.2178368576599,115.655719719477 "Female",66.185538128157,154.320800770233 "Female",61.2862054274955,132.274304269493 "Female",62.8340200525734,132.169244423955 "Female",63.0994604589114,133.568111604138 "Female",63.8148466055053,132.213416243717 "Female",66.1722123342929,145.798122128445 "Female",65.1453807924175,138.422641654877 "Female",57.2581173592998,101.714182141616 "Female",58.4252325365498,105.754897536208 "Female",66.8193480373946,149.658877299298 "Female",63.6948823236959,125.929952145491 "Female",61.2669592453875,127.880410099806 "Female",69.4343482796835,162.552096632184 "Female",62.9839299388613,129.158382941188 "Female",64.0631037148198,114.059617387543 "Female",64.8534890963666,147.527955124934 "Female",67.8118246856619,138.097703200497 "Female",62.8197521013342,125.441175745584 "Female",60.5709071131084,122.912179937591 "Female",61.6223351925267,109.725287141862 "Female",66.295414129318,134.615343855474 "Female",61.2535789499672,109.681757895934 "Female",66.3252156242145,157.638024347118 "Female",65.4316749066955,139.71750100919 "Female",63.6880024112429,136.353418523922 "Female",60.2987012552819,119.483353771461 "Female",63.6112065397594,136.645861546137 "Female",63.5401053342686,133.590940892357 "Female",63.8536871134424,147.66914551589 "Female",64.8523676532343,140.30452322493 "Female",64.6731218058782,130.312035326567 "Female",61.3877719616947,123.018546084783 "Female",62.8299497248132,146.454147814435 "Female",60.1818845062468,131.380101247012 "Female",63.4764268326787,130.647845260601 "Female",63.913694758352,140.642934772460 "Female",63.6778366219508,149.897013259758 "Female",61.2111954742087,118.396130946667 "Female",63.8516580478874,144.760169070485 "Female",64.6585655522324,131.119847802229 "Female",62.724724856915,158.285459522092 "Female",60.0513579918729,124.679149901128 "Female",64.0835397150341,134.313713406345 "Female",65.2115124633965,148.994332578094 "Female",64.0501612110434,144.662003387572 "Female",67.1077289871026,161.969222265680 "Female",62.8423241680706,134.991464818202 "Female",66.9817308897472,158.847955733687 "Female",64.0017458581503,118.459623951290 "Female",67.3248226273167,158.561787786185 "Female",60.2285922843592,120.970448654204 "Female",61.7199267544054,120.229463428618 "Female",62.8074928224685,137.580036588725 "Female",61.4429503705955,127.601754089176 "Female",64.5068289769826,138.614774648269 "Female",63.4565469946693,138.206754175679 "Female",66.4492182845919,152.482610299665 "Female",62.3560032096035,124.723533999847 "Female",63.620062443468,134.723769198402 "Female",65.168887407263,150.717289984015 "Female",57.1481980802145,91.6454729392662 "Female",64.5241474356795,129.201505959375 "Female",59.9568954281211,101.503752931644 "Female",64.9453845421275,124.231937266715 "Female",70.454402452766,175.059003393571 "Female",66.5333927212395,151.827808060294 "Female",62.5669643808298,142.376162711184 "Female",62.3612846237029,143.557780610433 "Female",62.3577269529011,122.112061020402 "Female",66.9383452250368,156.021558866271 "Female",64.7562799058097,137.348471194270 "Female",65.6732135976802,138.473527651664 "Female",67.1008369422018,159.590702407731 "Female",61.4154289542813,128.029571806619 "Female",60.1495587711234,100.751235761583 "Female",61.2699716814111,103.718223713730 "Female",63.3379918103837,131.737184360750 "Female",60.8599498021097,107.388929941296 "Female",66.8342583328865,165.092926318781 "Female",64.753141205598,141.389346471343 "Female",57.2701470456334,94.4996341477564 "Female",65.5914099010075,150.637774547655 "Female",62.1664123872033,132.240797320596 "Female",58.6222544783433,98.5368809917975 "Female",63.2374126598571,122.229065088568 "Female",66.2183144165818,142.655802546228 "Female",62.6704888986353,148.761225740650 "Female",65.0431649495389,141.853885013421 "Female",70.837103218395,192.160584982439 "Female",60.5738421497342,116.811114935440 "Female",61.9848725854007,138.869504184458 "Female",57.6475214876719,99.396030767706 "Female",58.6806647144322,91.5460043757612 "Female",59.0832025013209,99.331383442546 "Female",64.5983761275572,141.477629830916 "Female",63.3683107754827,149.115504777396 "Female",65.5673753765178,137.022386265541 "Female",62.3378624459132,129.256562323502 "Female",63.447582074036,136.324498357820 "Female",58.5312456353175,110.589777575260 "Female",63.7693560706991,145.403687380832 "Female",62.7998870781647,131.110798848857 "Female",69.1693527311278,172.795295100148 "Female",65.152228436634,147.691633324541 "Female",56.741741124191,103.540488116788 "Female",62.3974050001003,134.210706732141 "Female",62.9685208290876,126.822728820300 "Female",60.3207411072769,112.033261433572 "Female",65.2035516077722,142.421233485422 "Female",64.6194742427852,149.673123060416 "Female",58.913825870141,116.421136368464 "Female",65.0224221134756,149.594116030134 "Female",65.9496610162071,155.85347560809 "Female",61.6508330203639,107.723538064984 "Female",63.8915421651371,133.290687827197 "Female",64.9550590860317,125.130920214640 "Female",60.6846789669358,101.132359099954 "Female",61.1352148616206,109.509108717160 "Female",62.074058987907,121.95199423137 "Female",61.5246052888477,125.01823288843 "Female",60.1680232842102,113.046437988713 "Female",64.5743138651905,149.401408289389 "Female",68.70900894262,151.337910856476 "Female",63.4709314682854,130.291661305178 "Female",62.5342300513089,126.162458344502 "Female",61.7360610920102,145.559462503418 "Female",66.4890743902074,138.509139827607 "Female",57.5535052100887,108.151688153841 "Female",62.3210432270616,123.962780274961 "Female",65.363737273052,145.92867237291 "Female",67.2183941492729,167.449994857398 "Female",65.2524050978778,143.888330008059 "Female",67.75797031241,148.490398568957 "Female",60.9468462262195,136.655841082259 "Female",58.8390938792718,102.848048412167 "Female",63.5335385140987,130.429148745009 "Female",67.0160108447014,145.559180885427 "Female",61.3500917381204,123.908500254437 "Female",62.9891986938145,142.549562058552 "Female",62.044035447391,114.478723303558 "Female",60.3052182074258,107.978308854213 "Female",62.5936305835178,136.760569754285 "Female",65.6555249020193,140.942519931258 "Female",63.9288492009517,142.203868679225 "Female",64.0357060393282,139.325029610765 "Female",64.7401256289334,147.269670454769 "Female",67.0699084000576,163.451650985915 "Female",56.7371834718755,91.6054372300519 "Female",69.8941265119169,172.121606024802 "Female",63.4725267227505,136.918575166116 "Female",64.3789118730644,127.38635218433 "Female",62.8111019243342,117.181701114000 "Female",62.7063378830046,126.98432139872 "Female",65.4002729606167,144.768076577208 "Female",67.8631429344428,163.022806128078 "Female",67.7705094932964,166.779502140496 "Female",66.088502275048,155.815647833557 "Female",65.7884934046996,156.867498656085 "Female",60.236390402201,123.863208510544 "Female",65.8652442036665,155.248900282561 "Female",61.1900488527784,114.727957619958 "Female",70.020252714737,167.312358529085 "Female",66.5641801142713,165.931397501618 "Female",64.4678892996281,127.852736440951 "Female",63.6192890739514,138.508770436753 "Female",66.228131947261,141.604855301098 "Female",59.4430400338284,117.174651470467 "Female",62.1686039925893,126.809692140703 "Female",65.2221818190445,154.340405321502 "Female",63.1128888936653,133.514246442373 "Female",59.6328159944511,101.4551294287 "Female",58.9721238299542,112.975630066303 "Female",66.297345404932,165.014955877164 "Female",69.6417708048343,186.206456202357 "Female",66.425983126052,153.326613520577 "Female",65.6383694242505,141.232385624238 "Female",65.0726663206964,145.668534217610 "Female",64.4563122365412,144.850698434417 "Female",55.1485573624105,88.812412112758 "Female",64.5204306080672,138.789809264946 "Female",63.6525136467814,132.688211174968 "Female",63.8845491017559,135.846193989745 "Female",63.7207663192273,130.086167873638 "Female",66.597740053578,152.242961212192 "Female",68.0359068831341,152.125020639838 "Female",64.6301997551396,155.220813662508 "Female",68.7485485767874,165.900896658328 "Female",64.128616235425,145.236805366237 "Female",65.009259176003,145.823201893364 "Female",60.7549137356756,112.405120757319 "Female",59.4901983102036,102.814527107089 "Female",61.967955845218,133.262532664884 "Female",61.9849693113418,118.215457726561 "Female",63.0887894851157,125.867080726794 "Female",60.4193072261068,101.540179741294 "Female",60.1013351878586,106.869890760256 "Female",65.3677139712662,163.352062211233 "Female",63.9244473864095,150.019817171016 "Female",64.4339347618679,135.26994152491 "Female",61.6993301976784,121.053641191411 "Female",67.9358884779102,154.104349404932 "Female",60.150030714028,103.979162647724 "Female",67.7551178489546,162.907242925103 "Female",69.3236135696079,166.637555472959 "Female",68.9844684124081,157.32504118728 "Female",66.6135292349657,148.60525480615 "Female",63.0958282253417,142.565361070732 "Female",63.0502034249265,128.227887852603 "Female",60.646987640002,123.862430020858 "Female",66.4843268376444,161.063685952681 "Female",63.0829224692568,134.265299349196 "Female",63.7577282412983,134.724986778298 "Female",66.7940653186315,144.836830671716 "Female",62.9609988825111,137.245971950026 "Female",66.1089601111588,164.700948899750 "Female",60.8262004124727,104.232114891407 "Female",62.7543917548626,131.292879658791 "Female",61.4392509056909,124.260070655872 "Female",62.1199686097678,136.721544394352 "Female",58.0870951473390,94.9448343436297 "Female",60.6861674597862,114.046828121920 "Female",62.3884257657738,129.623800133339 "Female",66.1864525265963,156.380922966499 "Female",61.6732048619503,133.188976343455 "Female",60.941103031278,112.428986702258 "Female",65.3748553420079,136.986076153268 "Female",62.325635883769,110.963512482787 "Female",61.686895702723,118.738642506669 "Female",63.9497389896002,142.364261590957 "Female",65.899989603729,159.849823425562 "Female",59.5771885272637,99.6584919612722 "Female",63.0433846696863,118.641681002697 "Female",65.6907351497898,139.179987134382 "Female",64.652558641845,162.593281212831 "Female",66.2344473885115,147.553007231584 "Female",66.6898286494956,174.328400227442 "Female",61.7444361798333,125.448543149665 "Female",64.3417048328623,138.297275974031 "Female",63.985140693973,141.067356591485 "Female",60.334171278339,131.049008259448 "Female",65.2704268724238,145.614147752515 "Female",64.9085097037607,142.550309006317 "Female",62.2428760312028,139.400353264560 "Female",59.3371092614999,121.185995798438 "Female",62.9696937158732,102.853899237465 "Female",64.1678707365579,143.413253277456 "Female",63.195756348394,114.127221548767 "Female",64.4167204087049,134.429990160312 "Female",61.4943422409913,121.272604707266 "Female",68.5338079165091,156.702269811077 "Female",61.6263865413227,108.381453928707 "Female",65.939828117502,153.101528506311 "Female",59.2425679866762,114.740944746610 "Female",63.957785121726,138.386111841329 "Female",64.2065160335796,150.670588139326 "Female",59.413107337428,103.386161328921 "Female",66.503762374069,165.808363945837 "Female",66.9866259232447,163.573336356195 "Female",60.9747908404808,122.748005799042 "Female",65.8208644494043,150.946715251891 "Female",63.8600242953545,147.642319968037 "Female",67.1134012949861,165.501254256483 "Female",65.8492827529309,163.498867379070 "Female",66.6508733115932,156.037047782656 "Female",60.9531566323166,119.183239508735 "Female",65.4087818474944,142.904527674887 "Female",63.4141425020296,118.771264940045 "Female",63.8709097270893,129.587864426525 "Female",61.1939320237627,110.701340506353 "Female",64.6163641392179,146.547643697133 "Female",62.3850502508703,118.977188481373 "Female",70.6648647656303,184.517960337069 "Female",63.2615265457386,126.426792757169 "Female",66.8897588594489,162.401000843998 "Female",66.0781786725618,144.585526260348 "Female",58.9963893636259,105.446788188787 "Female",64.9220111924834,126.697343235953 "Female",65.3060946626047,141.379213292682 "Female",66.1090026738439,156.920752580978 "Female",69.1252747890173,165.830008047780 "Female",61.8034912253203,130.442535781398 "Female",66.53896455013,164.092435507996 "Female",65.5116330461273,169.348875110222 "Female",63.9902528989022,156.379506355408 "Female",59.3949177288618,131.37996833462 "Female",61.3834605623098,125.754421731247 "Female",63.8974199447316,138.190282698313 "Female",61.9721211946316,132.907414346609 "Female",63.249252941493,131.647765438899 "Female",69.4436153829986,178.276727577929 "Female",63.655296507321,128.283430931501 "Female",61.2057754529634,124.423083650682 "Female",61.9875304734353,126.409431105259 "Female",60.2203411634516,120.429932616127 "Female",64.1722773592349,139.823867554424 "Female",63.7046639520932,134.093409442141 "Female",65.2646476986872,151.605507508392 "Female",63.4670029054455,132.368543794971 "Female",62.7314184480746,108.656168510615 "Female",62.0211634817925,136.013538730059 "Female",61.5766245673981,109.076317238180 "Female",64.5681508238302,143.236838685381 "Female",61.4524106027452,121.980092414149 "Female",63.5731426798083,128.558496285949 "Female",61.0836290575481,122.442863365485 "Female",64.6787800036247,131.652285011168 "Female",65.5518478062711,139.383137119040 "Female",60.783286619805,113.593997537514 "Female",63.8121899792567,149.825575478474 "Female",64.9606364936735,142.093483033212 "Female",60.1921737819787,96.3587759528881 "Female",61.5105296831285,117.840302473304 "Female",66.7061675880873,148.351406528819 "Female",62.1146025951057,110.917344379577 "Female",66.9178300684814,181.592417163426 "Female",66.3376605831011,141.387531916580 "Female",58.5921354978105,105.808189725732 "Female",65.3353334954337,130.573205393963 "Female",63.0559876227757,128.398965765746 "Female",61.9278304697097,116.792556571570 "Female",64.9250143571263,142.118166114949 "Female",68.2916245166065,164.183004342798 "Female",62.6890338335094,122.998261577229 "Female",62.6808367408697,125.892492220756 "Female",66.3177553917042,151.211971866353 "Female",65.0703469530899,135.605515984563 "Female",62.4337761731215,137.174597958243 "Female",64.1852125046744,130.087834383327 "Female",66.5298081002523,157.929683798501 "Female",62.1807795078549,111.850588135351 "Female",61.6489868464626,108.033869563019 "Female",64.8194236529219,132.578705642439 "Female",61.4129359359521,123.962285067990 "Female",65.2860178095874,143.373077174593 "Female",67.3115988925796,153.910289791171 "Female",66.3376576244353,155.668743499010 "Female",62.2810008793625,122.533501204297 "Female",62.9416573504314,127.248821350561 "Female",61.0794519671956,124.802926195355 "Female",65.2485738868804,154.909310178477 "Female",67.9835332777928,153.438111730142 "Female",60.4740883317614,126.68352528844 "Female",64.7475146581568,136.530687014797 "Female",63.2172784049803,140.159026447613 "Female",67.3871042566167,153.134385399519 "Female",61.6229362133595,143.623629604792 "Female",65.9648269582179,151.631440216846 "Female",62.4404269475933,128.234428310996 "Female",66.3867051836085,152.738489949504 "Female",61.1772757055263,127.197055303308 "Female",61.2339039304258,103.142561324103 "Female",62.8486223663988,121.679765033919 "Female",63.3471828156837,145.524974081491 "Female",64.4281059378209,141.214470246644 "Female",68.2543625394003,173.513343771179 "Female",65.2510017671734,151.729312917159 "Female",68.026816799122,161.905682619433 "Female",64.1860521542502,152.265119509105 "Female",68.1016740752074,166.812092531527 "Female",62.3690613865757,141.891389096293 "Female",64.6834712324548,135.708088300298 "Female",64.5802071176162,126.432720526499 "Female",67.3841017695964,156.492674361252 "Female",64.2408237241065,137.414668307977 "Female",62.6752394484446,137.650841212974 "Female",66.5323920249645,159.636138297466 "Female",60.0729432857316,126.389612561301 "Female",69.186811116755,166.13641093753 "Female",62.4092643569429,146.809439343295 "Female",63.341093895695,140.618434726989 "Female",64.4943181693196,141.875465500897 "Female",63.1218588316827,132.622973169640 "Female",64.2202434413069,131.700238301874 "Female",59.0495118453063,112.029945790866 "Female",66.148828720191,152.749747162287 "Female",63.0342403404518,131.970135026466 "Female",62.7765751948061,114.155852012059 "Female",62.4722579408584,120.169133253532 "Female",65.8725959157433,155.570746043881 "Female",66.2035724633392,172.395015493044 "Female",63.420512815037,134.999570948388 "Female",64.93426963137,154.700225446816 "Female",65.2630619412634,100.982899039723 "Female",65.371089546192,136.471256041241 "Female",65.3739828076505,144.018809201117 "Female",62.2687686031621,138.622815859994 "Female",66.2874422639476,168.905571923085 "Female",68.4073819893756,165.572093360069 "Female",64.5261238533065,136.757930120717 "Female",58.2566636783877,117.497757237700 "Female",61.3244212856293,115.224368573338 "Female",64.3001958311705,129.483342065861 "Female",63.7896644114931,140.328415782962 "Female",64.7285396961477,152.378222418738 "Female",67.7144808195324,147.672830227387 "Female",62.5185166556805,128.851529473695 "Female",65.9569855056391,143.253878067555 "Female",63.7166453300807,138.187700423217 "Female",63.7042014125732,133.023856713654 "Female",62.5706819532536,126.912850119797 "Female",64.855261946483,150.397117772073 "Female",64.009872579537,127.955175111910 "Female",61.8150543535665,124.960105719251 "Female",62.5367886786814,128.357711606643 "Female",67.6381176208177,152.026630885817 "Female",68.7095799916193,174.38251631775 "Female",67.1385167280999,155.016937859477 "Female",66.8899688065447,145.761659994705 "Female",60.6236351181435,136.656054750481 "Female",60.4158461005096,126.703963339534 "Female",66.9064756007097,156.588617534967 "Female",62.5997282401031,125.647206889565 "Female",64.402180013628,144.500892432811 "Female",62.3613595450316,112.283012471067 "Female",62.1889327750203,125.179379627261 "Female",65.238506746658,125.404932688931 "Female",62.1402449692502,114.926184441192 "Female",72.2647482777197,188.437304384848 "Female",60.598584310957,124.603354194048 "Female",62.2665814965972,111.245008384803 "Female",58.3010347391725,92.2981464679836 "Female",64.365890800229,135.600087638517 "Female",62.6658609887557,130.995189147954 "Female",67.4233394447381,161.894007812839 "Female",67.8283434153382,173.360436577976 "Female",58.8667513609795,100.848899977152 "Female",62.0664061796513,123.704860088983 "Female",64.101749313676,146.648296418732 "Female",60.2399860346275,121.502890813827 "Female",62.2112282443538,136.204821481275 "Female",65.2830163165886,150.781482245881 "Female",67.9727454826759,147.274133077866 "Female",67.7208555797941,159.495168518468 "Female",64.1217766985751,136.860507759214 "Female",63.0980389382577,135.942769557151 "Female",65.7084959958281,136.957445305497 "Female",65.12929147627,139.049718412001 "Female",62.0454434044798,132.192455826157 "Female",63.6269578796844,145.461391934053 "Female",61.0680538631378,105.311141498072 "Female",69.0053177015551,176.832946922530 "Female",62.9307604409748,149.658822677852 "Female",63.0203480102767,141.407828111023 "Female",60.4586125036787,118.428035391858 "Female",64.8699423529315,144.226986590606 "Female",66.6521884534505,152.697851303264 "Female",60.04233796306,129.141595077228 "Female",63.3790405463248,123.913872067523 "Female",63.4658817822268,119.351599345712 "Female",61.9919096861246,112.734337675452 "Female",69.2476969140613,169.630306849238 "Female",62.6378787707722,115.11550956742 "Female",65.7698582819322,147.733361242309 "Female",68.9008994581607,192.640037250181 "Female",63.6651475160608,130.077250566254 "Female",64.6118936669667,143.152427067989 "Female",61.5301103880946,106.304317303014 "Female",62.723024274794,121.722090341359 "Female",66.3175727722566,153.246602135157 "Female",67.0580877048592,147.797920059682 "Female",60.1414415988235,110.837854703141 "Female",66.1513554095234,160.767288095629 "Female",64.3119610657784,145.477447271881 "Female",61.1040917304226,135.041198926828 "Female",63.437494401366,135.027554795509 "Female",67.9793394462166,160.270525741063 "Female",59.0860058343248,107.829003624626 "Female",67.0999039052256,133.235697911489 "Female",63.8648353995318,158.940059887756 "Female",67.3520508701372,165.354677900647 "Female",65.0064570756726,137.900916499105 "Female",61.979579407219,116.954744870911 "Female",60.5520165033181,115.251701043388 "Female",66.2449909510251,153.376155596992 "Female",66.7098067055299,153.566607359857 "Female",57.8491050917339,96.2800926912173 "Female",59.9394047125175,110.614614971048 "Female",61.7659224552058,122.924680055967 "Female",67.407253469196,161.458052671168 "Female",63.7653283078473,143.919802226868 "Female",65.2878093978769,127.039843168994 "Female",61.9812103654571,118.821493236688 "Female",70.6290406859165,195.765259510871 "Female",62.3277807945213,111.965447665601 "Female",69.9524668280154,194.240362169639 "Female",71.2775069444522,162.313393207164 "Female",64.6189809754171,119.681095103857 "Female",69.4703226427793,174.146100643492 "Female",60.7559487962066,103.352010634244 "Female",68.3738347242206,184.157643412844 "Female",62.0470851750194,139.114233795898 "Female",63.3847551388442,129.718974571938 "Female",67.4616974147976,158.274232858483 "Female",61.0782175953684,116.431732314344 "Female",64.6568051141895,138.999060469428 "Female",62.625985143959,143.768450582718 "Female",58.2116499335358,77.5237739030693 "Female",63.0525493945968,128.046825285970 "Female",63.6328924960761,133.782824929550 "Female",66.8584688683356,153.011085735304 "Female",61.955897965469,110.208987221739 "Female",66.1148750605703,157.725304075873 "Female",62.8347600585189,137.927244252758 "Female",63.5306483091914,131.418933694020 "Female",64.6892164479027,147.802532065034 "Female",64.539260198594,147.565570477765 "Female",68.5178731493077,156.372717631145 "Female",60.8679431345641,126.406554893921 "Female",61.0417343599374,115.082671804258 "Female",63.0861588603999,131.093121432032 "Female",61.5126369847,133.992924220097 "Female",68.893229963652,181.389695876567 "Female",64.3582635484732,138.856205743935 "Female",61.1908372582479,132.977178906000 "Female",63.546697634464,122.684162544557 "Female",65.6264261159211,135.782738383760 "Female",66.4174719209582,139.743280295884 "Female",65.4186960995766,147.423293951944 "Female",64.854997492309,146.692797807448 "Female",61.3514780676978,130.276383053909 "Female",65.3602162272904,143.894032847717 "Female",65.2431622266592,134.567162921654 "Female",67.2367795241886,154.705741916476 "Female",62.8672442281689,161.268395410738 "Female",63.2492421147938,125.129350519599 "Female",64.8320979866949,150.743187121607 "Female",60.0052568958542,112.664383375473 "Female",60.4837622986145,104.419849603190 "Female",61.2258047685156,127.828629847970 "Female",67.0779375155148,144.848007820046 "Female",67.9134243941057,168.705551575914 "Female",65.8810596034969,129.003755219017 "Female",61.5095289985437,104.405916987955 "Female",61.6432121827358,121.303170692814 "Female",61.910381530926,118.746654351646 "Female",60.6219605007529,96.392483964259 "Female",60.5612869665713,120.184557574681 "Female",61.8956934456687,113.043300155823 "Female",67.7423619397243,162.308665578035 "Female",62.5619189033833,141.276705100823 "Female",63.2798351650377,118.851399024487 "Female",61.8656124330767,136.390117427448 "Female",61.5319452247018,127.961964112276 "Female",62.6753894877151,134.182576690945 "Female",59.0291950607398,98.3726388184667 "Female",63.172554714776,128.091026110874 "Female",59.3276371791741,100.470709794843 "Female",66.828666455576,137.103190402482 "Female",64.3046601490493,133.875404616058 "Female",63.5713915886175,121.780597346099 "Female",65.1471238376027,155.776722258449 "Female",67.3006788021829,158.466963199327 "Female",62.813044057126,135.795835790392 "Female",61.076541653466,131.336443521465 "Female",61.5711085052211,126.012519837462 "Female",66.1326052660284,153.593952484600 "Female",58.1456527922555,112.035274132993 "Female",58.771639480797,103.537756064271 "Female",62.8269037406027,118.851401346172 "Female",62.2024039020137,133.552941693527 "Female",61.3339346501339,127.655439148815 "Female",61.7136296930153,118.513012930273 "Female",61.0452708259408,122.561834731081 "Female",59.8796705049068,106.782310030936 "Female",56.1053695899164,87.298869133415 "Female",58.963525840387,110.815421111937 "Female",62.6308864211039,129.521854503371 "Female",59.9176306925363,118.463414143016 "Female",66.0350169497896,142.986712168219 "Female",59.2446461531754,104.918825532773 "Female",63.3419102058422,126.839225475095 "Female",68.1976206647126,178.192346162115 "Female",62.8214537155175,138.40290706426 "Female",66.6747100867273,161.716484018849 "Female",66.343351735392,163.832917412347 "Female",62.7156184031955,127.938015572482 "Female",62.8793026559863,124.954627794587 "Female",68.1425453912443,163.109726060221 "Female",61.5491071834553,107.520131452552 "Female",63.992565238541,134.353308041025 "Female",68.7334148871494,153.723006039824 "Female",62.6054044493198,160.613183450756 "Female",63.9781516864494,135.218469598501 "Female",63.9481572053959,125.818926471258 "Female",60.9807618530896,127.297092850238 "Female",63.5178587113688,129.134983557488 "Female",65.119162340088,146.431025155674 "Female",64.6990582263625,147.204547833916 "Female",59.4748520897304,100.883857637275 "Female",62.8308677628933,133.056294930910 "Female",63.292585316475,135.159647202360 "Female",64.2404321523269,151.657329464398 "Female",64.4506725832854,128.1972734806 "Female",63.8888798201699,160.584557338175 "Female",67.323647992768,146.979969987311 "Female",66.2450180552918,143.797489736556 "Female",66.614405140606,169.128652811809 "Female",63.2576422849487,137.087828917670 "Female",64.4022813856534,131.378482562544 "Female",61.7890437911651,123.140730916332 "Female",62.7195894856765,121.811621034057 "Female",68.0144173165796,149.716849933735 "Female",62.1557166087603,126.353741148101 "Female",68.1291248571907,138.863712967618 "Female",64.9162089961892,133.200738371244 "Female",64.4253694318943,151.564255562872 "Female",65.7662260517481,135.444409336519 "Female",63.2150848126439,139.356920191524 "Female",62.732417407007,106.884047248122 "Female",58.9600403939118,95.7523175393934 "Female",63.6335140402387,144.974696688722 "Female",62.3154885506522,122.513984906493 "Female",57.1373009574261,99.1084992611307 "Female",63.8578545332626,143.68836678804 "Female",61.7724130729124,119.262168983767 "Female",67.9153140772211,159.514292174193 "Female",61.7831426426367,118.145506871255 "Female",61.9467827067113,119.795395798445 "Female",61.78785109145,121.092797347421 "Female",61.2998596590408,122.740595290885 "Female",61.223095142364,109.234242733830 "Female",63.1675637942412,124.490478472305 "Female",65.1183396137937,146.650334451394 "Female",63.8080495407049,140.88853256203 "Female",60.2871306426993,100.156972847148 "Female",65.8031252632644,159.448865470818 "Female",62.6414239095342,115.913380588994 "Female",65.5183107913038,162.048231279623 "Female",60.9231939348913,111.367257862928 "Female",59.4477577096542,108.111643651101 "Female",62.4158797367479,121.033728088398 "Female",65.0614138941302,131.588929341813 "Female",64.3593160479614,143.542122034770 "Female",62.701033748158,121.771555012387 "Female",64.2291563074856,146.095545612606 "Female",61.1579832522621,123.345800524612 "Female",64.0140563938974,136.776717207729 "Female",64.2169724798357,154.446604850699 "Female",61.5313233991646,140.980157622981 "Female",57.7142565482688,94.389732636505 "Female",70.4231297950142,174.608373602254 "Female",69.1569421253123,161.114171360313 "Female",64.7625294990012,131.352370598617 "Female",62.0937349357015,130.299788340864 "Female",67.4303776515945,156.076092074605 "Female",66.862739057473,156.684621332745 "Female",61.8248515285784,102.692776744418 "Female",67.7787123113263,166.448484806429 "Female",65.3047686532258,143.270975876443 "Female",65.5245769219022,150.365317216921 "Female",63.8488603078762,121.095961361193 "Female",60.6698864466237,110.705427344881 "Female",62.1207989136884,122.034650164414 "Female",60.41475050224,124.706689846406 "Female",64.5743951070672,142.095281980248 "Female",60.1772872079128,116.397024904313 "Female",63.8188192776955,126.738999890683 "Female",62.6250491163806,132.152415004582 "Female",58.9482350565812,103.363555704742 "Female",62.0698514461539,112.455877756539 "Female",60.452318720785,114.301057669739 "Female",64.4893423963608,126.633052479505 "Female",65.6172181433579,160.622370169889 "Female",66.866755180099,156.518694727146 "Female",70.3611186287561,163.945040321028 "Female",60.230073960458,95.9337324786044 "Female",63.3051590158136,127.778681522984 "Female",59.587329390936,104.046180239567 "Female",65.3236263219733,145.852290843349 "Female",61.9630512868898,142.404892875298 "Female",61.6335836541305,131.622520286286 "Female",60.2219073469292,107.731290925800 "Female",62.4440887350453,134.451299553178 "Female",61.4381951811547,123.036175625723 "Female",65.0328428163339,153.393562055098 "Female",66.8341651344032,151.933885904572 "Female",61.2790976384486,141.212122695795 "Female",62.2641351641317,147.335214770323 "Female",63.6907199218838,121.633408724521 "Female",61.230144508313,106.092298330602 "Female",59.2479257543123,106.067217952156 "Female",65.0773312027466,152.074626341192 "Female",63.3365319462159,136.066723993253 "Female",65.1280235063673,150.143976255014 "Female",66.3672614196811,153.104104814365 "Female",59.6273616483559,127.003820747696 "Female",66.7443634712758,168.866877191217 "Female",66.5667122845471,138.600079957473 "Female",65.1909795177654,158.778935660007 "Female",63.7251435014985,125.417422425669 "Female",64.6405274625531,135.449502159375 "Female",68.2221798564946,153.098641625936 "Female",60.7650934564126,111.364239917823 "Female",65.078073310325,154.765647291697 "Female",59.7739064235202,124.418019156623 "Female",67.0085538675607,151.333898886002 "Female",71.5522046700191,185.658270832192 "Female",65.6041003896816,144.508903349688 "Female",67.7138727887894,163.334449922777 "Female",63.2139625255087,142.566080498934 "Female",61.254334615895,115.889543909571 "Female",65.6386609067559,137.289749812448 "Female",59.2486557233241,110.587190765996 "Female",63.2632176712443,141.671147525066 "Female",63.2851068369893,119.007460625104 "Female",66.5064030857321,152.440699734892 "Female",66.8350317213596,160.981093829936 "Female",60.5611799130383,116.268516432508 "Female",64.4785671582295,151.886705673811 "Female",63.7322395071576,154.655272563838 "Female",68.1441175582664,152.430561603730 "Female",65.383224212625,140.073641074898 "Female",63.3526871212887,119.633755791227 "Female",63.585207215854,128.486555886959 "Female",66.5381613215888,161.143613146957 "Female",66.6445262797493,152.569345022058 "Female",62.4427571301402,126.522643200024 "Female",59.5883950963049,115.215399374440 "Female",62.0554714713668,122.674048590663 "Female",67.9994486762744,161.321899972785 "Female",64.635679679449,160.100380734081 "Female",60.145856135236,120.888521635297 "Female",61.4986393736618,122.049480193377 "Female",60.46647732630,112.851411720967 "Female",61.4884411431049,137.091736780398 "Female",65.5333127181764,148.052070400263 "Female",57.8372689542339,105.739217158828 "Female",65.0410429711465,134.280095210813 "Female",64.1815350496702,147.927495643850 "Female",63.4307605484845,138.195604859097 "Female",62.4909590633185,140.611043869758 "Female",67.3862851924034,168.140553130811 "Female",64.7635028630058,133.252367479717 "Female",63.5814065482242,138.229396222889 "Female",63.798527347582,137.465807551397 "Female",60.9774144476069,120.660729091593 "Female",61.7358264298412,110.513241618884 "Female",64.1913969814589,121.889608784505 "Female",60.5521922278817,110.299728280255 "Female",67.1820800126776,164.779375641609 "Female",65.8756450362095,141.018132108356 "Female",60.336579370944,82.1984878532933 "Female",59.125031484915,90.5207839962002 "Female",68.1870490876192,177.568849558525 "Female",62.6219776809662,106.001349204059 "Female",64.7621473457827,142.264983122025 "Female",63.7170340153881,137.999423060675 "Female",62.788568531605,119.627917794982 "Female",66.341333745267,156.232125374109 "Female",64.8457672614786,160.758900412111 "Female",65.7559481568196,137.471104119053 "Female",66.3065498368028,154.904986306002 "Female",64.2377419661476,147.205490109169 "Female",63.1049843740447,133.148254236448 "Female",62.7803016284495,145.794374092131 "Female",63.4731386049369,155.488895183201 "Female",66.7491668435107,166.880315557521 "Female",66.5294933495484,149.739207835778 "Female",64.942545331931,135.387153805473 "Female",64.2547599510071,143.363850086033 "Female",65.6432810545857,159.133382120439 "Female",66.6623825967266,159.482376464725 "Female",60.2097381108623,111.048452312775 "Female",64.5530373378013,137.820944678286 "Female",65.5224334717415,164.508360393617 "Female",64.1639392828682,123.412253919656 "Female",63.4247507821743,153.176615729676 "Female",68.575694575982,153.319264343621 "Female",67.460675530594,175.292753048247 "Female",65.5863987348924,157.146160925858 "Female",67.38368785698,160.978114729003 "Female",65.3004338453289,142.520552023611 "Female",68.6970101196574,171.892025800229 "Female",62.8818495007199,117.366115998373 "Female",64.5022454380577,134.045492075742 "Female",67.129602569104,134.273574598086 "Female",63.893187894372,135.652300448713 "Female",63.9470891052939,138.865443523640 "Female",61.2330699227445,117.144139439547 "Female",62.36584320303,138.648447317277 "Female",63.8811965093768,137.170886333196 "Female",67.2601239702578,151.230951878344 "Female",61.9809224738095,113.968997548358 "Female",61.9380059889866,121.187253815547 "Female",65.1236469361573,163.934531727343 "Female",59.9499137352606,111.232280911062 "Female",58.6709529702722,98.5160786144569 "Female",61.4584372602041,131.700770777790 "Female",66.3393851113239,160.985106021963 "Female",67.5842049060273,156.732270778401 "Female",66.1149178016367,159.372156649349 "Female",62.7357257028632,138.254437110754 "Female",62.7371124959095,112.871363392254 "Female",60.5948235190172,118.758041933192 "Female",64.2636832301446,147.403128354823 "Female",63.589548432464,139.686156989160 "Female",60.5224211232581,113.266333576858 "Female",65.6505402807652,147.337183786838 "Female",64.3684095133994,139.550199728775 "Female",68.094319631298,141.226633056596 "Female",61.4027042253034,123.983910994488 "Female",63.6553171963399,148.238011729578 "Female",56.1672991862273,77.8985592718359 "Female",60.8593091877939,101.173339432368 "Female",65.4935300866689,134.900006866972 "Female",60.090174703046,117.895237394228 "Female",65.1580905070669,148.361308433515 "Female",60.5804207001373,102.187820524886 "Female",59.847446363622,112.144544158221 "Female",60.1791124588638,97.2613127866806 "Female",63.8072524431298,139.603647968899 "Female",65.1595902181177,145.442724219011 "Female",61.2308417905583,116.858097517902 "Female",66.256513916737,148.414305257976 "Female",62.2993404871673,138.994964745233 "Female",67.3426907135966,144.924252084822 "Female",64.4825537251333,131.813137863820 "Female",65.4092266319353,151.532193245431 "Female",63.3198477002133,132.900102734210 "Female",69.9982972693628,178.743255729628 "Female",60.7799998571652,113.877440458301 "Female",62.7137650978029,124.672840042441 "Female",64.0631262042994,136.627816992875 "Female",67.260748440053,154.619460995625 "Female",62.2273376922072,120.936614250334 "Female",59.2230444090222,131.159089656364 "Female",58.3694478311255,113.899109787270 "Female",59.9773398053071,110.800198280178 "Female",62.232313213556,131.886497653701 "Female",61.4046834621872,123.014974292633 "Female",66.6922974884749,153.556966333125 "Female",60.829197751082,116.253522178092 "Female",65.6326003304289,159.096036886897 "Female",60.1913304215395,115.045772393027 "Female",66.0987188961904,131.264401547620 "Female",64.4053315494993,127.943947171077 "Female",64.8943538927103,129.117041346529 "Female",63.8633618127893,128.285494343499 "Female",61.2176124987157,124.523785828336 "Female",70.0000996614627,176.828201015981 "Female",64.4870950936288,130.652130869763 "Female",66.9886126118952,156.256875536016 "Female",58.3002683655671,95.1214034651925 "Female",64.3562088139533,154.374633259613 "Female",67.4090561864154,163.584236174247 "Female",66.9363105204275,142.767367110374 "Female",60.7318568323656,119.967881328411 "Female",65.197125646994,133.014706866683 "Female",59.9559581707296,119.880437088442 "Female",65.7402529244201,165.156370747027 "Female",63.1740888552376,134.931119765396 "Female",61.4145108452755,131.556847184007 "Female",61.9537652783583,139.480345206380 "Female",64.7363555965433,137.770832168014 "Female",57.2330564010914,99.3712842598644 "Female",66.001685214129,155.10492540068 "Female",66.0355514851669,151.873442773797 "Female",66.1244961715813,162.730381361469 "Female",59.8735562991131,107.637607473672 "Female",64.2580677870656,122.937234881327 "Female",64.5232741331008,146.602980035515 "Female",70.3985174035204,167.542411293767 "Female",67.6836069573014,151.280053614573 "Female",60.9794598983385,108.469169428357 "Female",64.961958811518,113.726967903199 "Female",62.8260422397165,129.286756468877 "Female",63.1839627455561,127.177120707278 "Female",64.9434359637002,136.663869426503 "Female",62.6842520182645,124.440025569112 "Female",64.8269601440787,152.079450824902 "Female",63.7407624734611,134.111768150996 "Female",69.8222337040217,174.66738753922 "Female",63.3356714646882,126.697367322170 "Female",65.7999224637006,142.146437863022 "Female",61.8370968244941,136.773825962060 "Female",59.5488946202499,118.860323196746 "Female",62.1266548302817,114.142898598438 "Female",65.3248696308045,145.521060613319 "Female",66.6144422564336,155.888980999046 "Female",63.7346231856398,146.971723539681 "Female",60.1641472280657,120.244526484622 "Female",65.693383720852,151.987105758169 "Female",64.39091597417,138.471776884101 "Female",65.3437691809575,128.240548016760 "Female",66.2848633755886,154.885142449294 "Female",64.140632972352,134.459337738029 "Female",64.889918729116,134.27994876853 "Female",64.7005698105255,146.402676964792 "Female",59.9088447631009,94.5636974730176 "Female",62.4335554152787,124.286143377051 "Female",64.7727456118938,143.445450391041 "Female",62.9061449210485,104.050480193677 "Female",62.2638400362711,124.034273329032 "Female",66.03868980174,142.755779226000 "Female",69.2112021776405,147.049381685417 "Female",61.3195662422527,107.464225385680 "Female",60.0810068631417,123.776018121216 "Female",68.985579452326,152.957148403796 "Female",61.7926573252242,107.455066344878 "Female",62.9076299339235,141.216627796238 "Female",64.6002321381755,130.657130926108 "Female",60.5184395451444,139.760616751574 "Female",66.9239917963286,155.758133566976 "Female",63.0675948764312,133.659393628696 "Female",65.5325102349844,120.847428543239 "Female",65.0178572053912,147.099105575917 "Female",60.3504368816909,108.277572058294 "Female",66.1706818699104,154.514715918111 "Female",68.0909278742523,161.553910163254 "Female",63.7904836171276,154.226692697846 "Female",61.8947031449588,129.562772754748 "Female",65.7161765440232,157.691150989167 "Female",64.941030878182,141.539366953023 "Female",62.5643463349735,123.554175849710 "Female",64.0722520631115,166.573125095584 "Female",64.6442875073107,143.015419225919 "Female",62.2836709099809,132.576418436117 "Female",68.0702781629556,164.367594984729 "Female",60.000657153046,95.6256381775232 "Female",61.6915442254688,118.201971175305 "Female",69.804816962785,174.027459377758 "Female",63.5771178792171,126.525139777711 "Female",63.5034670293069,152.69924649185 "Female",62.499843013337,132.561613007705 "Female",59.4083413407457,101.21720262983 "Female",60.5753149098544,99.2862980777016 "Female",67.0539164556433,160.943310921227 "Female",64.2688204047751,148.246595207785 "Female",66.136130608575,151.814647757933 "Female",64.3112056122001,138.817429362978 "Female",62.8346978405317,132.419183779592 "Female",60.718324427993,124.434406826980 "Female",65.2892591069429,140.055482833033 "Female",61.8129850189252,137.338234317463 "Female",60.9809836860399,132.218541557070 "Female",65.3944975208545,146.20959507367 "Female",65.268391373627,164.043947021075 "Female",65.1267482398175,142.38346518829 "Female",63.4996473404995,123.586079174951 "Female",63.0087252655982,127.541750007152 "Female",61.8493840185535,122.413020792137 "Female",61.0826769228384,141.50309801532 "Female",66.4131559385162,167.723491996096 "Female",69.7292731920596,187.785319535771 "Female",67.4310286263112,148.623788176728 "Female",64.4530798783529,134.550509213021 "Female",64.5389948113405,141.106887854606 "Female",60.4519061759636,122.155184874694 "Female",64.8309426383096,156.954376524650 "Female",64.1534922447874,133.601933044652 "Female",69.6109082957922,167.738696686611 "Female",60.7413957672661,118.418728094186 "Female",65.5242471494712,144.464104628504 "Female",66.1212030748158,144.939430491863 "Female",61.0843270540781,117.987569728394 "Female",63.6921566091057,136.892889770776 "Female",63.9834939679935,141.479938598873 "Female",66.7395424793519,148.561606707897 "Female",64.1200342018962,142.053883569617 "Female",64.7708440965374,142.835416391176 "Female",62.8040681729421,129.147672579079 "Female",64.5067709553058,134.99769033233 "Female",64.1478240856383,148.645119428226 "Female",60.3204844248844,114.777133984642 "Female",62.1876806542036,124.606873604888 "Female",66.915285627757,168.667905996725 "Female",63.9464826675548,135.037495427688 "Female",64.7905511164064,142.533415076392 "Female",65.0133183524363,134.529192257257 "Female",64.8150194835038,135.965444929807 "Female",64.8860511959117,152.866933457110 "Female",63.1308134990737,141.914162667578 "Female",65.3320138258011,144.806619669841 "Female",62.275450588808,145.992377845836 "Female",61.1526182612024,115.244888470274 "Female",63.3380151004661,143.708623012450 "Female",61.5425325614743,118.037046036155 "Female",64.637492959151,133.379545927519 "Female",67.3208244978274,153.522260316951 "Female",65.6582764222463,139.458587269102 "Female",66.4207333982378,143.874330318647 "Female",63.2459481457864,121.016091053336 "Female",64.0734661163267,125.540056240174 "Female",62.2938285155084,133.020435422027 "Female",61.6210566067846,108.798198942463 "Female",63.5397728071705,130.27971411619 "Female",62.6152812347498,117.439002024287 "Female",62.2109628577726,136.354632672288 "Female",59.5336429964067,114.152350974608 "Female",63.2142206867711,126.026720884472 "Female",64.3257052898524,155.530713879534 "Female",68.6784331284575,163.889449990442 "Female",64.5895008241428,150.205986827452 "Female",63.5778485844985,120.684128887998 "Female",60.9001221812197,117.169559135498 "Female",63.9985239139983,149.364782801046 "Female",65.7065796786902,149.715822513582 "Female",64.0414419015282,141.886802103853 "Female",58.7573709705235,111.65734041017 "Female",59.8938938234214,116.759560100867 "Female",66.5597964055882,162.676838002028 "Female",61.6623671332511,122.708789142191 "Female",62.1340819210664,132.315456910804 "Female",61.3182843828611,97.1075042587005 "Female",70.1759547014681,182.133805699515 "Female",62.157304372623,128.958406953713 "Female",65.1254074215185,140.376335631349 "Female",64.1618175719681,157.909028738342 "Female",59.5476808478638,107.8537914796 "Female",58.996286808194,107.839014995551 "Female",66.1786977209513,151.828279304935 "Female",63.6539641291906,127.841625732637 "Female",62.0158111276942,133.652829939242 "Female",63.7166915247012,143.758991614374 "Female",66.1111655679784,139.235028722568 "Female",65.109614478518,136.932301263247 "Female",58.1871410720517,104.472382202008 "Female",62.3083009668332,120.671009456357 "Female",63.825438005784,134.248057133578 "Female",63.9864556769549,146.303381084661 "Female",61.8102590379416,132.522516142785 "Female",65.0469974386592,140.823228588263 "Female",66.9471980540265,154.782478853802 "Female",68.3169056442754,160.443182982172 "Female",65.0967760242844,152.416198216735 "Female",71.0704512296053,182.083580320696 "Female",69.1409455400443,186.797931929378 "Female",62.2185993068968,130.012336322795 "Female",62.8408008879154,129.250670310846 "Female",67.2251213560333,158.524336991482 "Female",60.2705738971792,121.647420362571 "Female",62.9507926042264,141.910054303157 "Female",68.9997458610011,179.640836207311 "Female",63.5047985401421,129.319254342723 "Female",62.5537313702819,132.006232980316 "Female",63.9448674769439,137.837637455761 "Female",67.022819797731,159.24380154288 "Female",64.6802075935097,151.757775363624 "Female",60.0355612214283,112.952625183124 "Female",59.4642590590802,111.710518227827 "Female",67.5391735256493,138.522789158014 "Female",61.7733053924659,112.267300513754 "Female",63.5488876852397,135.814923850623 "Female",65.7611267754491,170.868939396966 "Female",69.1800813101138,165.256626683302 "Female",64.7987046603038,143.826264789058 "Female",67.200630518134,160.899838249265 "Female",61.6231030321112,112.543423895046 "Female",66.014833544935,161.107167807521 "Female",61.3345101856516,114.718563573216 "Female",61.6101934475425,112.077615318026 "Female",66.2277923164394,156.166353265997 "Female",62.1938626262822,132.060156864781 "Female",64.1528847776115,151.275532926064 "Female",58.8924736386833,104.423462162595 "Female",64.2981341276828,149.190737819956 "Female",67.5556098689441,170.855319750720 "Female",61.3894906412277,139.105836976208 "Female",65.8604389018894,140.382997891746 "Female",61.1036372750313,111.574376941137 "Female",66.0424876840815,133.944360535363 "Female",62.022989674241,125.507080404148 "Female",64.2740445375728,145.896325083948 "Female",59.7584445118113,119.164742669656 "Female",62.7814677041235,125.823187311418 "Female",61.52887955179,128.643464242143 "Female",63.905615796127,136.852413117120 "Female",64.8921521340993,146.610303918176 "Female",61.8024040097622,114.882857976334 "Female",69.0997676168324,174.708561656321 "Female",64.9831331891006,144.259172710796 "Female",62.323057779829,125.556071470487 "Female",65.3227707930097,146.752451830434 "Female",64.2344200830226,137.509552966831 "Female",61.3233467896375,119.758161452751 "Female",58.1558883121072,95.6788715811646 "Female",62.5942702554782,123.739985275625 "Female",64.6784085432949,123.010507026547 "Female",63.957582696034,118.892956803453 "Female",67.670801576127,155.493911611060 "Female",63.6358284008209,125.504072092971 "Female",62.5650084471955,144.724947290496 "Female",67.8956592881614,153.436480930468 "Female",67.9536581615964,167.090125786042 "Female",65.0369904342518,147.870356709980 "Female",59.8385688390406,106.358333022858 "Female",66.3943434735935,160.493872050002 "Female",65.3490662269293,156.878287198887 "Female",64.3924792721491,143.620090740353 "Female",65.5086948460724,164.442778414257 "Female",65.1748376899588,129.027267463197 "Female",63.1747415836602,133.685913555545 "Female",64.8395308770211,153.572862939911 "Female",60.2954605891014,116.125957873385 "Female",59.8159106382053,130.957027598791 "Female",63.1670305681502,129.670909248600 "Female",64.2851816410535,155.252860462494 "Female",62.6383155794665,136.100239364981 "Female",65.6541338471196,138.104340013144 "Female",59.5311623696492,124.809570874828 "Female",66.4954666828606,164.926816248538 "Female",60.5425947918931,134.713428412532 "Female",61.5759336988114,121.648439723000 "Female",65.4876399780526,146.060156343627 "Female",63.1130576776778,138.451498527306 "Female",64.9914780008242,143.678940525985 "Female",64.9046946291545,150.171123875240 "Female",67.6022940753349,152.365016220443 "Female",59.2644465400571,117.393702120901 "Female",62.2149230110556,132.555193184738 "Female",61.660227269952,120.991716643945 "Female",60.4839456506518,110.565497391584 "Female",63.4233715291186,129.921671035264 "Female",65.5840567646487,155.942670834442 "Female",67.4299713773882,151.678405459134 "Female",60.9217908734477,131.253737819413 "Female",60.8430594839017,116.50475222455 "Female",64.5698892133442,137.103401171402 "Female",67.5906368296672,161.783853883340 "Female",66.446241641536,135.608858594301 "Female",58.5218733786693,103.764424781280 "Female",63.7685186448598,139.851059473957 "Female",67.7006214777105,155.726682682802 "Female",61.8781568640971,101.525235742981 "Female",62.9858975547956,112.57379095656 "Female",61.8599485027306,132.776178367157 "Female",59.4790437423757,107.869972910744 "Female",62.9398101246791,120.466153190048 "Female",64.829604955638,151.685821506122 "Female",64.5792892535986,144.296026044466 "Female",61.7893607830965,126.998160603856 "Female",65.2414293164916,128.721102972444 "Female",64.3685247885897,138.929385323167 "Female",63.7882459528995,141.045895728829 "Female",64.901828981405,150.749956915494 "Female",64.1156772002082,145.509863709212 "Female",64.3223032511334,153.024271753804 "Female",64.46595255684,145.133615510115 "Female",67.0974560730453,155.502341613017 "Female",61.3047539960928,104.855761815701 "Female",65.9663788542698,151.715241934626 "Female",65.9464715465173,161.686807461074 "Female",68.1940928978958,170.841539448070 "Female",61.9092375309623,128.598972976927 "Female",64.9787306768798,135.206873304074 "Female",58.777124253358,112.561989237208 "Female",61.5855609560085,126.125262732023 "Female",68.2226644764453,161.041578366496 "Female",66.228113421389,139.638425673039 "Female",66.6188044770195,159.147958403703 "Female",63.8668149130383,142.512729446172 "Female",63.4866809143913,129.289829974431 "Female",67.0877693447369,158.555209525114 "Female",66.6923901822954,162.785509792322 "Female",67.3480921522853,154.877197038327 "Female",64.0315399217784,136.296628431283 "Female",63.0609147896584,122.134739672569 "Female",61.1110523769751,113.099653247491 "Female",62.1737076379369,136.266341077406 "Female",62.4214287825992,121.794344142296 "Female",64.1943122766899,135.971015008065 "Female",63.953573681628,145.520358339144 "Female",63.3818075101804,132.974282924293 "Female",62.9098396766815,139.469037988929 "Female",70.5436929307446,180.97925020435 "Female",69.1114366491597,163.903482667662 "Female",64.1201117660853,142.708667935028 "Female",65.0312587049244,150.468164319893 "Female",65.2700969002921,145.768090615387 "Female",68.7595700883626,175.90345246978 "Female",64.8780388045506,149.812881569090 "Female",65.2785984146034,143.531071668535 "Female",61.5352869739347,129.615749421462 "Female",66.7766035351065,172.858287596082 "Female",61.6520018174032,126.460135597711 "Female",62.9932298086649,139.408491691341 "Female",57.598029724148,98.1827929074567 "Female",65.8797883262557,142.855292290848 "Female",61.9793239112533,137.083427787570 "Female",64.2473843999019,124.932497974284 "Female",64.6340412960218,135.272743229695 "Female",57.445203571258,89.4208948928405 "Female",61.9337579702405,102.471512542612 "Female",60.3303629008072,114.468909144872 "Female",64.1197316778982,139.587210703165 "Female",67.520343353925,158.209688030415 "Female",66.7145851224913,162.930817337045 "Female",59.864891404371,117.729442075966 "Female",60.725153220583,122.507462547242 "Female",62.9143891680084,124.316963108680 "Female",68.804693531554,173.280101791839 "Female",68.4231690501416,169.467359249734 "Female",59.7852886751964,118.353635094036 "Female",64.6846488077826,128.250812929516 "Female",62.9620401091926,136.799777276035 "Female",67.2618238759931,162.305549313408 "Female",72.0887123319944,192.530863261324 "Female",64.1108212336824,139.245503319972 "Female",64.5015838730848,135.620026277074 "Female",62.6079375086972,125.891895990819 "Female",66.1618229262314,137.657127868271 "Female",63.1251001948699,148.734203718151 "Female",64.0352789618228,137.424657358474 "Female",63.8242139934414,129.297520063129 "Female",62.1630680329135,108.250636306234 "Female",64.71270574661,141.33180343126 "Female",61.789418728741,136.646281939513 "Female",62.3966112014885,146.807308639362 "Female",62.3650742508373,132.125296049936 "Female",60.9610388646673,109.362717070366 "Female",63.4953029053001,141.026405496844 "Female",58.3434842769827,110.152236666551 "Female",61.1431914396364,112.965639642002 "Female",59.8360407045677,103.265961004576 "Female",60.4376929014369,136.592186443281 "Female",66.3200806021745,152.662441471684 "Female",69.3816433659015,168.245630119510 "Female",66.4235948239081,153.000558606447 "Female",62.5543196835943,126.491105015903 "Female",64.0375769777106,132.816177440416 "Female",68.5756144772928,163.228849726571 "Female",62.602258456669,117.130920241326 "Female",66.0601243803337,146.674215733532 "Female",59.6170282021774,115.247771834858 "Female",62.8966467828079,131.575099015890 "Female",63.1809126458129,135.575404139852 "Female",69.3050073770746,151.311013988174 "Female",62.9729584122787,132.159008991046 "Female",62.1793807565681,103.097460423085 "Female",62.0542039710283,124.87679021037 "Female",63.676018088915,127.326985394143 "Female",63.9792330712939,134.311979088381 "Female",63.8448736694738,145.579421077492 "Female",67.4153483527509,150.498250922393 "Female",62.1933365884006,101.232044530406 "Female",60.1505224194368,111.302935730514 "Female",64.5799302070911,127.372238208108 "Female",64.6065771074767,144.416726162008 "Female",60.8575428572594,139.246001798841 "Female",66.4375600541888,153.068001329042 "Female",69.1904359281649,172.235965626119 "Female",62.0888260906559,130.941881113391 "Female",61.6830285758629,116.423510279721 "Female",64.6087149018801,138.920991399578 "Female",66.1938915235957,163.811182573868 "Female",66.1568148770401,128.207178145036 "Female",61.0841437108486,130.377467219993 "Female",63.7960323721127,146.455298633415 "Female",62.8517253104952,126.033916520938 "Female",63.8953930346843,126.905004317371 "Female",62.026069360058,118.614219203688 "Female",63.1033581479829,131.794463059161 "Female",60.658398101015,119.209300297117 "Female",55.6518916024929,85.6217764414627 "Female",64.9739191954757,146.576103423851 "Female",61.5904542786546,125.517769043557 "Female",60.6065440026835,115.437373072737 "Female",61.5287678637509,127.661455482649 "Female",67.7796515327122,157.665189935402 "Female",66.976831589091,157.611683331829 "Female",65.714473554436,147.197859548650 "Female",63.5216877801212,136.775805341435 "Female",66.747293134292,162.605759851958 "Female",65.0600953420888,149.725493237891 "Female",66.3241413408886,145.911183493048 "Female",64.410774762604,131.526373255081 "Female",66.6516180152475,154.011177203265 "Female",62.7830396678923,131.939335462205 "Female",60.6789777914626,120.618534909866 "Female",62.8986253888669,128.560075137572 "Female",67.7609095704926,155.973930789838 "Female",65.9528407591821,166.771220095083 "Female",62.5353247881032,124.833982681173 "Female",63.9046677412968,146.692290435674 "Female",65.9919772975016,155.414139041545 "Female",61.8828139360392,116.711030078486 "Female",60.7739389820502,114.447804847591 "Female",64.7414254148999,128.791209901986 "Female",66.1109808978235,140.998458220540 "Female",60.3333723850573,102.256837788828 "Female",67.7358229152339,159.197012809523 "Female",66.2073535344002,156.537008352962 "Female",67.408917564228,170.270947718714 "Female",65.0290716649515,156.822731723117 "Female",61.906393892811,134.782516534804 "Female",66.2129798828924,154.959790352475 "Female",66.3094238826261,139.834825730998 "Female",64.7298675890735,143.932998940750 "Female",64.297840961769,138.597196770461 "Female",64.024721744528,116.886772964662 "Female",65.8161228106243,148.475424617453 "Female",64.6346761645216,133.394982757580 "Female",59.5569083033151,116.191983064210 "Female",70.8175378934773,184.860623783118 "Female",66.6464040998428,156.424967571249 "Female",62.8575373733541,122.802404729026 "Female",61.4262054327819,118.660420672920 "Female",70.950659090658,193.225926695814 "Female",65.0702044066438,132.403738235196 "Female",63.271892952732,142.994239809958 "Female",67.1198044457032,158.93064285898 "Female",62.5721954699236,137.382100711611 "Female",60.4409610747129,118.224491294444 "Female",61.2018091899706,102.179562817238 "Female",66.7994224445267,147.584709658355 "Female",64.1370445748482,145.307462985894 "Female",66.8777106013904,153.720384307704 "Female",61.5740945111476,148.396904766621 "Female",69.466249813675,169.114862442853 "Female",70.697142976137,194.048809246781 "Female",62.3456179871136,121.502008212004 "Female",62.7190871002672,122.874559484302 "Female",64.3235437838275,138.976733433855 "Female",62.8905197442112,147.525951401132 "Female",64.6039158244996,135.622219896544 "Female",60.9070153273438,131.736779060302 "Female",62.4571243766983,124.490297646977 "Female",60.7095917264777,113.172283464686 "Female",66.8387621887302,153.326068318602 "Female",63.3903569860738,128.617638390548 "Female",65.8201013990582,139.496268617143 "Female",67.7137578957388,157.22089790489 "Female",61.5944509357384,117.324787271048 "Female",65.8892012445277,143.017528222523 "Female",62.882444469268,119.992575500218 "Female",64.8376899845937,121.094631098394 "Female",68.6188042684772,163.667208715041 "Female",67.303354887169,166.711653627491 "Female",58.3719864101776,92.035945841726 "Female",67.5995855731533,159.969308203497 "Female",68.1731974295347,178.826118003563 "Female",66.7921473780064,142.853118161288 "Female",62.3703779752153,138.725475618616 "Female",63.4173742292794,122.147713644865 "Female",66.4006388658354,157.827045468444 "Female",60.8489345232094,119.557245638926 "Female",66.423548691244,148.320300452130 "Female",60.5847210127074,116.051246486874 "Female",63.3882885652124,149.089341369956 "Female",65.3612908033044,144.026949954807 "Female",66.3423500772453,147.335296046817 "Female",62.589981961344,123.643444679756 "Female",61.4301125464784,131.181929536141 "Female",65.0881213713662,146.796102729389 "Female",62.686275922984,130.120432713398 "Female",65.6728000058047,129.103219625371 "Female",61.5084288750785,98.3315463731666 "Female",63.9216834750794,146.384324239399 "Female",61.1974917400436,103.597987352546 "Female",64.7283901541704,147.519907389273 "Female",64.6498320470762,153.263908334908 "Female",60.8615996244979,110.303388219113 "Female",67.4729124403219,154.621340351176 "Female",62.2086537586246,127.596948408639 "Female",61.633305773273,128.548778597810 "Female",63.1829901835681,147.997415498463 "Female",66.4193160802247,151.717651218850 "Female",62.1058841729617,132.878811788612 "Female",65.4353608929262,121.172604702616 "Female",63.4258993749774,124.512003036883 "Female",62.195348923329,110.023194672644 "Female",63.2095836922752,119.880041690307 "Female",61.8327350437378,128.27085778504 "Female",59.4374294968798,98.7603818570737 "Female",61.094444415691,124.912102174696 "Female",60.6552177444151,119.056286999868 "Female",64.3791805817367,141.657724269145 "Female",65.6559705788453,150.877474253180 "Female",60.9110898559262,104.276528816931 "Female",63.077002520157,141.023647165523 "Female",63.9638545625408,153.723444041196 "Female",62.736633518599,124.771600947162 "Female",58.8384448794105,117.279214153506 "Female",65.6003734665553,139.892175084004 "Female",62.5234715140073,136.256130006244 "Female",63.9758004278133,141.691706812518 "Female",66.5408072057699,149.820637413597 "Female",63.1191459534263,138.79412120669 "Female",60.7862999022937,119.209885387305 "Female",61.1796014676073,130.410229254931 "Female",57.8309190849284,83.0268025400783 "Female",64.3633676937013,139.880864706159 "Female",64.3413604760312,128.631500410281 "Female",66.386056354231,159.412698955582 "Female",66.4695845680022,152.037906917926 "Female",62.8746296775041,122.619329637871 "Female",63.4617589792066,115.863932095115 "Female",64.1017425536959,125.109482735642 "Female",63.6662554068762,137.079336038602 "Female",64.6591793106666,134.808478387900 "Female",65.2467870493548,148.446822981880 "Female",65.0720918609067,145.663982833019 "Female",60.383834910664,125.446104416948 "Female",61.6705096027476,129.401286721447 "Female",63.5190173101308,124.467490920429 "Female",62.0726163322587,144.807705416737 "Female",63.1787255115958,137.426978318656 "Female",64.9843409259214,142.370643511947 "Female",62.851894526663,133.456592260286 "Female",66.1836345632456,147.363223370786 "Female",60.3884938589853,126.703053378312 "Female",65.1932535524622,145.519024263834 "Female",58.2253970159585,114.961707275311 "Female",64.8384825541293,151.922702049436 "Female",65.9745826070951,161.061364589181 "Female",60.7239751565893,103.679874841791 "Female",60.6922868484414,115.129304990150 "Female",60.8769150439469,130.068216083634 "Female",62.8046811107309,143.896465120041 "Female",66.0937129470602,131.150114364033 "Female",64.7958166773328,172.691881260367 "Female",68.1384431345043,168.991862368438 "Female",61.9300541529371,117.192630145294 "Female",64.1230652703172,116.807738304763 "Female",56.5488430793485,90.8475893808927 "Female",65.7806254089382,156.781257956556 "Female",62.4109516391201,127.015226079973 "Female",64.8751271137218,144.747237270206 "Female",63.0064801748851,131.387132977255 "Female",59.8165359820357,107.579970919541 "Female",59.9864954991926,129.417764077037 "Female",65.9281322846127,139.513352140898 "Female",67.1669093402562,154.210302036379 "Female",63.2409916280002,139.127449309181 "Female",65.1460814235521,138.384175573881 "Female",62.8899569292617,123.4005903049 "Female",65.0021317970251,146.027850185156 "Female",61.1919227875662,142.327635336926 "Female",65.0170872529823,137.568796620084 "Female",62.9950841213048,140.450521154904 "Female",66.3556474902455,154.602145340907 "Female",65.3252084798592,151.906379567114 "Female",64.267173971232,140.303090980389 "Female",61.8646667506084,124.004190746733 "Female",63.7454886542419,136.348218007956 "Female",61.4132187098014,102.740469806451 "Female",66.837535973109,160.397322883391 "Female",59.4010629944119,109.024081979028 "Female",60.252291653717,125.34158254282 "Female",60.3497183994335,132.149554313116 "Female",64.6259066088472,144.925333133712 "Female",68.2403796482764,167.445180049925 "Female",69.2226972697976,155.962039250896 "Female",68.6327074189002,166.134510011199 "Female",64.2362870609294,141.0222939848 "Female",65.6742675555615,149.566531244928 "Female",67.7191930496848,151.846182102681 "Female",65.6238094349896,136.394231600013 "Female",62.0637708675649,121.574206158023 "Female",63.1999648241147,147.029163554129 "Female",61.9347160672744,133.460884951638 "Female",63.9306868396469,141.206012076947 "Female",64.08597244234,141.339782209881 "Female",66.3872831579007,144.95550719842 "Female",67.9129871036528,163.393002309978 "Female",65.9332551594691,147.659738827700 "Female",66.5032813809697,161.256546334475 "Female",62.6041035041875,114.806299076910 "Female",64.1946129638604,140.718443577433 "Female",61.9704117297821,126.783071295531 "Female",61.6017895252985,125.180901787863 "Female",61.4759039649658,142.518795745625 "Female",66.2368709603695,156.005339548464 "Female",59.3548349719576,113.215333636768 "Female",66.4496081900473,156.932191861795 "Female",60.0567110414111,112.327629499251 "Female",58.6026378428478,102.319664235159 "Female",62.7354086122774,129.755777982750 "Female",60.5808089227324,108.64817624809 "Female",65.6514155912713,137.485522150775 "Female",64.0171572254401,127.939394325614 "Female",66.1137547323962,159.807688078246 "Female",64.6480688936906,127.970773840858 "Female",63.0182741273208,113.155274688855 "Female",62.1198987815701,117.847425858575 "Female",61.5012074766309,118.812406699843 "Female",66.3168859887127,144.666403662957 "Female",62.7445892051915,117.601882795413 "Female",69.8138108726794,167.79126564031 "Female",65.361538185318,145.599638937523 "Female",62.1160603347628,146.493035831695 "Female",67.8653732064027,160.916713206875 "Female",59.8917058025835,95.6331490139455 "Female",67.3651186782218,154.044531626765 "Female",58.7619166904071,102.455360842421 "Female",65.0462571158933,148.992287869633 "Female",65.9235860939012,168.796480525383 "Female",64.430185294107,137.597067048918 "Female",64.4053601192323,125.535720592245 "Female",66.8686877795546,157.717527033019 "Female",65.110155267786,141.405274500212 "Female",62.3737499685612,121.744224314875 "Female",63.4374354115474,165.571159974716 "Female",63.7197631757926,134.217253090247 "Female",62.799045913636,139.814576207508 "Female",68.0256319897911,154.21755812348 "Female",66.1616795308481,141.558942391226 "Female",61.0689078400293,102.402374389675 "Female",62.0602449031296,123.803906326023 "Female",69.4709873791619,178.981463730448 "Female",60.8376866626273,115.5987524907 "Female",68.6080951862288,172.627998121884 "Female",61.5525284060704,132.384315996015 "Female",61.4968574480678,125.413463291674 "Female",63.2927122803859,129.001461714191 "Female",67.4387168464623,168.292803829731 "Female",61.3120602278023,121.786116558227 "Female",67.8566110821243,174.829181992975 "Female",68.1377233133845,154.662544552824 "Female",66.2617947297274,156.890753383091 "Female",66.084684130535,165.484071768076 "Female",66.2902680571484,130.868418802778 "Female",61.5659244172593,132.242032672646 "Female",58.7794073301374,114.160340644139 "Female",61.7750389228048,128.342568260293 "Female",61.982454924662,137.392504943325 "Female",61.6760610936609,124.072143415762 "Female",66.6844587329795,151.354625002821 "Female",62.475772660293,117.215462032710 "Female",65.5674443443046,136.224693453942 "Female",65.5169216303795,152.809310919547 "Female",67.1398891848124,145.081621112428 "Female",68.1527830510768,171.976777035236 "Female",58.6116651611251,103.309512821492 "Female",64.3347880645508,161.746796970365 "Female",64.852759910083,147.725921111927 "Female",62.5481169501448,130.596009236314 "Female",64.2817350316589,136.747878853207 "Female",65.6259031324161,139.579900047867 "Female",59.1185027921643,107.470827797302 "Female",64.4130847575628,142.973056513482 "Female",63.480010094941,150.470401297209 "Female",58.8475807628038,117.726692087501 "Female",64.0309570986433,133.766591761008 "Female",59.5029591681268,109.974021861301 "Female",65.0671072312108,135.771360756767 "Female",62.8455330431555,150.258936716086 "Female",63.197301847582,140.321785168958 "Female",62.5234894106735,142.660589331517 "Female",67.409959539636,165.07538928965 "Female",63.1739775404987,129.332511810487 "Female",65.9162490218954,158.996516988388 "Female",62.6441344678287,118.187888486896 "Female",63.0161730799956,125.661024907223 "Female",70.0787642678013,184.215084994391 "Female",62.9350479542023,124.460002521570 "Female",67.0194343618599,148.327208994973 "Female",60.2593262201207,100.585270132320 "Female",65.602706897149,164.21093305065 "Female",66.4310004907227,125.347847996218 "Female",63.9301234376356,146.622209757364 "Female",62.550440527817,127.391033932806 "Female",63.8050428263773,131.402247035206 "Female",64.3331252459001,123.946904256746 "Female",67.5377984252476,183.740260305341 "Female",62.3047030955034,119.117423552414 "Female",61.5165069660115,132.978016394000 "Female",62.7771272227378,121.768006515088 "Female",66.2132856391115,173.382712193413 "Female",68.6423515362814,151.199121067480 "Female",63.2962500059043,137.919795002486 "Female",58.525426460434,107.792496451413 "Female",60.340781078074,111.077754467776 "Female",61.4339128514658,97.0585492910316 "Female",65.4759024853153,154.440886903915 "Female",60.4844450113919,121.797793339047 "Female",62.0003163925544,117.048353968405 "Female",59.6676520897522,114.386865401454 "Female",63.8032994430537,124.813068761729 "Female",62.8683805126047,132.694868661362 "Female",66.4065527455098,161.176218324358 "Female",62.5541763040655,113.449037730277 "Female",69.6658187244236,166.919445583037 "Female",62.1589714893252,121.631121533123 "Female",62.6946633203774,113.344958793507 "Female",66.6780166253524,137.747980045506 "Female",61.6748136176181,112.890415069261 "Female",60.0117844254731,109.049629540284 "Female",64.625353074651,143.145608450255 "Female",59.9789622354288,114.299371091190 "Female",64.8215744242023,155.008924352344 "Female",66.9326476578703,164.665490070478 "Female",64.6192625497259,139.416850573026 "Female",62.5372239843095,136.632728565258 "Female",58.906377626485,94.9769448720611 "Female",63.8472594162052,146.390844043121 "Female",67.6356307408296,169.799419540932 "Female",64.0549399257567,139.503937784788 "Female",59.9268570954084,98.4291094289727 "Female",65.9228431273311,161.747261136108 "Female",64.2867459557036,143.509867879614 "Female",63.384732917674,132.819916835868 "Female",64.8821358317178,140.066733090784 "Female",64.0772101578906,129.113822921496 "Female",67.264717279885,179.0066045992 "Female",58.3455329382085,110.245574597983 "Female",63.8581076637926,132.994496529638 "Female",64.4189216104995,141.180550389323 "Female",61.8985108520901,107.406853085427 "Female",63.7307348689358,119.066226769403 "Female",66.8788923144829,155.712389735787 "Female",63.2238036751848,121.269103735428 "Female",61.52940407943,126.815048236298 "Female",63.3217287105328,131.599246199666 "Female",62.2531281462686,133.782485648975 "Female",63.8040324384367,131.169741930046 "Female",66.1004689229617,160.129558020295 "Female",64.9463164921449,149.602102906545 "Female",61.1912947465944,129.761861954718 "Female",65.5792556468706,154.804363625151 "Female",64.4369965026001,151.979661880657 "Female",61.0195275637746,114.387793081519 "Female",59.8601233557773,121.862907218250 "Female",63.7411007171824,131.687999214627 "Female",66.5960770336464,151.149081221018 "Female",60.587728662036,128.183805375338 "Female",64.4604140330399,138.537481395977 "Female",63.1396148899333,127.060489414696 "Female",60.7627947327993,125.018560559388 "Female",56.8222398387379,101.979923512805 "Female",69.3633891037202,169.453823851791 "Female",62.3209205687271,138.804577452673 "Female",65.8556391815103,162.5440593786 "Female",62.1284586002395,137.724547736171 "Female",64.659436607527,151.461272012951 "Female",66.7059047988235,159.696170551903 "Female",68.3110321825627,168.372878398774 "Female",64.5778172609094,131.692896462759 "Female",64.0029827614456,141.427940606626 "Female",67.4355930857502,149.82230160742 "Female",63.4857016654483,129.069106074205 "Female",61.2131692937785,134.955260864685 "Female",67.1269772515452,145.759914120496 "Female",66.957750042078,150.823516056301 "Female",69.3738437260129,158.455032787559 "Female",62.2777113817982,144.235252906176 "Female",65.4624704240378,146.735677047421 "Female",70.3375343257912,174.031548236652 "Female",63.9001145586492,142.847849964420 "Female",61.5091885414927,102.907713641440 "Female",61.0291607902737,121.638366744739 "Female",67.0790744878863,167.893575452388 "Female",67.5251004217047,139.927593430327 "Female",63.5717171675584,137.784101978477 "Female",59.3215326801004,102.042028386043 "Female",65.5696290821571,138.002026183289 "Female",64.8034934241898,151.041999787936 "Female",64.004992575683,139.730954544129 "Female",60.4571772005119,122.879367925637 "Female",64.9501432262416,142.312608027031 "Female",66.6740021548212,162.311506135265 "Female",62.3090152802421,134.097307026664 "Female",65.1291910263217,156.901637449970 "Female",60.0912873442943,106.012216406315 "Female",60.8084236978284,110.984168692645 "Female",62.1500060329063,137.168476421641 "Female",66.2493613075937,140.799488544419 "Female",65.9289620801981,149.991691657697 "Female",61.9098022031472,142.824915075074 "Female",61.7446142550536,130.301967792525 "Female",62.2415495006639,134.403266694157 "Female",63.007522022665,121.582019824345 "Female",63.9516216331207,143.791332388129 "Female",64.4290216900194,130.692337702579 "Female",61.7071214308111,128.757893176915 "Female",59.4778184925714,122.163349881514 "Female",65.2098234080249,150.361662295220 "Female",66.4657417325722,132.765672510065 "Female",64.8740791054647,157.388990820760 "Female",63.8422829667936,129.382082857810 "Female",59.157519161127,109.198505730858 "Female",62.995039447234,132.970433348892 "Female",64.5670088816315,143.072223370680 "Female",62.2508397278182,119.005386303683 "Female",67.071860943057,172.451494433254 "Female",64.0150640725262,146.869676692181 "Female",67.1678197702471,156.234461922087 "Female",65.3638680774141,133.071191353919 "Female",62.246575738126,136.827090215629 "Female",64.4069964191961,145.900533082200 "Female",67.6745192392133,172.574370078926 "Female",65.1911829334184,130.516731017375 "Female",60.5864467479508,124.360098660678 "Female",61.9377144672642,127.470148068618 "Female",66.791462776151,162.020486087884 "Female",63.9619943137321,144.701465643941 "Female",65.907580692769,146.414638084339 "Female",65.7420241203833,152.835833270134 "Female",63.5934594765503,133.847627276980 "Female",65.6310477936887,119.203378786973 "Female",66.313844360887,139.141990606133 "Female",63.1908783490016,147.716559613173 "Female",65.021827764664,124.564871972688 "Female",63.9393635328807,149.230982045662 "Female",64.7250146489534,130.409986828233 "Female",62.8083311087128,126.704291730877 "Female",65.0086999242771,127.172461478563 "Female",65.3883048232328,147.948674348008 "Female",61.1798611103505,119.025468917105 "Female",63.2603627220612,137.811370151255 "Female",60.9946387314652,112.648034074506 "Female",64.3411071947662,126.129763501721 "Female",66.0007524996042,159.130477117323 "Female",61.1569800137384,126.508145542036 "Female",67.6843266796178,151.938684617565 "Female",63.3846629668299,150.046322513742 "Female",66.2759952479308,152.227716302232 "Female",63.0237333839477,139.237909754776 "Female",65.9136422363802,152.000214278373 "Female",65.3968000388706,149.920266849602 "Female",65.4548745531048,142.458734638267 "Female",65.6505076946534,154.660472435919 "Female",63.9196164201122,140.707170793762 "Female",62.3355138207728,126.311229615652 "Female",64.1796298759773,143.859095044246 "Female",64.9444771017125,142.256136757650 "Female",64.2719663330519,141.284307970475 "Female",66.758758808507,148.960573016893 "Female",64.3900334165197,145.883313646984 "Female",65.1161003644177,154.458253156982 "Female",60.8354994354359,104.698454435334 "Female",62.700117105724,128.052130974831 "Female",63.6494987333151,134.638714693708 "Female",62.9847704149438,133.339434255286 "Female",58.6175219614685,113.168066654880 "Female",64.4309328307492,130.277478579665 "Female",65.2728267289433,154.530050379900 "Female",62.4829787678157,124.649926893117 "Female",66.9762978466596,151.406741483082 "Female",64.4531898638574,152.705132751250 "Female",64.67232952293,148.924409968802 "Female",62.266084708762,134.327891942180 "Female",61.6385566208196,128.553974142611 "Female",64.186437171682,132.196439182278 "Female",63.4223703674183,134.319447833367 "Female",67.1197642295393,156.538354439347 "Female",62.1261499084489,120.339478523766 "Female",63.8641735106074,138.606089715380 "Female",64.4756015834027,137.964704698720 "Female",65.2562601612648,137.634651178042 "Female",58.4359175660097,113.483900015357 "Female",68.8791065164837,181.316223363095 "Female",67.8187471984146,165.149112065422 "Female",64.777414193792,135.198020031907 "Female",64.044242207138,149.825871046328 "Female",60.6268627337497,118.540752921140 "Female",61.8510038248132,138.648056117202 "Female",66.7509785948995,168.435940362071 "Female",65.8235081753239,160.917887844250 "Female",61.1093866005175,111.734742461889 "Female",65.1405360248224,139.827624188439 "Female",61.6177690699442,125.025052179427 "Female",66.6040459829476,147.679530368386 "Female",64.4902363244089,163.992006546742 "Female",60.5736243203538,126.848772597692 "Female",61.174995151989,134.638053445428 "Female",62.2170506745986,112.372841814313 "Female",63.6987477968444,130.611194369789 "Female",64.339878399503,131.679311149158 "Female",68.3604562440255,166.570566198547 "Female",60.6342462997478,136.879127164819 "Female",63.8250932772937,128.906812971035 "Female",63.0624877729845,124.296598158519 "Female",65.4886713164881,135.013164040623 "Female",63.6830828844946,131.593042914664 "Female",64.1591344411522,137.684151448708 "Female",63.0989895624318,132.957960670008 "Female",61.1761492800566,116.171087057729 "Female",65.7255721224755,130.568402624542 "Female",60.9019630769076,131.126189794722 "Female",64.3992287556915,130.863830035322 "Female",61.3000310325956,115.028995155316 "Female",62.2338038061388,151.07616681402 "Female",65.7385474267877,153.040529129156 "Female",64.330794806462,145.507009529897 "Female",63.9284368207987,133.066748554403 "Female",66.6370546818033,146.411268413887 "Female",60.1085895031899,98.0885173454698 "Female",66.6626271836258,151.224619646021 "Female",64.6375019741103,156.913239949382 "Female",66.3211094228487,145.352441920009 "Female",68.9390948500606,168.391698590635 "Female",65.7135387144039,139.352715507398 "Female",65.4147294481064,119.778540556575 "Female",64.0189335550938,133.107341819717 "Female",64.0871801522136,137.490516042412 "Female",60.4212549809854,97.263880782195 "Female",63.5452454257834,121.561150127447 "Female",63.2508977965646,136.122053523538 "Female",63.5761010823927,122.564330018901 "Female",60.6352088047133,109.705890716663 "Female",61.7736939585565,121.895472058693 "Female",67.1159348673151,131.720517256489 "Female",62.0667608534508,114.927593781147 "Female",62.4993348165401,143.411534557038 "Female",63.4634293267321,138.039251467109 "Female",66.8037038522422,151.024840706583 "Female",63.3477882526882,136.050338109750 "Female",63.74809373596,137.152976378839 "Female",64.9458372532086,131.702450200473 "Female",65.8993869775735,153.530539810275 "Female",58.9549225796414,99.1789840868066 "Female",67.8823143567307,144.915793862608 "Female",66.7585572062827,166.232332686186 "Female",60.989216539002,123.024730366336 "Female",63.347579962677,134.977374054391 "Female",60.8782407546953,128.031249745851 "Female",61.1994488120088,142.407992019274 "Female",68.2064137818336,166.688550302958 "Female",64.553697571942,124.101735203873 "Female",62.3335476053972,133.294103037557 "Female",62.7785052639,130.471472868411 "Female",64.7829390428605,144.260500260998 "Female",61.7414477618806,130.804933250266 "Female",64.9633125720389,142.206379663482 "Female",61.3916436454159,120.681906546154 "Female",62.7644847915157,128.165570168023 "Female",62.302019710883,139.137905930751 "Female",58.3869634457064,100.876274462991 "Female",61.1306449195704,110.605644084729 "Female",63.4432499284519,134.892007801295 "Female",67.600646082386,142.637169580626 "Female",64.0344832444029,136.379970445889 "Female",65.8837592809012,131.625265161187 "Female",63.6963804951439,145.573254253088 "Female",65.4981690383316,132.30801122843 "Female",59.6852396536592,108.24004257932 "Female",65.5926534805385,154.605538882218 "Female",62.4281144680163,146.435582366983 "Female",64.2098958758246,148.343021337305 "Female",62.7607442096268,134.128284769777 "Female",59.878671608881,99.87728361362 "Female",63.9050534840444,136.595627678501 "Female",64.8944853405327,144.593585247652 "Female",65.078771662725,151.442531232569 "Female",66.6990537522017,132.252546119560 "Female",63.9165783415998,156.778585962843 "Female",64.6042672422984,165.36582552233 "Female",65.107807007599,133.332513404247 "Female",61.4075325180114,114.885446467204 "Female",65.8399507474821,160.265732901395 "Female",64.6093596200255,154.853506067544 "Female",61.8426002643591,136.879987980075 "Female",65.6364896028387,157.919315776876 "Female",64.0608702319153,151.511363102055 "Female",64.8352230590168,151.212559379286 "Female",54.2631333250971,64.700126712753 "Female",64.1210980406301,161.636377891107 "Female",64.1206098113892,125.390390871556 "Female",61.3300191509739,119.713505557257 "Female",62.8392446023182,138.522098876420 "Female",67.1322638952038,149.906066104422 "Female",62.0169710984478,146.227379064224 "Female",62.2349388377587,121.425250369257 "Female",66.5969136871831,135.930894459066 "Female",63.8583241977323,136.852306264119 "Female",60.6302256402572,121.421189821305 "Female",64.7652545139895,156.071485547745 "Female",62.1817207571004,129.344409963241 "Female",64.7447821030232,143.055719915972 "Female",65.9515487203149,144.839403133183 "Female",62.8835262850901,149.606555366288 "Female",62.1441284315367,130.552297752084 "Female",62.0090096237039,118.964402735672 "Female",60.6158112604389,106.702214989515 "Female",63.2935049809343,138.694005111524 "Female",63.2216831308406,127.861973082503 "Female",60.9263483283668,120.554964883368 "Female",63.7764051559378,122.459648371846 "Female",62.9522284749815,121.812362638044 "Female",60.0327691700543,93.2041025189544 "Female",67.9688974020556,188.872275271893 "Female",57.1658400564674,106.005031104277 "Female",66.1604542716245,143.655171885161 "Female",62.9650814314304,123.215903988835 "Female",63.7669751380039,129.658195067365 "Female",64.5018039912363,151.765398829352 "Female",62.4799525929456,124.291146838613 "Female",63.6254824860115,128.993772305324 "Female",57.7985310479726,112.345578239669 "Female",63.8068228064126,137.996105266234 "Female",61.9967360166638,149.191964743846 "Female",62.2342775418938,116.857171433185 "Female",63.4435307306218,130.308631238596 "Female",62.2046968515532,131.783117875017 "Female",65.1138761272885,148.340477003058 "Female",60.9771232533997,121.398690698863 "Female",66.774152091131,143.761536925492 "Female",63.7987661831767,133.593872067829 "Female",64.4058123983681,125.173247603755 "Female",63.6000992429856,151.662174233089 "Female",62.0041302989221,131.856912229764 "Female",64.1082872005842,149.256016020111 "Female",64.316281773575,141.41804811276 "Female",64.8315501689183,141.234368629149 "Female",63.4569427838517,128.196017267302 "Female",66.9382061585997,150.894022403312 "Female",64.7470820663934,144.624626086045 "Female",62.5972145265338,140.949581092237 "Female",70.654455414249,158.781223123924 "Female",66.9438331520537,168.623790601575 "Female",62.8006114717905,161.015198766528 "Female",64.587521695997,150.817036498971 "Female",64.1713813634192,153.174015012178 "Female",62.1913170949363,117.108723967739 "Female",62.0997287374862,138.606799363015 "Female",67.7715150241154,149.619377065273 "Female",63.382590902502,132.513944108924 "Female",66.0274133669015,140.494284019290 "Female",61.8732426235022,120.993659106835 "Female",65.0412275885192,140.465735097660 "Female",60.7985432311763,111.899015167472 "Female",60.5818174540197,101.742253209361 "Female",63.2547466299895,126.637594952235 "Female",61.3554509161552,129.961709388801 "Female",64.7306445368564,130.507734302454 "Female",64.6547181635873,148.962313682125 "Female",60.816282600608,114.207873683335 "Female",60.5701988001849,100.272980557897 "Female",67.1099662132599,168.069334051731 "Female",60.6201812824202,116.151374053982 "Female",61.9122540809676,136.494214680721 "Female",64.1419596757263,144.071684423605 "Female",66.2636839117636,149.077022816613 "Female",62.6430751058233,122.056268278697 "Female",60.3038414384198,109.274231513403 "Female",60.800942315209,120.529134636325 "Female",63.9443728229384,131.428058434086 "Female",62.2828659521288,113.471263954069 "Female",62.713023178084,145.343781793306 "Female",64.4566944569822,148.960597033789 "Female",60.9447267714851,113.537588687773 "Female",61.6195509446675,129.670580277501 "Female",64.0795965896993,123.002429772823 "Female",61.6473971688797,111.927796152036 "Female",64.7223994398002,144.809295250913 "Female",60.5291675545543,122.491672730830 "Female",64.062040911633,140.420970465235 "Female",60.5195085688511,119.034710861625 "Female",64.8699407180183,149.486390193806 "Female",64.6494322377942,140.896248257945 "Female",62.4010665258005,133.829923765346 "Female",61.3076798496563,132.227153212197 "Female",62.8657902526171,112.896933872332 "Female",59.1214330510499,107.868436132985 "Female",63.6585048740946,124.843320974197 "Female",63.3917088906254,144.534727038643 "Female",62.531988596341,106.019633371106 "Female",62.9545335255519,141.169204649486 "Female",64.4648678911603,156.260435924644 "Female",65.4766497053168,149.118911636881 "Female",64.705557795015,147.951506893112 "Female",65.1654624340785,145.751634430947 "Female",64.8495270161895,144.550070680981 "Female",64.2509043494048,151.416382803675 "Female",64.7238766900798,138.085796102834 "Female",68.1160394238496,166.796258146827 "Female",66.0437702308915,145.433881581854 "Female",62.9224512151646,146.203090037089 "Female",62.9511196384657,143.288713138325 "Female",65.8618689144898,149.870734766109 "Female",67.259531926447,164.172201060228 "Female",62.4507448865073,138.801656451659 "Female",64.5708217953311,137.513365883167 "Female",62.1190392605671,134.128691906617 "Female",62.2331140084242,133.177228811034 "Female",68.2382955916389,146.865810204028 "Female",58.5802901409696,98.585908219447 "Female",66.064742610184,146.970506537691 "Female",64.9070617891878,136.218218528288 "Female",61.7837272097307,120.520643947194 "Female",64.3855202463768,145.350066853016 "Female",66.6961628139657,156.777739615059 "Female",67.8981056423676,153.280480607347 "Female",63.7662369699983,133.780636291674 "Female",62.396206784718,108.399305946656 "Female",63.360509749283,134.955817345201 "Female",60.1388925128681,109.143470040034 "Female",65.6880435111746,150.271431909863 "Female",65.729153236359,137.752134197399 "Female",60.7250145709736,129.443436572884 "Female",64.9608233781658,134.050235266308 "Female",63.2550936718011,123.119527831255 "Female",65.8186336225677,157.507511451358 "Female",63.4680884970702,137.826992562929 "Female",71.122792523624,176.040345192776 "Female",63.3840376283551,141.950690073773 "Female",59.6393115870909,127.402907051745 "Female",60.6019751986672,116.190071408431 "Female",62.7263939399942,132.576224269357 "Female",60.6381853617395,116.420944630111 "Female",66.1580536628821,160.410502733551 "Female",67.7694275558389,155.902859331900 "Female",60.5215096481851,120.548162256366 "Female",69.3004277741934,185.187969769128 "Female",64.02584244221,134.182427137867 "Female",65.1259560448078,144.532731183071 "Female",63.5626600756129,131.795860588235 "Female",63.3079539712,132.97479067865 "Female",67.5855094656209,151.894079601504 "Female",62.6707085652017,143.838190822853 "Female",68.3947802423528,149.302806065575 "Female",61.3029256842087,123.609977549619 "Female",64.7189988477689,149.111052200052 "Female",66.9828189718338,172.084412079266 "Female",63.7929134960992,132.119905454684 "Female",61.6110710611676,128.137741325540 "Female",60.560412870538,119.462053239018 "Female",66.2125364010507,154.292867934564 "Female",62.0327637419294,106.268782884885 "Female",63.0589263520337,133.490737081326 "Female",62.5794911069391,142.565483096249 "Female",63.5588191470243,133.051277752322 "Female",65.793650605563,140.179483330696 "Female",60.8321708083984,127.532475155188 "Female",66.6549832763959,158.963740157672 "Female",63.5714042381496,130.854172550521 "Female",67.9480827012671,171.310005723302 "Female",62.3958239669813,139.849700712198 "Female",65.737290753818,167.663757142003 "Female",62.7348392876804,147.370478239625 "Female",63.3978721601229,140.204396484321 "Female",64.1608471410639,138.325501984479 "Female",56.9944562639017,84.4142457069723 "Female",64.4661937409447,139.517290907884 "Female",61.4285809545448,103.084810565620 "Female",61.789364723057,110.459106068582 "Female",64.6914673151391,137.380640649312 "Female",63.0605921361258,122.433639344764 "Female",59.1049943132025,125.049756977720 "Female",68.6859030388057,157.925011878086 "Female",67.809664009435,161.619961942107 "Female",62.4943766370851,126.515655307694 "Female",63.1816198271634,135.774653896350 "Female",63.1782408149907,142.050426764469 "Female",65.7814558043438,143.155041309031 "Female",65.223663298095,139.550850480833 "Female",62.993193577494,128.292204045507 "Female",65.181771217854,142.139623405584 "Female",62.5613711170025,123.037632223779 "Female",64.6806468283437,135.841493105884 "Female",62.0201048595304,122.153979816841 "Female",67.7266735296034,154.362795395461 "Female",61.9641737803249,112.833526194014 "Female",62.3284339818731,114.384283512834 "Female",65.243656841476,149.201181882833 "Female",64.9892599110934,130.433691591282 "Female",59.9130709886747,113.722431143854 "Female",63.6286663016974,129.119271918245 "Female",63.722539773484,142.452570887049 "Female",60.0116497291324,113.056426691520 "Female",65.8753081449846,149.540932765764 "Female",62.3845971149001,134.787500986578 "Female",57.8511151919104,97.040289867381 "Female",67.7837802752631,162.196323012810 "Female",61.894771995305,124.310818903679 "Female",59.7668203835622,111.260036224449 "Female",62.5272287956092,117.659636968027 "Female",60.3275095365089,124.206229693321 "Female",66.1853443779261,157.682950391288 "Female",66.8506261315395,154.082410864962 "Female",65.5860286790627,125.982888370193 "Female",61.7088544362555,114.854464488973 "Female",60.0378758390918,115.522648033966 "Female",65.727710786243,144.052257077761 "Female",65.6209985093952,133.760493295565 "Female",60.0267497792784,103.386946066912 "Female",63.8025950000515,127.808693963562 "Female",57.7868194111043,106.854116572758 "Female",63.040709476706,119.977632750804 "Female",60.6947364125673,90.1854056497334 "Female",61.1463441421336,105.382922391203 "Female",59.82273531183,122.15238263406 "Female",63.8536836690749,145.825608023271 "Female",65.4591958744903,148.636723186113 "Female",63.3890410098908,149.580424013912 "Female",63.8329648363879,134.394767438880 "Female",62.7029883969522,139.195593489926 "Female",62.3960049504189,130.365896397381 "Female",65.3865667232265,146.088163246950 "Female",63.9587951609862,148.238667321828 "Female",63.7634031141567,136.230864218100 "Female",62.9356897377354,144.466046183435 "Female",65.3489087701965,137.426133855077 "Female",62.5548229947593,107.732872765917 "Female",66.721445444981,148.423761851276 "Female",62.5028998376916,144.675912952677 "Female",60.0964419925663,104.413817265567 "Female",66.3020764286836,161.753978929902 "Female",66.4422918301442,145.653808863046 "Female",63.9529930556816,140.802116118289 "Female",60.2462571863052,104.965911754172 "Female",63.032981170548,122.044058599257 "Female",60.9708563201496,104.855402952307 "Female",63.3217669379405,129.798274162533 "Female",65.4897155158,121.330673768906 "Female",61.4059785460384,125.006103618663 "Female",62.7680735192718,133.207020218906 "Female",60.1883920670898,115.584318791353 "Female",65.0087932524814,151.041648276090 "Female",70.2208287459956,175.762084564093 "Female",62.678695754791,136.495860337319 "Female",60.9059989337814,129.005072364050 "Female",60.7597279257759,114.306427974064 "Female",63.7373169124018,130.280159749392 "Female",63.5526215500581,137.209671998669 "Female",62.5348057846243,125.585201195041 "Female",65.5641837275112,164.564272437718 "Female",58.6564443597335,110.012872871417 "Female",67.519733141364,163.490831665133 "Female",66.0711068895137,152.420031336353 "Female",63.5732517683164,130.436640653772 "Female",66.1521972166663,150.895695016028 "Female",64.21512502496,145.821458275697 "Female",66.015518545992,143.548112405955 "Female",62.9640000089819,134.431811357482 "Female",62.0088344524618,127.036632568145 "Female",59.5466118155454,99.3138152288173 "Female",65.4836061800174,138.982098177254 "Female",66.956468614354,164.089308083190 "Female",64.3494962801686,129.678031762794 "Female",64.9928079562232,151.90148349884 "Female",63.6297601316201,168.412968368841 "Female",62.2994736013515,136.446336063409 "Female",64.0191966372703,141.175989017874 "Female",58.7104560049926,96.6447562394442 "Female",67.1568192775879,150.912424055628 "Female",57.353092760465,72.7501446905149 "Female",63.7851172165417,127.652680111666 "Female",63.4653129727423,126.355405632671 "Female",59.7731590772369,110.838861335875 "Female",68.284956608779,158.535927119776 "Female",64.8779268092515,146.682645587302 "Female",63.351010225698,134.092030920230 "Female",66.4117893838934,160.447144972961 "Female",66.2496161752984,154.857522823554 "Female",59.0455310013641,105.380905400503 "Female",66.3157150798263,163.481936613583 "Female",62.510263852172,133.782664735474 "Female",69.416718012066,170.626274579613 "Female",63.8432377682987,129.777710109753 "Female",68.8367455086542,161.645203459121 "Female",65.6364969833215,133.415663055818 "Female",62.4522657866618,123.263809871912 "Female",65.0228405181778,139.321142518924 "Female",61.5776872629326,122.543726405007 "Female",65.7762942574566,134.001346887488 "Female",65.6306033122231,157.834902333155 "Female",60.1442606088897,111.190707849205 "Female",60.252806912898,125.487137274160 "Female",66.697271768392,166.439965731836 "Female",59.7599482266044,119.717507263397 "Female",67.6604675401486,161.962569523575 "Female",62.5119019578105,139.451959426467 "Female",59.3092054959464,103.900923572937 "Female",65.9820785576512,160.730357101028 "Female",67.2201472207274,168.809399222641 "Female",63.246641306254,138.144250969423 "Female",62.5575843370962,136.168888322192 "Female",64.408825123937,139.604219139648 "Female",62.4812332615228,122.605320556767 "Female",65.1642016883498,156.886259983342 "Female",61.9972800902839,147.914025598756 "Female",64.0839115736962,127.84323183216 "Female",65.208720368621,140.586790407329 "Female",65.0949321191981,120.844445935844 "Female",63.3294211831034,145.326993964224 "Female",59.4167432203109,124.400320192758 "Female",61.4078458164118,126.474528182468 "Female",63.1099887056508,133.352698304198 "Female",66.5349364066975,137.655114747205 "Female",61.4320385119187,131.424788888273 "Female",65.2305956333639,160.736227123166 "Female",62.9385419582943,135.587391178160 "Female",58.6571768471382,113.880263679803 "Female",64.0475617602143,145.172309314167 "Female",61.9231579028895,130.906703662912 "Female",61.2330938493363,124.437053099369 "Female",64.6940732111665,135.549114424322 "Female",62.4660098095931,127.302910342301 "Female",64.5071395706443,141.552480973096 "Female",66.9150772458008,144.766234782788 "Female",62.1015201203098,145.44756721962 "Female",67.2711858766038,137.634318209933 "Female",65.7072245044643,156.063310980655 "Female",64.8306079626298,156.911816669712 "Female",58.0321731714629,92.7914502472375 "Female",64.7171900766688,146.342313655760 "Female",61.2063035960139,127.186299549784 "Female",65.069034351473,142.637415077436 "Female",58.5162588396366,115.975438243387 "Female",66.7241930002889,164.487254477317 "Female",67.3268500356674,160.963549571199 "Female",59.0411980007634,108.094033944991 "Female",70.3500153375103,202.237213739559 "Female",65.861517807889,142.969952434287 "Female",63.385061463344,139.183355388702 "Female",65.6373874478275,162.605728749611 "Female",62.6322504088938,121.986385835249 "Female",63.6961354284311,130.503520153368 "Female",62.7718471617383,141.808838171264 "Female",66.4834369151786,138.612796100984 "Female",65.8580669951731,161.902044223844 "Female",67.5813596985901,179.019157511712 "Female",58.1379227324002,115.64320789109 "Female",60.7248269897953,116.232713228888 "Female",65.1358797275796,153.397484882675 "Female",67.1527557768399,149.024336667854 "Female",61.9019609452297,131.020255739140 "Female",65.0716653479706,137.629857954212 "Female",63.9097591005028,131.560483537676 "Female",62.2607254422301,128.451609496612 "Female",64.4111522604649,134.725201196505 "Female",65.2647953048716,156.209802001068 "Female",67.2076309249385,152.157986017427 "Female",61.791117940146,135.633469989130 "Female",67.0432342390442,153.748232281030 "Female",63.1063259690399,136.589972754851 "Female",64.2103261288421,144.137950911822 "Female",63.7922299272973,129.341080849315 "Female",62.417973138852,131.349766344210 "Female",61.5926841560757,118.157335069133 "Female",64.647098041247,148.689557040019 "Female",66.5995807879304,130.991053228270 "Female",64.6594037099422,141.893064746243 "Female",63.8592791984823,154.2320940536 "Female",60.8862532028202,139.173175213203 "Female",62.5786421572284,129.178171019424 "Female",60.5994364818519,104.850596393218 "Female",60.1559311212048,108.143759169341 "Female",61.1437225598377,111.488948150509 "Female",61.4914377740991,115.648498761258 "Female",62.5030783916201,129.198008446720 "Female",63.7403989239607,146.839515295126 "Female",60.7544855777917,98.8791443666623 "Female",63.3326543289789,121.965814464381 "Female",65.3677790504009,156.097455036575 "Female",63.7263573527539,162.048029882668 "Female",63.8830723354246,137.388288046594 "Female",66.6882182114484,160.252614183684 "Female",61.5933621683868,109.450017974040 "Female",59.7885012639876,109.827941120932 "Female",64.641060574983,126.321941371037 "Female",64.1583371244616,138.794824975025 "Female",67.8118152454112,146.259558415089 "Female",64.5006905467644,156.224486881468 "Female",65.3905225825116,139.111128777132 "Female",68.6644487735395,160.409122548532 "Female",67.1565377813676,162.594722245922 "Female",66.6973677273202,143.624547582329 "Female",65.8388048297537,143.806592511204 "Female",57.9955714333302,95.91004289368 "Female",61.0957894172756,115.224796251500 "Female",66.7086800768832,164.928049461919 "Female",64.2237755776852,124.776506028559 "Female",66.2722402345961,142.945958826692 "Female",59.7958609680167,118.754040580074 "Female",61.5693159640859,103.323656402734 "Female",64.4859270250341,132.953563732544 "Female",61.5046182003953,122.286750997725 "Female",62.4118023503333,142.604529174041 "Female",62.9004839996385,151.557667648506 "Female",63.2202287688466,125.074858607383 "Female",68.2810532421262,167.340407722375 "Female",62.8448709976256,131.134884527499 "Female",67.4137501280062,159.568614016378 "Female",65.5367024115553,148.272979501319 "Female",60.95754175702,104.683149206807 "Female",65.0484073813885,144.867902167782 "Female",57.6994920729147,92.2230532384112 "Female",62.057331949891,138.296689367365 "Female",68.1070873057482,164.486683428742 "Female",66.5380772533596,143.664713932853 "Female",63.0364361534379,143.964153157515 "Female",67.780446141473,163.204353503093 "Female",60.8848733674499,128.530333378349 "Female",66.8423667997649,160.041974166854 "Female",65.0755738133577,143.185710167675 "Female",66.3561349202619,156.774386507848 "Female",64.6422180652013,141.082610968689 "Female",61.3535153498264,136.302488151554 "Female",62.3913826281639,125.635115013887 "Female",65.6791884386852,157.462762647754 "Female",61.9995385238238,143.218187515032 "Female",61.801879578739,137.386649281808 "Female",63.033676483203,127.640417273188 "Female",67.131102931153,146.575817612363 "Female",59.7900219868108,128.253923115184 "Female",65.0378264828721,138.463631551886 "Female",61.8388418572126,116.403171293482 "Female",62.9683824331812,124.773902602346 "Female",62.2838556853730,130.395085483009 "Female",63.8014841524303,144.96448631367 "Female",62.867321856224,138.439090326543 "Female",65.9568647169701,153.441583565852 "Female",68.287639569503,149.851548001767 "Female",66.6918800198268,151.812906629730 "Female",61.1088189454592,118.779106542497 "Female",66.277273920325,140.856367027129 "Female",63.7168086529781,144.994885996291 "Female",59.4372318905798,103.678996286948 "Female",66.1515532968867,146.287675670735 "Female",58.6854713882726,101.855708720062 "Female",66.5824091227795,155.891880934276 "Female",66.6304251006085,142.874035672232 "Female",63.1802598389868,131.801773515280 "Female",65.874520685968,126.088790729601 "Female",62.3769700407049,115.556599279855 "Female",67.431010945909,168.922313144745 "Female",62.788759576151,120.013226214053 "Female",68.0598389077343,176.244420313940 "Female",66.7551632092198,137.641530751013 "Female",65.9083497480437,137.697227865163 "Female",65.3933598325428,146.714132873857 "Female",61.2417919647046,135.734081112462 "Female",64.5002933577746,132.275936262261 "Female",64.3216756626403,128.544983092704 "Female",62.9619098533643,138.631288817846 "Female",63.6860190981696,129.021055261541 "Female",65.3072621260372,158.410823212046 "Female",64.8281846265654,150.030359755927 "Female",56.5341658080891,97.7438964834685 "Female",56.9752789632804,90.3417842608302 "Female",69.0712714121013,158.388445663319 "Female",63.8552141265831,138.347651895244 "Female",63.684280276189,141.651738822962 "Female",61.0435720763044,113.889482787263 "Female",66.317899421915,159.033613387859 "Female",59.8399237912534,108.101541625255 "Female",65.6628785355328,143.934405664019 "Female",61.4952281152822,145.746689074312 "Female",59.634572560617,111.454582060076 "Female",61.3457245777591,114.341123894174 "Female",63.845212126033,153.247365241812 "Female",65.1761355865157,144.534167850387 "Female",65.816652600841,110.488486684118 "Female",60.0259500665801,87.0354160033182 "Female",68.828104386959,163.431519816008 "Female",62.5554253421448,144.299189909668 "Female",61.7266101916917,117.37032054242 "Female",64.7106239752276,137.741896782866 "Female",65.6646236546352,139.622573130960 "Female",66.479275640941,159.792173362601 "Female",62.2012348524975,129.860973304470 "Female",61.5046338204293,116.814812074744 "Female",61.6304558853935,131.524693515469 "Female",62.7202936746391,136.135549774157 "Female",63.583680336741,128.219616657185 "Female",60.7574674745953,137.804815384420 "Female",66.1180127548593,160.240878588095 "Female",65.2397367390664,146.238849197409 "Female",64.6234271641416,138.056157131942 "Female",64.632119489794,133.588996457765 "Female",64.5073306544843,136.317374594578 "Female",67.2196282962777,172.19297773909 "Female",63.7830427504241,149.344027647034 "Female",61.551110376156,127.075102184616 "Female",63.7328306115322,143.187429529605 "Female",61.2009946946584,115.901128847343 "Female",62.7434778192535,138.557941544823 "Female",66.5476085579028,157.090752683150 "Female",62.8850630208678,128.361153217695 "Female",61.5819746301437,140.585717556394 "Female",63.5205327540616,137.958564772148 "Female",61.597656715669,114.662793564683 "Female",62.8945987905138,120.616740290476 "Female",64.1742790637743,135.131330793471 "Female",62.433723061098,131.506451538133 "Female",65.9565834339489,153.171812937615 "Female",65.2322275232837,152.962357434731 "Female",58.2609650496285,104.872611752261 "Female",60.025917295093,126.460829766303 "Female",63.8055284133837,138.151329865328 "Female",60.571364105579,135.078470284992 "Female",64.4475209635432,140.087593988013 "Female",60.4422497363627,123.730406679793 "Female",61.509106353056,116.065719611182 "Female",65.0313096229525,156.832880708934 "Female",64.3103463968169,142.821243757182 "Female",66.0140320338363,154.288973534832 "Female",65.700012711963,160.827888745003 "Female",65.84341746169,161.771728553384 "Female",63.3828014970703,132.573836916793 "Female",68.829414722765,162.987082787001 "Female",63.7394321857554,131.917325200292 "Female",63.9916768712429,142.636072960776 "Female",55.9791978761431,85.4175336162677 "Female",68.9772648900288,178.634086491971 "Female",61.0838268390588,118.743804741526 "Female",65.9794869505598,150.485298076258 "Female",64.9910502875757,150.406938749192 "Female",61.8038638780122,125.228439302866 "Female",62.980775363069,121.322628721387 "Female",62.7764090005046,133.843538722038 "Female",62.0894335678826,138.625371164627 "Female",64.9661922096248,147.356066028461 "Female",66.5889411955057,147.56870130415 "Female",64.8958190087328,158.21286082543 "Female",59.2429163796226,108.708030974078 "Female",63.3780988111644,126.545740424925 "Female",64.7878214335247,138.791770449594 "Female",66.0641503179095,171.9378090339 "Female",65.052618957827,150.097941625046 "Female",66.419263421535,148.209640329295 "Female",61.0769727327459,127.089765366110 "Female",64.8934630158002,133.854826231392 "Female",62.1274801074527,136.783022358855 "Female",70.751410247212,192.583638851817 "Female",64.7205744069328,149.514689486199 "Female",63.290223692792,133.292934706536 "Female",69.3588597945758,179.437574807736 "Female",61.8805579412634,133.781139026222 "Female",60.9535890911899,120.044594862273 "Female",65.4827276382499,135.278321527876 "Female",66.117100052603,137.610001649099 "Female",64.6981629806958,162.763350038971 "Female",68.139611177199,174.632557508882 "Female",61.5276911872735,114.843961444268 "Female",64.1557293720552,126.87533607939 "Female",66.2054277891881,151.020552298657 "Female",67.9691868291836,168.166431454186 "Female",65.6665872823438,129.664079829454 "Female",63.5574137107136,148.454148992035 "Female",61.8544491690001,118.786262779977 "Female",62.5150724940066,132.103922525704 "Female",59.8745007044387,131.188147883671 "Female",64.7553930842213,140.547044547838 "Female",63.5314631895709,131.435989492709 "Female",65.6225073758985,151.492030758686 "Female",64.3474686612606,134.633349355457 "Female",65.2505188289117,135.303222292726 "Female",59.3448548761631,113.415890493119 "Female",67.0847924513218,143.391773467871 "Female",64.7820531296727,125.459431375893 "Female",63.7071738295406,132.760921779713 "Female",64.4729275203453,128.191746209401 "Female",60.6344392263692,120.640466571973 "Female",68.974237695907,165.960592264492 "Female",61.1892084059313,112.250076566388 "Female",60.602924964864,133.327392100931 "Female",61.8712411964785,125.045868776162 "Female",65.6660473852393,139.725461563215 "Female",59.7650095061103,106.218846541064 "Female",66.8742045728997,150.597823483562 "Female",60.6615304876492,114.089467353772 "Female",61.8084337919203,121.339602002696 "Female",62.5439172932848,142.486033516691 "Female",60.9852893321396,120.035845701637 "Female",67.0372076459625,150.809188101112 "Female",65.1059318189413,149.694692763121 "Female",60.9897910515356,113.632693208351 "Female",64.7688332779472,142.804666976783 "Female",66.9253361756615,162.713391630611 "Female",61.1435994857813,127.447740240371 "Female",65.9654152828791,135.748733719985 "Female",61.465305996073,144.433032722408 "Female",57.7401919079034,93.6529568776345 "Female",62.7029092166342,142.218519457432 "Female",60.718925910647,123.223480423172 "Female",62.7896653703462,132.230275678311 "Female",66.0008544118505,158.946397207326 "Female",65.8453163836804,146.965778467625 "Female",65.9433193822939,149.963954697098 "Female",65.4149925174113,123.778753455340 "Female",66.7671973803215,157.006813541203 "Female",57.028857437194,101.202550876713 "Female",60.7426674718337,122.688297876925 "Female",63.3050704718277,121.046552259299 "Female",62.1850832052768,132.247070318045 "Female",65.3369134960336,132.008418192074 "Female",62.9480002510758,142.327070199756 "Female",59.4056541023386,111.853464602486 "Female",63.3347712202818,151.891617144402 "Female",66.8024710615704,147.654985752367 "Female",58.351003040251,110.122150970153 "Female",64.951112831819,152.999492313979 "Female",60.0631441116995,102.900046463916 "Female",66.3440551820552,161.339741617937 "Female",67.2706148534122,144.039104146160 "Female",65.9961982391325,150.559976581192 "Female",66.7905919089783,129.419527343693 "Female",65.5448328103466,147.993165299471 "Female",67.1782702732674,166.601376562662 "Female",58.7524891137083,106.846041391601 "Female",62.1573761599297,132.001207516842 "Female",63.0851623479461,124.829873690161 "Female",65.4451446428084,137.180187654642 "Female",63.1715347356898,142.747753679809 "Female",63.3659327519453,154.566870720544 "Female",62.2793754624535,111.441580151341 "Female",59.5146782134889,109.421206011743 "Female",68.5444489214892,148.828165321337 "Female",62.9559495128415,130.917233923371 "Female",62.3556111176757,129.515118042822 "Female",63.6454226791541,147.191477088067 "Female",68.2595974675301,174.142421017912 "Female",64.1737578926288,125.647820584166 "Female",64.7804200409041,137.922681216022 "Female",63.1350520611177,121.538247974131 "Female",61.0752102778519,120.515886673744 "Female",59.901553758242,116.503428958580 "Female",63.6060194418352,146.621049799341 "Female",61.9491429296157,124.649015846546 "Female",66.2915054259673,140.319412644818 "Female",62.1792003673392,135.957105413468 "Female",60.4445468071915,115.440497895383 "Female",61.9151837221662,123.958660959029 "Female",66.6245441936145,149.828093581128 "Female",59.0617026444967,123.94704705447 "Female",64.863385916734,138.484541094995 "Female",64.0956333974414,133.682431639526 "Female",61.1107246030827,123.386296199673 "Female",64.1072603210836,138.730739654770 "Female",63.0242050262459,134.008136207787 "Female",61.278349368441,132.534228800380 "Female",59.6990243061141,111.148256038695 "Female",65.2913839500395,141.801085493497 "Female",62.8695662726238,140.298043077455 "Female",62.9037192220642,144.070328066129 "Female",62.9689294444869,126.184996626061 "Female",67.9453607959868,161.281836515085 "Female",65.2157922644659,150.646649579347 "Female",66.7736747517196,162.100595728148 "Female",65.7545476179122,152.284627603385 "Female",61.6715288928211,140.024792390255 "Female",62.7284948017706,120.402414130795 "Female",65.167673917306,135.714823804041 "Female",61.8260073149363,126.932272804751 "Female",64.8065108061556,156.095577878988 "Female",63.9983512735363,155.598037798773 "Female",68.2023846134737,163.610847154983 "Female",65.6187368801067,151.500389289413 "Female",64.6402472958549,155.318297316520 "Female",60.6537331683682,123.084293029792 "Female",60.7370306123989,120.926500000733 "Female",65.3939465118574,143.017835386639 "Female",66.2519230758127,124.019916834104 "Female",61.4759043029338,121.387235721557 "Female",64.494837574551,149.402546671129 "Female",57.3757585320912,114.192208638152 "Female",62.0560118896444,125.135896881121 "Female",60.4722619671056,110.768228534481 "Female",60.4432638886428,135.559390158229 "Female",69.8685114859186,177.992065783139 "Female",65.8307257157602,132.827888768001 "Female",59.0470285438884,111.707368983008 "Female",68.041065127316,170.514212621921 "Female",63.3526975521962,141.906509849061 "Female",65.6102432668041,151.169475049508 "Female",59.5387285129225,121.244875534712 "Female",60.9550842641814,95.6866743332824 "Female",63.1794982498071,141.266099582434 "Female",62.6366749337994,102.853563214830 "Female",62.0778316936514,138.691680275738 "Female",60.0304337715611,97.6874322554917 "Female",59.0982500313486,110.529685683049 "Female",66.1726521477708,136.777454183235 "Female",67.067154649054,170.867905890713 "Female",63.8679922137577,128.475318784122 "Female",69.0342431307346,163.852461346571 "Female",61.9442458795172,113.649102675312 ================================================ FILE: files/csv_example.csv ================================================ "name","country","city","skills" "Asabeneh","Finland","Helsinki","JavaScrip" ================================================ FILE: files/example.txt ================================================ I love python! ================================================ FILE: files/json_example.json ================================================ { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": [ "JavaScrip", "React", "Python" ] } ================================================ FILE: files/reading_file_example.txt ================================================ This is an example to show how to open a file and read. This is the second line of the text.I love python ================================================ FILE: files/xml_example.xml ================================================ Asabeneh Finland Helsinki JavaScrip React Python ================================================ FILE: korean/03_Day_Operators/03_operators.md ================================================

30 Days Of Python: Day 3 - Operators

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
[<< Day 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Day 4 >>](../04_Day_Strings/04_strings.md) ![30DaysOfPython](../images/30DaysOfPython_banner3@2x.png) - [📘 3일차](#-3일차) - [불리언](#불리언) - [연산자](#연산자) - [대입 연산자](#대입-연산자) - [산술 연산자:](#산술-연산자) - [비교 연산자](#비교-연산자) - [논리 연산자](#논리-연산자) - [💻 3일차: 실습](#-3일차-실습) # 📘 3일차 ## 불리언 불리언 데이터 타입은 True 또는 False 두 값 중 하나를 나타냅니다. 비교 연산자를 사용하면 이 데이터 타입의 사용이 명확해질 것입니다. 첫 번째 문자 **T** 는 참, **F** 는 거짓으로 표현되는 자바 스크립트와 달리 대문자여야 합니다. **예시: 불리언 값** ```py print(True) print(False) ``` ## 연산자 파이썬은 몇 가지 타입의 연산자를 지원합니다. 이 섹션에서 이것에 대해 알아볼 것입니다. ### 대입 연산자 대입 연산자는 변수에 값을 대입할 때 사용됩니다. = 로 예시를 들어보겠습니다. 수학에서 등호란 두 값이 동일하다는 것을 의미하지만, 파이썬에서는 특정 변수가 값을 가지고 있으며, 이 변수에 값을 대입한다고 합니다. 아래 표는 [w3school](https://www.w3schools.com/python/python_operators.asp)에서 가져온 다양한 유형의 파이썬 할당 연산자를 보여줍니다. ![대입 연산자](../images/assignment_operators.png) ### 산술 연산자: - 더하기(+): a + b - 빼기(-): a - b - 곱하기(*): a * b - 나누기(/): a / b - 나머지 연산(%): a % b - 버림 나눗셈(//): a // b - 지수(**): a ** b ![산술 연산자](../images/arithmetic_operators.png) **예시: Integers** ```py # Arithmetic Operations in Python # Integers print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division: ', 4 / 2) # 2.0 파이썬의 나누기는 부동 소수를 제공합니다. print('Division: ', 6 / 2) # 3.0 print('Division: ', 7 / 2) # 3.5 print('Division without the remainder: ', 7 // 2) # 3, 부동 소수 또는 나머지가 없는 값을 제공합니다. print ('Division without the remainder: ',7 // 3) # 2 print('Modulus: ', 3 % 2) # 1, 나머지를 제공합니다. print('Exponentiation: ', 2 ** 3) # 9 2 * 2 * 2 를 의미합니다. ``` **예시: Floats** ```py # Floating numbers print('Floating Point Number, PI', 3.14) print('Floating Point Number, gravity', 9.81) ``` **예시: 복소수** ```py # Complex numbers print('Complex number: ', 1 + 1j) print('Multiplying complex numbers: ',(1 + 1j) * (1 - 1j)) ``` 변수를 선언하고 숫자 데이터 유형을 지정합니다. 여기서는 단일 문자 변수를 사용할 것이지만, 이런 유형의 변수를 선언하는 습관은 좋지 않다는 것을 기억하셔야 합니다. 변수 이름은 항상 기억해야 합니다. **Example:** ```python # 첫 번째로 변수를 먼저 선언합니다. a = 3 # a는 변수의 이름이며 정수 데이터 타입입니다. b = 2 # b는 변수의 이름이며 정수 데이터 타입입니다. # 산술 연산 및 결과를 변수에 대입합니다. total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # sum 대신 total을 사용했어야 하지만 sum은 내장 함수입니다. 내장 함수를 재정의하지 않도록 하십시오. print(total) # 만약 몇몇 출력에 문자열로 표시를 하지 않는다면, 어디서 결과가 오는지 알지 못할 것입니다. print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponentiation) ``` **Example:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # 값을 선언하고 함께 정리 num_one = 3 num_two = 4 # 산술 연산 total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_one remainder = num_two % num_one # 레이블로 값 출력 print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` 이제 점 연결을 시작하고 이미 알고 있는 계산 방법(면적, 부피, 밀도, 무게, 둘레, 거리, 힘)을 사용해 보겠습니다. **Example:** ```py # 원의 넓이 계산 radius = 10 # 원의 반지름 area_of_circle = 3.14 * radius ** 2 # 두 개의 * 기호는 지수를 의미합니다 print('Area of a circle:', area_of_circle) # 직사각형의 넓이 계산 length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_rectangle) # 개체의 무게 계산 mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # 무게에 단위 추가 # 액체의 밀도 계산 mass = 75 # in Kg volume = 0.075 # in cubic meter density = mass / volume # 1000 Kg/m^3 ``` ### 비교 연산자 프로그래밍에서 우리는 비교 연산자를 사용하여 두 값을 비교합니다. 우리는 값이 다른 값보다 크거나 작거나 같은지 확인합니다. 다음 표는[w3shool](https://www.w3schools.com/python/python_operators.asp)에서 가져온 파이썬의 비교 연산자를 보여줍니다. ![Comparison Operators](../images/comparison_operators.png) **Example: 비교 연산자** ```py print(3 > 2) # 참, 3이 2보다 크기 때문에 print(3 >= 2) # 참, 3이 2보다 크기 때문에 print(3 < 2) # 거짓, 3이 더 크기 때문에 print(2 < 3) # 참, 2가 3보다 작기 때문에 print(2 <= 3) # 참, 2가 3보다 작기 때문에 print(3 == 2) # 거짓, 3과 2는 같지 않기 때문에 print(3 != 2) # 참, 3은 2와 다르기 때문에 print(len('mango') == len('avocado')) # 거짓 print(len('mango') != len('avocado')) # 참 print(len('mango') < len('avocado')) # 참 print(len('milk') != len('meat')) # 거짓 print(len('milk') == len('meat')) # 참 print(len('tomato') == len('potato')) # 참 print(len('python') > len('dragon')) # 거짓 # 무언가를 비교하면 참 또는 거짓이 됩니다. print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) ``` 위의 비교 연산자 외에 파이썬은 다음과 같은 연산자를 사용합니다: - _is_: 두 변수가 동일할 경우 참을 반환합니다.(x is y) - _is not_: 두 변수가 동일하지 않을 경우 참을 반환합니다.(x is not y) - _in_: 제시된 목록에 특정 항목이 포함된 경우 참을 반환합니다.(x in y) - _not in_: 제시된 목록에 특정 항목이 없으면 참을 반환합니다.(x in y) ```py print('1 is 1', 1 is 1) # 참 - 데이터 값이 동일하기 때문에 print('1 is not 2', 1 is not 2) # 참 - 1과 2는 다르기 때문에 print('A in Asabeneh', 'A' in 'Asabeneh') # 참 - 문자열에서 A를 찾을 수 있습니다 print('B in Asabeneh', 'B' in 'Asabeneh') # 거짓 - 대문자 B가 없습니다 print('coding' in 'coding for all') # 참 - coding이라는 단어를 coding for all이 가지고 있기 때문에 print('a in an:', 'a' in 'an') # 참 print('4 is 2 ** 2:', 4 is 2 ** 2) # 참 ``` ### 논리 연산자 다른 프로그래밍 언어와 달리 파이썬은 논리 연산자를 위해 _and_, _or_, _not_ 키워드를 사용합니다. 논리 연산자는 다음과 같은 조건문을 결합하는 데 사용됩니다. ![Logical Operators](../images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # 참 - 두 개의 문장이 참이기 때문에 print(3 > 2 and 4 < 3) # 거짓 - 두 번째 문장이 거짓이기 때문에 print(3 < 2 and 4 < 3) # 거짓 - 두 가지 문장 모두 거짓이기 때문에 print('True and True: ', True and True) print(3 > 2 or 4 > 3) # 참 - 두 가지 문장 모두 참이기 때문에 print(3 > 2 or 4 < 3) # 참 - 두 가지 중 하나의 문장이 참이기 때문에 print(3 < 2 or 4 < 3) # 거짓 - 두 가지 문장 모두 거짓이기 때문에 print('True or False:', True or False) print(not 3 > 2) # 거짓 - 3이 2보다 큰 것은 참이기 때문에, 참이 아닐 경우 거짓을 줍니다. print(not True) # 거짓 - 부정으로 참에서 거짓으로 바뀝니다. print(not False) # True print(not not True) # True print(not not False) # False ``` 🌕 당신은 무한한 에너지를 가지고 있어요. 여러분은 이제 막 3일차 도전을 마쳤고 위대함으로 가는 길에 세 걸음 앞서 있습니다. 이제 여러분의 뇌와 근육을 위한 운동을 하세요. ## 💻 3일차 실습 1. 나이를 정수 변수로 선언합니다. 2. 자신의 키를 플로트 변수로 선언합니다. 3. 복소수를 저장하는 변수 선언합니다. 4. 삼각형의 밑면과 높이를 입력하도록 사용자에게 지시하는 스크립트를 작성하고 이 삼각형의 면적(면적 = 0.5 x b x h)을 계산합니다. ```py Enter base: 20 Enter height: 10 The area of the triangle is 100 ``` 5. 삼각형의 측면 a, 측면 b, 측면 c를 입력하라는 메시지를 표시하는 스크립트를 작성합니다. 삼각형의 둘레(지름 = a + b + c)를 계산합니다. ```py Enter side a: 5 Enter side b: 4 Enter side c: 3 The perimeter of the triangle is 12 ``` 6. 프롬프트를 사용하여 직사각형의 길이와 너비를 가져옵니다. 면적(면적 = 길이 x 폭) 및 둘레(면적 = 2 x (길이 + 폭)) 계산합니다. 7. 프롬프트를 사용하여 원의 반지름을 구합니다. 면적(면적 = 픽스 r x r)과 원주(c = 2 x 픽스 r)를 계산합니다. 여기서 pi = 3.14입니다. 8. y = 2x-2의 기울기, x-제곱 및 y-제곱을 계산합니다. 9. 기울기는 (m = y2-y1/x2-x1)입니다. 기울기와 [유클리드 거리](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) 점(2,2)과 점(6,10) 사이를 구합니다. 10. 과제 8과 9의 기울기를 비교합니다. 11. y 값(y = x^2 + 6x + 9)을 계산합니다. 다른 x 값을 사용하고 y 값이 0이 되는 x 값을 계산해 보십시오. 12. 'python'과 'dragon'의 길이를 찾아 거짓 비교를 합니다. 13. _and_ 연산자를 사용하여 'python'과 'dragon' 모두에 'on'이 있는지 확인합니다. 14. _나는 이 강좌가 전문용어로 가득하지 않기를 바랍니다. _in_ 연산자를 사용하여 _jargon_ 이 문장에 있는지 확인합니다. 15. dragon과 python 모두 'On'이 없습니다. 16. _python_ 텍스트의 길이를 찾아서 값을 float로 변환하고 문자열로 변환합니다. 17. 짝수는 2로 나누고 나머지는 0입니다. 파이썬을 사용하여 숫자가 짝수인지 아닌지 어떻게 확인하겠습니까? 18. 7 x 3의 나눗셈 버림이 2.7의 int 변환값과 동일한지 확인합니다. 19. '10'의 유형이 10의 유형과 동일한지 확인합니다. 20. if int('9.8')이 10과 같은지 확인합니다. 21. 사용자에게 시간 및 시간당 요금을 입력하도록 요청하는 스크립트를 작성합니다. 그 사람의 급여를 계산합니까? ```py Enter hours: 40 Enter rate per hour: 28 Your weekly earning is 1120 ``` 22. 사용자에게 년 수를 입력하도록 요청하는 스크립트를 작성합니다. 사람이 살 수 있는 시간을 초 단위로 계산합니다. 사람이 100년을 살 수 있다고 가정합시다. ```py Enter number of years you have lived: 100 You have lived for 3153600000 seconds. ``` 23. 다음을 표시하는 파이썬 스크립트를 작성합니다. ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` 🎉 축하합니다 ! 🎉 [<< Day 2](../02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) | [Day 4 >>](../04_Day_Strings/04_strings.md) ================================================ FILE: korean/readme.md ================================================ ================================================ FILE: mymodule.py ================================================ def generate_full_name(firstname, lastname): space = ' ' fullname = firstname + space + lastname return fullname def sum_two_nums(num1, num2): return num1 + num2 gravity = 9.81 person = { "firstname": "Asabeneh", "age": 250, "country": "Finland", "city": 'Helsinki' } ================================================ FILE: mypackage/__init__.py ================================================ ================================================ FILE: mypackage/arithmetics.py ================================================ def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ================================================ FILE: mypackage/greet.py ================================================ def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ================================================ FILE: numpy.md ================================================ - [📘 Day 24](#-day-24) - [Python for Statistical Analysis](#python-for-statistical-analysis) - [Statistics](#statistics) - [Data](#data) - [Statistics Module](#statistics-module) - [NumPy](#numpy) - [Importing NumPy](#importing-numpy) - [Creating numpy array using](#creating-numpy-array-using) - [Creating int numpy arrays](#creating-int-numpy-arrays) - [Creating float numpy arrays](#creating-float-numpy-arrays) - [Creating boolean numpy arrays](#creating-boolean-numpy-arrays) - [Creating multidimensional array using numpy](#creating-multidimensional-array-using-numpy) - [Converting numpy array to list](#converting-numpy-array-to-list) - [Creating numpy array from tuple](#creating-numpy-array-from-tuple) - [Shape of numpy array](#shape-of-numpy-array) - [Data type of numpy array](#data-type-of-numpy-array) - [Size of a numpy array](#size-of-a-numpy-array) - [Mathematical Operation using numpy](#mathematical-operation-using-numpy) - [Addition](#addition) - [Subtraction](#subtraction) - [Multiplication](#multiplication) - [Division](#division) - [Modulus](#modulus) - [Floor Division](#floor-division) - [Exponential](#exponential) - [Checking data types](#checking-data-types) - [Converting types](#converting-types) - [Multi-dimensional Arrays](#multi-dimensional-arrays) - [Getting items from a numpy array](#getting-items-from-a-numpy-array) - [Slicing Numpy array](#slicing-numpy-array) - [How to reverse the rows and the whole array?](#how-to-reverse-the-rows-and-the-whole-array) - [Reverse the row and column positions](#reverse-the-row-and-column-positions) - [How to represent missing values ?](#how-to-represent-missing-values-) - [Generating Random Numbers](#generating-random-numbers) - [Generationg random numbers](#generationg-random-numbers) - [Numpy and Statistics](#numpy-and-statistics) - [Matrix in numpy](#matrix-in-numpy) - [Numpy numpy.arange()](#numpy-numpyarange) - [What is Arrange?](#what-is-arrange) - [Creating sequence of numbers using linspace](#creating-sequence-of-numbers-using-linspace) - [NumPy Statistical Functions with Example](#numpy-statistical-functions-with-example) - [How to create repeating sequences?](#how-to-create-repeating-sequences) - [How to generate random numbers?](#how-to-generate-random-numbers) - [Linear Algebra](#linear-algebra) - [NumPy Matrix Multiplication with np.matmul()](#numpy-matrix-multiplication-with-npmatmul) - [Summery](#summery) - [💻 Exercises: Day 24](#-exercises-day-24) # 📘 Day 24 ## Python for Statistical Analysis ## Statistics Statistics is the discipline that studies the _collection_, _organization_, _displaying_, _analysis_, _interpretation_ and _presentation_ of data. Statistics is a branch of mathematics that is recommended to be a prerequisite for data science and machine learning. Statistics is a very broad field but we will focus in this section only on the most relevant part. After completing this challenge, you may go to web development, data analysis, machine learning and data science path. Whatever path you may follow, at some point in your career you will get data which you may work on. Having some statistical knowledge will help you to make decision based on data, _data tells as they say_. ## Data What is data? Data is any set of characters that is gathered and translated for some purpose, usually analysis. It can be any character, including text and numbers, pictures, sound, or video. If data is not put into context, it doesn't give any sense to a human or computer. To make sense from data we need to work on the data using different tools. The work flow of data analysis, data science or machine learning starts from data. Data can be provided from some data source or it can be created. There are structured and and unstructure data. Data can be found as small or big data format. Most of the data types we will get have been covered in the file handling section. ## Statistics Module The python _statistics_ module provides functions for calculating mathematical statistics of numeric data. The module is not intended to be a competitor to third-party libraries such as NumPy, SciPy, or proprietary full-featured statistics packages aimed at professional statisticians such as Minitab, SAS and Matlab. It is aimed at the level of graphing and scientific calculators. # NumPy In the first section we defined python as a great general-purpose programming language on its own, but with the help of other popular libraries (numpy, scipy, matplotlib, pandas etc) it becomes a powerful environment for scientific computing. Numpy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with arrays. So far, we have been using vscode but from now on I would recommend using Jupyter Notebook. To access jupter notebook let's install [anaconda](https://www.anaconda.com/). If you are using anaconda most of the common packages are included and you don't have install packages if you installed anaconda. ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ pip install numpy ``` ## Importing NumPy Jupyter notebook is available if your are in favor of [jupyter notebook](https://github.com/Asabeneh/data-science-for-everyone/blob/master/numpy/numpy.ipynb) ```py # How to import numpy import numpy as np # How to check the version of the numpy package print('numpy:', np.__version__) # Checking the available methods print(dir(np)) ``` ## Creating numpy array using ### Creating int numpy arrays ```py # Creating python List python_list = [1,2,3,4,5] # Checking data types print('Type:', type (python_list)) # # print(python_list) # [1, 2, 3, 4, 5] two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] print(two_dimensional_list) # [[0, 1, 2], [3, 4, 5], [6, 7, 8]] # Creating Numpy(Numerical Python) array from python list numpy_array_from_list = np.array(python_list) print(type (numpy_array_from_list)) # print(numpy_array_from_list) # array([1, 2, 3, 4, 5]) ``` ### Creating float numpy arrays Creating a float numpy array from list with a float data type parameter ```py # Python list python_list = [1,2,3,4,5] numy_array_from_list2 = np.array(python_list, dtype=float) print(numy_array_from_list2) # array([1., 2., 3., 4., 5.]) ``` ### Creating boolean numpy arrays Creating a boolean a numpy array from list ```py numpy_bool_array = np.array([0, 1, -1, 0, 0], dtype=bool) print(numpy_bool_array) # array([False, True, True, False, False]) ``` ### Creating multidimensional array using numpy A numpy array may have one or multiple rows and columns ```py two_dimensional_list = [[0,1,2], [3,4,5], [6,7,8]] numpy_two_dimensional_list = np.array(two_dimensional_list) print(type (numpy_two_dimensional_list)) print(numpy_two_dimensional_list) ``` ```sh [[0 1 2] [3 4 5] [6 7 8]] ``` ### Converting numpy array to list ```python # We can always convert an array back to a python list using tolist(). np_to_list = numpy_array_from_list.tolist() print(type (np_to_list)) print('one dimensional array:', np_to_list) print('two dimensional array: ', numpy_two_dimensional_list.tolist()) ``` ```sh one dimensional array: [1, 2, 3, 4, 5] two dimensional array: [[0, 1, 2], [3, 4, 5], [6, 7, 8]] ``` ### Creating numpy array from tuple ```py # Numpy array from tuple # Creating tuple in Python python_tuple = (1,2,3,4,5) print(type (python_tuple)) # print('python_tuple: ', python_tuple) # python_tuple: (1, 2, 3, 4, 5) numpy_array_from_tuple = np.array(python_tuple) print(type (numpy_array_from_tuple)) # print('numpy_array_from_tuple: ', numpy_array_from_tuple) # numpy_array_from_tuple: [1 2 3 4 5] ``` ### Shape of numpy array The shape method provide the shape of the array as a tuple. The first is the row and the second is the column. If the array is just one dimensional it returns the size of the array. ```py nums = np.array([1, 2, 3, 4, 5]) print(nums) print('shape of nums: ', nums.shape) print(numpy_two_dimensional_list) print('shape of numpy_two_dimensional_list: ', numpy_two_dimensional_list.shape) three_by_four_array = np.array([[0, 1, 2, 3], [4,5,6,7], [8,9,10, 11]]) print(three_by_four_array.shape) ``` ```sh [1 2 3 4 5] shape of nums: (5,) [[0 1 2] [3 4 5] [6 7 8]] shape of numpy_two_dimensional_list: (3, 3) (3, 4) ``` ### Data type of numpy array Type of data types: str, int, float, complex, bool, list, None ```py int_lists = [-3, -2, -1, 0, 1, 2,3] int_array = np.array(int_lists) float_array = np.array(int_lists, dtype=float) print(int_array) print(int_array.dtype) print(float_array) print(float_array.dtype) ``` ```sh [-3 -2 -1 0 1 2 3] int64 [-3. -2. -1. 0. 1. 2. 3.] float64 ``` ### Size of a numpy array In numpy to know the number of items in a numpy array list we use size ```py numpy_array_from_list = np.array([1, 2, 3, 4, 5]) two_dimensional_list = np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) print('The size:', numpy_array_from_list.size) # 5 print('The size:', two_dimensional_list.size) # 3 ``` ```sh The size: 5 The size: 9 ``` ## Mathematical Operation using numpy Numpy array is not like exactly like python list. To do mathematical operation in python list we have to loop through the items but numpy can allow to do any mathematical operation without looping. Mathematical Operation: - Addition (+) - Subtraction (-) - Multiplication (\*) - Division (/) - Modules (%) - Floor Division(//) - Exponential(\*\*) ### Addition ```py # Mathematical Operation # Addition numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_plus_original = numpy_array_from_list + 10 print(ten_plus_original) ``` ```sh original array: [1 2 3 4 5] [11 12 13 14 15] ``` ### Subtraction ```python # Subtraction numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_minus_original = numpy_array_from_list - 10 print(ten_minus_original) ``` ```sh original array: [1 2 3 4 5] [-9 -8 -7 -6 -5] ``` ### Multiplication ```python # Multiplication numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list * 10 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [10 20 30 40 50] ``` ### Division ```python # Division numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list / 10 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [0.1 0.2 0.3 0.4 0.5] ``` ### Modulus ```python # Modulus; Finding the remainder numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list % 3 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [1 2 0 1 2] ``` ### Floor Division ```py # Floor division: the division result without the remainder numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list // 10 print(ten_times_original) ``` ### Exponential ```py # Exponential is finding some number the power of another: numpy_array_from_list = np.array([1, 2, 3, 4, 5]) print('original array: ', numpy_array_from_list) ten_times_original = numpy_array_from_list ** 2 print(ten_times_original) ``` ```sh original array: [1 2 3 4 5] [ 1 4 9 16 25] ``` ## Checking data types ```py #Int, Float numbers numpy_int_arr = np.array([1,2,3,4]) numpy_float_arr = np.array([1.1, 2.0,3.2]) numpy_bool_arr = np.array([-3, -2, 0, 1,2,3], dtype='bool') print(numpy_int_arr.dtype) print(numpy_float_arr.dtype) print(numpy_bool_arr.dtype) ``` ```sh int64 float64 bool ``` ### Converting types We can convert the data types of numpy array 1. Int to Float ```py numpy_int_arr = np.array([1,2,3,4], dtype = 'float') numpy_int_arr ``` array([1., 2., 3., 4.]) 2. Float to Int ```py numpy_int_arr = np.array([1., 2., 3., 4.], dtype = 'int') numpy_int_arr ``` ```sh array([1, 2, 3, 4]) ``` 3. Int ot boolean ```py np.array([-3, -2, 0, 1,2,3], dtype='bool') ``` ```sh array([ True, True, False, True, True, True]) ``` 4. Int to str ```py numpy_float_list.astype('int').astype('str') ``` ```sh array(['1', '2', '3'], dtype=' [[1 2 3] [4 5 6] [7 8 9]] Shape: (3, 3) Size: 9 Data type: int64 ``` ### Getting items from a numpy array ```py # 2 Dimension Array two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_row = two_dimension_array[0] second_row = two_dimension_array[1] third_row = two_dimension_array[2] print('First row:', first_row) print('Second row:', second_row) print('Third row: ', third_row) ``` ```sh First row: [1 2 3] Second row: [4 5 6] Third row: [7 8 9] ``` ```py first_column= two_dimension_array[:,0] second_column = two_dimension_array[:,1] third_column = two_dimension_array[:,2] print('First column:', first_column) print('Second column:', second_column) print('Third column: ', third_column) print(two_dimension_array) ``` ```sh First column: [1 4 7] Second column: [2 5 8] Third column: [3 6 9] [[1 2 3] [4 5 6] [7 8 9]] ``` ## Slicing Numpy array Slicing in numpy is similar to slicing in python list ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) first_two_rows_and_columns = two_dimension_array[0:2, 0:2] print(first_two_rows_and_columns) ``` ```sh [[1 2] [4 5]] ``` ### How to reverse the rows and the whole array? ```py two_dimension_array[::] ``` ```sh array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) ``` ### Reverse the row and column positions ```py two_dimension_array = np.array([[1,2,3],[4,5,6], [7,8,9]]) two_dimension_array[::-1,::-1] ``` ```sh array([[9, 8, 7], [6, 5, 4], [3, 2, 1]]) ``` ## How to represent missing values ? ```python print(two_dimension_array) two_dimension_array[1,1] = 55 two_dimension_array[1,2] =44 print(two_dimension_array) ``` ```sh [[1 2 3] [4 5 6] [7 8 9]] [[ 1 2 3] [ 4 55 44] [ 7 8 9]] ``` ```py # Numpy Zeroes # numpy.zeros(shape, dtype=float, order='C') numpy_zeroes = np.zeros((3,3),dtype=int,order='C') numpy_zeroes ``` ```sh array([[0, 0, 0], [0, 0, 0], [0, 0, 0]]) ``` ```py # Numpy Zeroes numpy_ones = np.ones((3,3),dtype=int,order='C') print(numpy_ones) ``` ```sh [[1 1 1] [1 1 1] [1 1 1]] ``` ```py twoes = numpy_ones * 2 ``` ```py # Reshape # numpy.reshape(), numpy.flatten() first_shape = np.array([(1,2,3), (4,5,6)]) print(first_shape) reshaped = first_shape.reshape(3,2) print(reshaped) ``` ```sh [[1 2 3] [4 5 6]] [[1 2] [3 4] [5 6]] ``` ```py flattened = reshaped.flatten() flattened ``` ```sh array([1, 2, 3, 4, 5, 6]) ``` ```py ## Horitzontal Stack np_list_one = np.array([1,2,3]) np_list_two = np.array([4,5,6]) print(np_list_one + np_list_two) print('Horizontal Append:', np.hstack((np_list_one, np_list_two))) ``` ```sh [5 7 9] Horizontal Append: [1 2 3 4 5 6] ``` ```py ## Vertical Stack print('Vertical Append:', np.vstack((np_list_one, np_list_two))) ``` ```sh Vertical Append: [[1 2 3] [4 5 6]] ``` #### Generating Random Numbers ```py # Generate a random float number random_float = np.random.random() random_float ``` ```sh 0.018929887384753874 ``` ```py # Generate a random float number random_floats = np.random.random(5) random_floats ``` ```sh array([0.26392192, 0.35842215, 0.87908478, 0.41902195, 0.78926418]) ``` ```py # Generating a random integers between 0 and 10 random_int = np.random.randint(0, 11) random_int ``` ```sh 4 ``` ```py # Generating a random integers between 2 and 11, and creating a one row array random_int = np.random.randint(2,10, size=4) random_int ``` ```sh array([8, 8, 8, 2]) ``` ```py # Generating a random integers between 0 and 10 random_int = np.random.randint(2,10, size=(3,3)) random_int ``` ```sh array([[3, 5, 3], [7, 3, 6], [2, 3, 3]]) ``` ### Generationg random numbers ```py # np.random.normal(mu, sigma, size) normal_array = np.random.normal(79, 15, 80) normal_array ``` ```sh array([ 89.49990595, 82.06056961, 107.21445842, 38.69307086, 47.85259157, 93.07381061, 76.40724259, 78.55675184, 72.17358173, 47.9888899 , 65.10370622, 76.29696568, 95.58234254, 68.14897213, 38.75862686, 122.5587927 , 67.0762565 , 95.73990864, 81.97454563, 92.54264805, 59.37035153, 77.76828101, 52.30752166, 64.43109931, 62.63695351, 90.04616138, 75.70009094, 49.87586877, 80.22002414, 68.56708848, 76.27791052, 67.24343975, 81.86363935, 78.22703433, 102.85737041, 65.15700341, 84.87033426, 76.7569997 , 64.61321853, 67.37244562, 74.4068773 , 58.65119655, 71.66488727, 53.42458179, 70.26872028, 60.96588544, 83.56129414, 72.14255326, 81.00787609, 71.81264853, 72.64168853, 86.56608717, 94.94667321, 82.32676973, 70.5165446 , 85.43061003, 72.45526212, 87.34681775, 87.69911217, 103.02831489, 75.28598596, 67.17806893, 92.41274447, 101.06662611, 87.70013935, 70.73980645, 46.40368207, 50.17947092, 61.75618542, 90.26191397, 78.63968639, 70.84550744, 88.91826581, 103.91474733, 66.3064638 , 79.49726264, 70.81087439, 83.90130623, 87.58555972, 59.95462521]) ``` ## Numpy and Statistics ```py import matplotlib.pyplot as plt import seaborn as sns sns.set() plt.hist(normal_array, color="grey", bins=50) ``` ```sh (array([2., 0., 0., 0., 1., 2., 2., 0., 2., 0., 0., 1., 2., 2., 1., 4., 3., 4., 2., 7., 2., 2., 5., 4., 2., 4., 3., 2., 1., 5., 3., 0., 3., 2., 1., 0., 0., 1., 3., 0., 1., 0., 0., 0., 0., 0., 0., 0., 0., 1.]), array([ 38.69307086, 40.37038529, 42.04769973, 43.72501417, 45.4023286 , 47.07964304, 48.75695748, 50.43427191, 52.11158635, 53.78890079, 55.46621523, 57.14352966, 58.8208441 , 60.49815854, 62.17547297, 63.85278741, 65.53010185, 67.20741628, 68.88473072, 70.56204516, 72.23935959, 73.91667403, 75.59398847, 77.27130291, 78.94861734, 80.62593178, 82.30324622, 83.98056065, 85.65787509, 87.33518953, 89.01250396, 90.6898184 , 92.36713284, 94.04444727, 95.72176171, 97.39907615, 99.07639058, 100.75370502, 102.43101946, 104.1083339 , 105.78564833, 107.46296277, 109.14027721, 110.81759164, 112.49490608, 114.17222052, 115.84953495, 117.52684939, 119.20416383, 120.88147826, 122.5587927 ]), ) ``` ### Matrix in numpy ```py four_by_four_matrix = np.matrix(np.ones((4,4), dtype=float)) ``` ```py four_by_four_matrix ``` ```sh matrix([[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]) ``` ```py np.asarray(four_by_four_matrix)[2] = 2 four_by_four_matrix ``` ```sh matrix([[1., 1., 1., 1.], [1., 1., 1., 1.], [2., 2., 2., 2.], [1., 1., 1., 1.]]) ``` ### Numpy numpy.arange() #### What is Arrange? Sometimes, you want to create values that are evenly spaced within a defined interval. For instance, you want to create values from 1 to 10; you can use numpy.arange() function ```py # creating list using range(starting, stop, step) lst = range(0, 11, 2) lst ``` ```python range(0, 11, 2) ``` ```python for l in lst: print(l) ``` ```sh 0 2 4 6 8 10 ``` ```py # Similar to range arange numpy.arange(start, stop, step) whole_numbers = np.arange(0, 20, 1) whole_numbers ``` ```sh array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]) ``` ```py natural_numbers = np.arange(1, 20, 1) natural_numbers ``` ```py odd_numbers = np.arange(1, 20, 2) odd_numbers ``` ```sh array([ 1, 3, 5, 7, 9, 11, 13, 15, 17, 19]) ``` ```py even_numbers = np.arange(2, 20, 2) even_numbers ``` ```sh array([ 2, 4, 6, 8, 10, 12, 14, 16, 18]) ``` ### Creating sequence of numbers using linspace ```py # numpy.linspace() # numpy.logspace() in Python with Example # For instance, it can be used to create 10 values from 1 to 5 evenly spaced. np.linspace(1.0, 5.0, num=10) ``` ```sh array([1. , 1.44444444, 1.88888889, 2.33333333, 2.77777778, 3.22222222, 3.66666667, 4.11111111, 4.55555556, 5. ]) ``` ```py # not to include the last value in the interval np.linspace(1.0, 5.0, num=5, endpoint=False) ``` ``` array([1. , 1.8, 2.6, 3.4, 4.2]) ``` ```py # LogSpace # LogSpace returns even spaced numbers on a log scale. Logspace has the same parameters as np.linspace. # Syntax: # numpy.logspace(start, stop, num, endpoint) np.logspace(2, 4.0, num=4) ``` ```sh array([ 100. , 464.15888336, 2154.43469003, 10000. ]) ``` ```py # to check the size of an array x = np.array([1,2,3], dtype=np.complex128) ``` ```py x ``` ```sh array([1.+0.j, 2.+0.j, 3.+0.j]) ``` ```py x.itemsize ``` ```sh 16 ``` ```py # indexing and Slicing NumPy Arrays in Python np_list = np.array([(1,2,3), (4,5,6)]) np_list ``` ```sh array([[1, 2, 3], [4, 5, 6]]) ``` ```py print('First row: ', np_list[0]) print('Second row: ', np_list[1]) ``` ```sh First row: [1 2 3] Second row: [4 5 6] ``` ```p print('First column: ', np_list[:,0]) print('Second column: ', np_list[:,1]) print('Third column: ', np_list[:,2]) ``` ```sh First column: [1 4] Second column: [2 5] Third column: [3 6] ``` ### NumPy Statistical Functions with Example NumPy has quite useful statistical functions for finding minimum, maximum, mean, median, percentile,standard deviation and variance, etc from the given elements in the array. The functions are explained as follows − Statistical function Numpy is equipped with the robust statistical function as listed below - Numpy Functions - Min np.min() - Max np.max() - Mean np.mean() - Median np.median() - Varience - Percentile - Standard deviation np.std() ```python np_normal_dis = np.random.normal(5, 0.5, 100) np_normal_dis ## min, max, mean, median, sd print('min: ', two_dimension_array.min()) print('max: ', two_dimension_array.max()) print('mean: ',two_dimension_array.mean()) # print('median: ', two_dimension_array.median()) print('sd: ', two_dimension_array.std()) ``` min: 1 max: 55 mean: 14.777777777777779 sd: 18.913709183069525 ```python min: 1 max: 55 mean: 14.777777777777779 sd: 18.913709183069525 ``` ```python print(two_dimension_array) print('Column with minimum: ', np.amin(two_dimension_array,axis=0)) print('Column with maximum: ', np.amax(two_dimension_array,axis=0)) print('=== Row ==') print('Row with minimum: ', np.amin(two_dimension_array,axis=1)) print('Row with maximum: ', np.amax(two_dimension_array,axis=1)) ``` [[ 1 2 3] [ 4 55 44] [ 7 8 9]] Column with minimum: [1 2 3] Column with maximum: [ 7 55 44] === Row == Row with minimum: [1 4 7] Row with maximum: [ 3 55 9] ### How to create repeating sequences? ```python a = [1,2,3] # Repeat whole of 'a' two times print('Tile: ', np.tile(a, 2)) # Repeat each element of 'a' two times print('Repeat: ', np.repeat(a, 2)) ``` Tile: [1 2 3 1 2 3] Repeat: [1 1 2 2 3 3] ### How to generate random numbers? ```python # One random number between [0,1) one_random_num = np.random.random() one_random_in = np.random print(one_random_num) ``` 0.6149403282678213 ```python 0.4763968133790438 ``` 0.4763968133790438 ```python # Random numbers between [0,1) of shape 2,3 r = np.random.random(size=[2,3]) print(r) ``` [[0.13031737 0.4429537 0.1129527 ] [0.76811539 0.88256594 0.6754075 ]] ```python print(np.random.choice(['a', 'e', 'i', 'o', 'u'], size=10)) ``` ['u' 'o' 'o' 'i' 'e' 'e' 'u' 'o' 'u' 'a'] ```python ['i' 'u' 'e' 'o' 'a' 'i' 'e' 'u' 'o' 'i'] ``` ['iueoaieuoi'] ```python ## Random numbers between [0, 1] of shape 2, 2 rand = np.random.rand(2,2) rand ``` array([[0.97992598, 0.79642484], [0.65263629, 0.55763145]]) ```python rand2 = np.random.randn(2,2) rand2 ``` array([[ 1.65593322, -0.52326621], [ 0.39071179, -2.03649407]]) ```python # Random integers between [0, 10) of shape 2,5 rand_int = np.random.randint(0, 10, size=[5,3]) rand_int ``` array([[0, 7, 5], [4, 1, 4], [3, 5, 3], [4, 3, 8], [4, 6, 7]]) ```py from scipy import stats np_normal_dis = np.random.normal(5, 0.5, 1000) # mean, standard deviation, number of samples np_normal_dis ## min, max, mean, median, sd print('min: ', np.min(np_normal_dis)) print('max: ', np.max(np_normal_dis)) print('mean: ', np.mean(np_normal_dis)) print('median: ', np.median(np_normal_dis)) print('mode: ', stats.mode(np_normal_dis)) print('sd: ', np.std(np_normal_dis)) ``` ```sh min: 3.557811005458804 max: 6.876317743643499 mean: 5.035832048106663 median: 5.020161980441937 mode: ModeResult(mode=array([3.55781101]), count=array([1])) sd: 0.489682424165213 ``` ```python plt.hist(np_normal_dis, color="grey", bins=21) plt.show() ``` ![png](test_files/test_121_0.png) ```python # numpy.dot(): Dot Product in Python using Numpy # Dot Product # Numpy is powerful library for matrices computation. For instance, you can compute the dot product with np.dot # Syntax # numpy.dot(x, y, out=None) ``` ### Linear Algebra 1. Dot Product ```python ## Linear algebra ### Dot product: product of two arrays f = np.array([1,2,3]) g = np.array([4,5,3]) ### 1*4+2*5 + 3*6 np.dot(f, g) # 23 ``` ### NumPy Matrix Multiplication with np.matmul() ```python ### Matmul: matruc product of two arrays h = [[1,2],[3,4]] i = [[5,6],[7,8]] ### 1*5+2*7 = 19 np.matmul(h, i) ``` ```sh array([[19, 22], [43, 50]]) ``` ```py ## Determinant 2*2 matrix ### 5*8-7*6np.linalg.det(i) ``` ```python np.linalg.det(i) ``` -1.999999999999999 ```python Z = np.zeros((8,8)) Z[1::2,::2] = 1 Z[::2,1::2] = 1 ``` ```python Z ``` array([[0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.], [0., 1., 0., 1., 0., 1., 0., 1.], [1., 0., 1., 0., 1., 0., 1., 0.]]) ```python new_list = [ x + 2 for x in range(0, 11)] ``` ```python new_list ``` [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ```python [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ``` [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] ```python np_arr = np.array(range(0, 11)) np_arr + 2 ``` array([ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]) We use linear equation for quatities which have linear relationship. Let's see the example below: ```python temp = np.array([1,2,3,4,5]) pressure = temp * 2 + 5 pressure ``` array([ 7, 9, 11, 13, 15]) ```python plt.plot(temp,pressure) plt.xlabel('Temperature in oC') plt.ylabel('Pressure in atm') plt.title('Temperature vs Pressure') plt.xticks(np.arange(0, 6, step=0.5)) plt.show() ``` ![png](test_files/test_141_0.png) To draw the Gaussian normal distribution using numpy. As you can see below, the numpy can generate random numbers. To create random sample, we need the mean(mu), sigma(standard deviation), mumber of data points. ```python mu = 28 sigma = 15 samples = 100000 x = np.random.normal(mu, sigma, samples) ax = sns.distplot(x); ax.set(xlabel="x", ylabel='y') plt.show() ``` ![png](test_files/test_143_0.png) # Summery To summarise, the main differences with python lists are: 1. Arrays support vectorised operations, while lists don’t. 1. Once an array is created, you cannot change its size. You will have to create a new array or overwrite the existing one. 1. Every array has one and only one dtype. All items in it should be of that dtype. 1. An equivalent numpy array occupies much less space than a python list of lists. 1. numpy arrays support boolean indexing. ## 💻 Exercises: Day 24 1. Repeat all the examples ================================================ FILE: old_files/readme.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 1](#%f0%9f%93%98-day-1) - [Welcome](#welcome) - [Introduction](#introduction) - [Why Python ?](#why-python) - [Environment Setup](#environment-setup) - [Installing Python](#installing-python) - [Python Shell](#python-shell) - [Installing Visual Studio Code](#installing-visual-studio-code) - [How to use visual studio code](#how-to-use-visual-studio-code) - [Basic Python](#basic-python) - [Python Syntax](#python-syntax) - [Python Indentation](#python-indentation) - [Comment](#comment) - [Data types](#data-types) - [Number](#number) - [String](#string) - [Booleans](#booleans) - [List](#list) - [Dictionary](#dictionary) - [Tuple](#tuple) - [Set](#set) - [Checking Data types](#checking-data-types) - [Python File](#python-file) - [💻 Exercises - Day 1](#%f0%9f%92%bb-exercises---day-1) - [📘 Day 2](#%f0%9f%93%98-day-2) - [Built in functions](#built-in-functions) - [Variables](#variables) - [Data Types](#data-types-1) - [Checking Data types and Casting](#checking-data-types-and-casting) - [Number](#number-1) - [💻 Exercises - Day 2](#%f0%9f%92%bb-exercises---day-2) - [📘 Day 3](#%f0%9f%93%98-day-3) - [Boolean](#boolean) - [Operators:](#operators) - [Assignment Operators:](#assignment-operators) - [Arithmetic Operators:](#arithmetic-operators) - [Comparison Operators](#comparison-operators) - [Logical Operators](#logical-operators) - [💻 Exercises - Day 3](#%f0%9f%92%bb-exercises---day-3) # 📘 Day 1 ## Welcome **Congratulations** for deciding to participate in a **_30 days of Python_** programming challenge . In this challenge you will learn everything you need to be a python programmer and the whole concepts of programming. In the end of the challenge you will get a **_30DaysOfPython_** programming challenge certificate. [Join the telegram channel to get help](https://t.me/ThirtyDaysOfPython) ## Introduction Python is a high-level programming language for general-purpose programming. It is an open source. This 30 days python challenge will help you learn the latest version of Python, Python 3 step by step. The topics are broken down into 30 days, where each days contains several topics with easy-to-understand explanations, real-world examples and many hands on exercises. This challenge is designed for beginners and professionals who want to learn python programming language. ## Why Python ? It is a programming language which is very close to human language and because of that it is easy to learn and easy to use. Python used in varies industries including Google. It has been used to develop web applications, desktop applications, system adminstration, and machine learning libraries. Python is highly embraced language in the data science and machine learning community. I hope this is enough to convince you to start learning python. Python is eating the world and you are killing it before it eats you. ## Environment Setup ### Installing Python To run python script you need to install python. Let's [download](https://www.python.org/) python. If your are a windows user. Click the button encircled in red. [![installing on Windows](./images/installing_on_windows.png)](https://www.python.org/) If you are a macOS user. Click the button encircled in red. [![installing on Windows](./images/installing_on_macOS.png)](https://www.python.org/) To check if python is installed write the following command on your device terminal. ```shell python --version ``` ![Python Version](./images/python_versio.png) As you can see from the terminal, I am using _python 3.7.5_ version at the moment. If you mange to see the python version, well done. Python has been installed on your machine. Continue to the next section. ### Python Shell Python is an interpreted scripting language,so it doesn't need to be compiled. It means it executes the code line by line. Python comes with a _Python Shell (Python Interactive Shell)_. It is used to execute a single python command and get the result. Python Shell waits for the python code from the user. When you enter the code, it interprets the code and shows the result in the next line. Open your terminal or command prompt(cmd) and write: ```shell python ``` ![Python Scripting Shell](images/opening_python_shell.png) The python interactive shell is opened and it is waiting for you to write python code. You will write your python script next to this symbol >>> and then click Enter. Lets write our very first script on the python scripting shell. ![Python script on python shell](images/adding_on_python_shell.png) Well done, you wrote your first python script on python interactive shell. How do we close this shell ? To close the shell, next to this symbol >> write **exit()** command and press Enter. ![Exit from python shell](images/exit_from_shell.png) Now, you knew how to open the python interactive shell and how to exit from it. Python can give you result if you write scripts what python understands if not it returns errors. Let's make a deliberate mistake and see what python will return. ![Invalid Syntax Error](./images/invalid_syntax_error.png) As you can see from the returned error, python is so clever that it knows the mistake we made and which was _Syntax Error: invalid syntax_. Using x as multiplication in python is a syntax error because (x) is not a valid syntax in python. Instead of (**x**) we use asterisk (*) for multiplication. The returned error clearly shows what to fix. The process of identifying and removing errors from a program is called *debugging*. Let's debug it by replacing * in place of **x**. ![Fixing Syntax Error](./images/fixing_syntax_error.png) Our bug was fixed and the code run and we got a result we were expecting. As a programmer you will see such kind of errors on daily basis. It is good to know how to debug. To be good at debugging you should understand what kind of errors you are facing:SyntaxError, IndexError, ModuleNotFoundError, KeyError, ImportError etc. We will see more about different python **_error types_** in later section . Let's practice more , how to use python interactive shell. Go to your terminal or command prompt and write the word **python**. ![Python Scripting Shell](images/opening_python_shell.png) The python interactive shell is open and lets do some basic mathematics operations(addition, subtraction, multiplication, division, modulus, exponential). Lets do some maths first before we write any python code: - 2 + 3 = 5 - 3 - 2 = 1 - 3 \* 2 = 6 - 3 / 2 = 1.5 - 3 ^ 2 = 3 x 3 = 9 In python we have the following additional operations: - 3 % 2 = 1 => which means finding the remainder - 3 // 2 = 1 => which means removing the remainder Lets change the above mathematical expressions to code. The python shell has been opened and lets write a comment at the very beginning of the shell. A _comment_ is a part of the code which is not executed by python. So we can leave some text in our code to make our code more readable. Python does not run the comment part. A comment in python starts with hash(#) symbol. This is a how you write comment in python ```shell # comment starts with hash # this is a python comment itself because it starts with a (#) symbol ``` ![Maths on python shell](./images/maths_on_python_shell.png) Before we move on to the next section, lets practice more on the python interactive shell. Close the opened shell by writing _exit()_ on the shell and open it again and let's practice how to write text on the python shell. ![Writing String on python shell](images/writing_string_on_shell.png) ### Installing Visual Studio Code The python interactive shell is good to try and test small script codes but it won't be for a big project. In real work environment, developers use different code editors to write codes. In this 30 days of python programming challenge we will use visual studio code. Visual studio code is a very popular open source text editor. I am a fan of vscode and I would recommend to [download](https://code.visualstudio.com/) visual studio code, but if you are in favor of other editors, feel free to follow with what you have. [![Visual Studio Code](./images/vscode.png)](https://code.visualstudio.com/) If you installed visual studio code, let's see how to use it. #### How to use visual studio code Open the visual studio code by double clicking the visual studio icon. When you open it you will get this kind of interface. Try to interact with the labelled icons. ![Visual studio Code](images/vscode_ui.png) Create a folder name 30DaysOfPython on your desktop. Then open it using visual studio code. ![Opening Project on Visual studio](./images/how_to_open_project_on_vscode.png) ![Opening a project](./images/opening_project.png) After you opened you can create file and folder inside the your project directory which is 30DaysOfPython. As you can see below, I have created the very first file, helloworld.py. You can do the same. ![Creating a python file](./images/helloworld.png) After a long day of coding, you want to close your code editor, right ?. This is how you will close the opened project. ![Closing project](./images/closing_opened_project.png) Congratulations, you have finished setting up the development environment. Let's start coding. ## Basic Python ### Python Syntax A python script can be written on python interactive shell or on code editor. A python file has an extension .py. ### Python Indentation An indentation is a white space in a text. Indentation in many languages used to increase code readability, however python uses indentation to create block of codes. In other programming languages curly bracket used to create block of codes instead of indentation. One of the common bug when you write a python code will be wrong indentation. ![Indentation Error](images/indentation.png) ### Comment Comment is very important to make code more readable and to leave to remark in our code. Python doesn't run comment part of our code. Any text starts with hash(#) in python is a comment. **Example: Single Line Comment** ```shell # This is the first comment # This is the second comment # Python is eating the world ``` **Example: Multiline Comment** Triple quote can be use for multiline comment if it is not assigned to a variable ```shell """This is multiline comment multiline comment take multiple lines. python is eating the world """ ``` ### Data types In python there are several types of data types. We will get started with the most common ones. #### Number - Integer: Integer(negative, zero and positive) numbers Example: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: Decimal number Example ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex Example 1 + j, 2 + 4j #### String A collection of one or more characters under a single or double quote. If a string is more than one sentence we use triple quote. **Example:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day' ``` #### Booleans A boolean data type is either a True or False value. **Example:** ```python True # if the light on, if it is on the value is True False # if the light off, if it is off the value is False ``` #### List Python list is an ordered collection which allows to store of different data type items. A list is similar to an array in JavaScript. **Example:** ```py ['Banana', 'Orange', 'Mango', 'Avocado'] # all the same data type in the list ['Banana', 10, False, 9.81] # different data types in the list ``` #### Dictionary A python dictionary object is an unordered collection of data in a key:value pair. **Example:** ```py {'name':'Asabeneh', 'country':'Finland', age:250, 'is_married':True} ``` #### Tuple A tuple is an ordered collection of different data types like list but tuples can not be modified once they are created. They are immutable. **Example** ```py ('Asabeneh', 'Brook', 'Abraham', 'Lidiya') ``` #### Set A set is a collection data types similar to list and tuple. Unlike list and tuple, set is not an ordered collection of items. Like in mathematics, set in python store only unique items. In later sections, we will go in detail in each and every python data types. **Example:** ```py {3.14, 9.81, 2.7} # order is not important in set ``` ### Checking Data types To check the data type of a certain data type we use the **type** function. In the following terminal you will see the different python data types: ![Checking Data types](./images/checking_data_types.png) ### Python File First open your project folder, 30DaysOfPython. If you don't have this folder,create a folder name called 30DaysOfPython. Inside this folder, create a file called helloworld.py. Now, let's do what we did on python interactive shell using visual studio code. The python interactive shell was printing without using **print** but on visual studio code to see our result we should use a built in function **print(some data to print)**. **Example:** helloworld.py ```py # Day 1 - 30DaysOfPython Challenge print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex number print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name':'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Set print(type((9.8, 3.14, 2.7))) # Tuple ``` ![Running python script](./images/running_python_script.png) 🌕 You are amazing. You have just completed day 1 challenge and you are in your way to greatness. Now do some exercises for your brain and for your muscle. ## 💻 Exercises - Day 1 1. Check the python version you are using 2. Open the python interactive shell and do the following operations. The operands are 3 and 4. Check the example above - addition(+) - subtraction(-) - multiplication(\*) - modulus(%) - division(/) - exponential(\*\*) - floor division operator(//) 3. Write strings on the python interactive shell. The strings are the following: - Your name - Your family name - Your country - I am enjoying 30 days of python 4. Check the data types of the following data: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Your name - Your family name - Your country 5. Create a folder name day_1 inside 30DaysOfPython folder. Inside day_1 folder, create a file python file helloword.py and repeat question 1, 2, 3 and 4. Remember to use _print()_ when you are working on a python file. Navigate to the directory where you saved your file, and run it. # 📘 Day 2 ## Built in functions In python we have lots of built in functions. Built-in functions are globally available for your use. Some of the most commonly used python built-in functions are the following: _print()_, _len()_, _type()_, _int()_, _float()_, _str()_, _input()_, _list()_, _dict()_, _min()_, _max()_, _sum()_, _sorted()_, _open()_, _file()_, _help()_, and _dir()_. In the following table you will see an exhaustive list of python built in functions taken from [python documentation](https://docs.python.org/2/library/functions.html). ![Built in Functions](images/builtin-functions.png) Let's open the python shell and start using some of the most common built in functions. ![Built in functions](images/builtin-functions_practice.png) Let's practice more by using different built-in functions ![Help and Dir Built in Functions](/images/help_and_dir_builtin.png) As you can see from the above terminal, python has reserved words. We do not use reserved words to declare variables or functions. We will cover variables in the next section. I believe, by now you are familiar with built-in functions. Let's do one more practice of built-in functions and we will move on to the next section ![Min Max Sum](images/builtin-functional-final.png) ## Variables Variables store data in a computer memory. Mnemonic variables are recommend to use in many programming languages. A variable refers to an a memory address in which a data is stored. Number at the beginning, special character, hyphen are not allowed. A variable can have a short name (like x,y,z) but a more descriptive name (firstname, lastname, age, country) is highly recommended . Python Variable Name Rules - A variable name must start with a letter or the underscore character - A variable name cannot start with a number - A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and \_ ) - Variable names are case-sensitive (firstname, Firstname, FirstName and FIRSTNAME are different variables) Valid variable names ```shell firstname lastname age country city first_name last_name capital_city _if # if we want to use reserved word as a variable year_2019 year2019 current_year_2019 num1 num2 ``` Invalid variables names ```shell first-name num-1 1num ``` We will use standard python variable naming style which has been adopted by many python developers. The example below is an example of standard naming of variables, underscore when the variable name is long. When we assign a certain data type to a variable is called variable declaration. For instance in the example below my first name is assigned to a variable first_name. The equal sign is an assignment operator. Assigning means storing data in the variable. _Example:_ ```py # Variables in Python first_name = 'Asabeneh' last_name = 'Yetayeh' country = 'Finland' city = 'Helsinki' age = 250 is_married = True skills = ['HTML', 'CSS', 'JS', 'React', 'Python'] person_info = { 'firstname':'Asabeneh', 'lastname':'Yetayeh', 'country':'Finland', 'city':'Helsinki' } ``` Let's use _print()_ and _len()_ built in functions. Print function will take multiple arguments. An argument is a value which we pass or put inside the function parenthesis, see the example below. **Example:** ```py print('Hello, World!') print('Hello',',', 'World','!') # it can take multiple arguments print(len('Hello, World!')) # it takes only one argument ``` Let's print and also find the length of the variables declared at the top: **Example:** ```py # Printing the values stored in the variables print('First name:', first_name) print('First name length:', len(first_name)) print('Last name: ', last_name) print('Last name length: ', len(last_name)) print('Country: ', country) print('City: ', city) print('Age: ', age) print('Married: ', is_married) print('Skills: ', skills) print('Person information: ', person_info) ``` Variable can also be declared in one line: **Example:** ```py first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True print(first_name, last_name, country, age, is_married) print('First name:', first_name) print('Last name: ', last_name) print('Country: ', country) print('Age: ', age) print('Married: ', is_married) ``` Getting user input using the _input()_ built-in function. Let's assign the data we get from a user into first_name and age variables. **Example:** ```py first_name = input('What is your name: ') age = input('How old are you? ') print(first_name) print(age) ``` ## Data Types There are several data types in python. To identify the data type we use the _type_ builtin function. I like you to focus understanding different data types very well. When it comes to programming it is all about data types. I introduced data types at the very beginning and it comes again, because every topic is related to data types. We will cover data types in more detail in their respective sections. ## Checking Data types and Casting - Check Data types: To check the data type of a certain data type we use the _type_ **Example:** ```py # Different python data types # Let's declare different data types first_name = 'Asabeneh' # str last_name = 'Yetayeh' # str country = 'Finland' # str city= 'Helsinki' # str age = 250 # int, it is not my real age, don't worry about it # Printing out types print(type('Asabeneh')) # str print(type(first_name)) # str print(type(10)) # int print(type(3.14)) # float print(type(1 + 1j)) # complex print(type(True)) # bool print(type([1, 2,3,4])) # list print(type({'name':'Asabeneh','age':250, 'is_married':250})) # dict print(type((1,2))) # tuple print(type(zip([1,2],[3,4]))) # set ``` - Casting: Converting one data type to another data type. We use _int()_, _float()_, _str()_, _list_ When we do arithmetic operations string numbers should be first converted to int or float if not it returns an error. If we concatenate a number with string, the number should be first converted to a string. We will talk about concatenation in String section. **Example:** ```py # int to float num_int = 10 print('num_int',num_int) # 10 num_float = float(num_int) print('num_float:', num_float) # 10.0 # float to int gravity = 9.81 print(int(gravity)) # 9 # int to str num_int = 10 print(num_int) # 10 num_str = str(num_int) print(num_str) # '10' # str to int num_str = '10.6' print('num_int', int(num_str)) # 10 print('num_float', float(num_str)) # 10.6 # str to list first = 'Asabeneh' print(first_name) print(first_name) # 'Asabeneh' first_name_to_list = list(first_name) print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h'] ``` ## Number Numbers are python data types. 1. Integers: Integer(negative, zero and positive) numbers Example: ... -3, -2, -1, 0, 1, 2, 3 ... 2. Floating Numbers(Decimal numbers) Example: ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... 3. Complex Numbers Example: 1 + j, 2 + 4j, 1 - 1j ## 💻 Exercises - Day 2 1. Inside 30DaysOfPython create a folder called day_2. Inside this folder create a file name called variables.py 2. Writ a python comment saying 'Day 2: 30 Days of python programming' 3. Declare a first name variable and assign a value to it 4. Declare a last name variable and assign a value to it 5. Declare a full name variable and assign a value to it 6. Declare a country variable and assign a value to it 7. Declare a city variable and assign a value to it 8. Declare an age variable and assign a value to it 9. Declare a year variable and assign a value to it 10. Declare a variable is_married and assign a value to it 11. Declare a variable is_true and assign a value to it 12. Declare a variable is_light_on and assign a value to it 13. Declare multiple variable on one line 14. Check the data type of all your variables using type() built in function 15. Using the _len()_ built-in function find the length of your first name 16. Compare the length of your first name and your last name 17. Declare 5 as num_one and 4 as num_two 1. Add num_one and num_two and assign the value to a variable _total_ 2. Subtract num_two from num_one and assign the value to a variable _diff_ 3. Multiply num_two and num_one and assign the value to a variable _product_ 4. Divide num_one by num_two and assign the value to a variable _division_ 5. Use modulus division to find num_two divided by num_one and assign the value to a variable _remainder_ 6. Calculate num_one the power of num_two and assign the value to a variable _exp_ 7. Find floor division of num_one by num_two and assign the value to a variable _floor_division_ 18. The radius of a circle is 30 meters. 1. Calculate the area of a circle and assign the value to a variable _area_of_circle_ 2. Calculate the circumference of a circle and assign the value to a variable _circum_of_circle_ 3. Take radius as user input and calculate the area. 19. Use the built-in input function to get first name, last name, country and age from a user and store the value to their corresponding variable names 20. Run help('keywords') on python shell or in your file check the reserved words # 📘 Day 3 ## Boolean A boolean data type represents one of the two values:_True_ or _False_. The use of these data types will be clear when you start the comparison operator. The first letter **T** for True and **F** for False should be capital unlike JavaScript. **Example: Boolean Values** ```py print(True) print(False) ``` ## Operators: Python language supports several types of operators. In this section, we will focus on few of them. ### Assignment Operators: Assignment operators are used to assign values to variables. Let's take = as an example. Equal sign in mathematics shows that two values are equal, however in python it means we are storing a value in a certain variable and we call it assignment or a assigning value to a variable. The table below shows the different types of python assignment operators, taken from [w3school](https://www.w3schools.com/python/python_operators.asp). ![Assignment Operators](images/assignment_operators.png) ### Arithmetic Operators: - Addition(+): a + b - Subtraction(-): a -b - Multiplication(_):a _ b - Division(/): a / b - Modulus(%):a % b - Floor division(//): a // b - Exponential(**):a ** b ![Arithmetic Operators](./images/arithmetic_operators.png) **Example:Integers** ```py # Arithmetic Operations in Python # Integers print('Addition: ', 1 + 2) print('Subtraction: ', 2 - 1) print('Multiplication: ', 2 * 3) print ('Division: ', 4 / 2) # Division in python gives floating number print('Division: ', 6 / 2) print('Division: ', 7 / 2) print('Division without the remainder: ', 7 // 2) # gives without the floating number or without the remaining print('Modulus: ', 3 % 2) # Gives the remainder print ('Division without the remainder: ',7 // 3) print('Exponential: ', 3 ** 2) # it means 3 * 3 ``` **Example:Floats** ```py # Floating numbers print('Floating Number,PI', 3.14) print('Floating Number, gravity', 9.81) ``` **Example:Complex numbers** ```py # Complex numbers print('Complex number: ', 1+1j) print('Multiplying complex number: ',(1+1j) * (1-1j)) ``` Let's declare a variable and assign a number data type. I am going to use single character variable but remember do not develop a habit of declaring such types of variable. Variable names should be all the time mnemonic. **Example:** ```python # Declaring the variable at the top first a = 3 # a is a variable name and 3 is an integer data type b = 2 # b is a variable name and 3 is an integer data type # Arithmetic operations and assigning the result to a variable total = a + b diff = a - b product = a * b division = a / b remainder = a % b floor_division = a // b exponential = a ** b # I should have used sum instead of total but sum is a built-in function try to avoid overriding builtin functions print(total) # if you don't label your print with some string, you never know from where is the result is coming print('a + b = ', total) print('a - b = ', diff) print('a * b = ', product) print('a / b = ', division) print('a % b = ', remainder) print('a // b = ', floor_division) print('a ** b = ', exponential) ``` **Example:** ```py print('== Addition, Subtraction, Multiplication, Division, Modulus ==') # Declaring values and organizing them together num_one = 3 num_two = 4 # Arithmetic operations total = num_one + num_two diff = num_two - num_one product = num_one * num_two div = num_two / num_two remainder = num_two % num_one # Printing values with label print('total: ', total) print('difference: ', diff) print('product: ', product) print('division: ', div) print('remainder: ', remainder) ``` Let's start start connecting the dots and start making use of what we knew to calculate(area, volume, weight, perimeter, distance, force) **Example:** ```py # Calculating area of a circle radius = 10 # radius of a circle area_of_circle = 3.14 * radius ** 2 # two * sign means exponent or power print('Area of a circle:', area_of_circle) # Calculating area of a rectangle length = 10 width = 20 area_of_rectangle = length * width print('Area of rectangle:', area_of_width) # Calculating a weight of an object mass = 75 gravity = 9.81 weight = mass * gravity print(weight, 'N') # Adding unit to the weight ``` ### Comparison Operators In programming we compare values, we use comparison operators to compare two values. We check if a value is greater or less or equal to other value. The following table shows python comparison operators which was taken from [w3shool](https://www.w3schools.com/python/python_operators.asp). ![Comparison Operators](./images/comparison_operators.png) **Example: Comparison Operators** ```py print(3 > 2) # True, because 3 is greater than 2 print(3 >= 2) # True, because 3 is greater than 2 print(3 < 2) # False, because 3 is greater than 2 print(2 < 3) # True, because 2 is less than 3 print(2 <= 3) # True, because 2 is less than 3 print(3 == 2) # False, because 3 is not equal to 2 print(3 != 2) # True, because 3 is not equal to 2 print(len('mango') == len('avocado')) # False print(len('mango') != len('avocado')) # True print(len('mango') < len('avocado')) # True print(len('milk') != len('meat')) # False print(len('milk') == len('meat')) # True print(len('tomato') == len('potato')) # True print(len('python') > len('dragon')) # False # Comparing something give either a True or False print('True == True: ', True == True) print('True == False: ', True == False) print('False == False:', False == False) print('True and True: ', True and True) print('True or False:', True or False) ``` In addition to the above comparison operator python uses: - _is_: Returns true if both variables are the same object(x is y) - _is not_: Returns true if both variables are not the same object(x is not y) - _in_: Returns True if a list with the a certain item(x in y) - _not in_: Returns True if a list doesn't have the a certain item(x in y) ```py print('1 is 1', 1 is 1) # True - because the data values are the same print('1 is not 2', 1 is not 2) # True - because 1 is not 2 print('A in Asabeneh', 'A' in 'Asabeneh') # True - A found in the string print('B in Asabeneh', 'B' in 'Asabeneh') # False -there is no uppercase B print('coding' in 'coding for all') # True - because coding for all has the word coding print('a in an:', 'a' in 'an') # True print('4 is 2 ** 2:', 4 is 2 **2) # True ``` ### Logical Operators Unlike other programming languages python uses the key word _and_, _or_ and _not_ for logical operator. Logical operators are used to combine conditional statements: ![Logical Operators](./images/logical_operators.png) ```py print(3 > 2 and 4 > 3) # True - because both statements are true print(3 > 2 and 4 < 3) # False - because the second statement is false print(3 < 2 and 4 < 3) # False - because both statements are false print(3 > 2 or 4 > 3) # True - because both statements are true print(3 > 2 or 4 < 3) # True - because one of the statement is true print(3 < 2 or 4 < 3) # False - because both statements are false print(not 3 > 2) # False - because 3 > 2 is true, then not True gives False print(not True) # False - Negation, the not operator turns true to false print(not False) # True print(not not True) # True print(not not False) # False ``` ## 💻 Exercises - Day 3 1. Declare your age as integer variable 2. Declare your height as a float variable 3. Declare a complex number variable 4. Write a script that prompt the user to enter base and height of the triangle and calculate an area of a triangle (area = 0.5 x b x h). ```py Enter base: 20 Enter height: 10 The area of the triangle is 50 ``` 5. Write a script that prompt the user to enter side a, side b, and side c of the triangle and and calculate the perimeter of triangle (perimeter = a + b + c) ```py Enter side a: 5 Enter side b: 4 Enter side c: 3 The perimeter of the triangle is 12 ``` 6. Get length and width using prompt and calculate an area of rectangle (area = length x width and the perimeter of rectangle (perimeter = 2 x (length + width)) 7. Get radius using prompt and calculate the area of a circle (area = pi x r x r) and circumference of a circle(c = 2 x pi x r) where pi = 3.14. 8. Calculate the slope, x-intercept and y-intercept of y = 2x -2 9. Slope is (m = y2-y1/x2-x1). Find the slope between point (2, 2) and point(6,10) 10. Compare the slope of q10 and 11 11. Calculate the value of y (y = x^2 + 6x + 9). Try to use different x values and figure out at what x value y is 0. 12. Find the length of python and jargon and make a falsy comparison statement. 13. Use _and_ operator to check if 'on' is found in both python and jargon 14. _I hope this course is not full of jargon_. Use _in_ operator to check if _jargon_ is in the sentence. 15. There is no 'on' in both dragon and python 16. Find the length of the text _python_ and convert the value to float and convert it to string 17. Even numbers are divisible by 2 and the remainder is zero. How do you check if a number is even or not using python? 18. The floor division of 7 by 3 is equal to the int converted value of 2.7. 19. Check if type of '10' is equal to 10 20. Check if int('9.8') is equal to 10 21. Writ a script that prompt a user to enters hours and rate per hour. Calculate pay of the person? ```py Enter hours: 40 Enter rate per hour: 28 Your weekly earning is 1120 ``` 22. Write a script that prompt the user to enter number of years. Calculate the number of seconds a person can live. Assume some one lives just hundred years ```py Enter number of yours you live: 100 You lived 3153600000 seconds. ``` 23. Write a python script that display the following table ```py 1 1 1 1 1 2 1 2 4 8 3 1 3 9 27 4 1 4 16 64 5 1 5 25 125 ``` [Part 2 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) ================================================ FILE: old_files/readme10-12.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 10](#%f0%9f%93%98-day-10) - [Loops](#loops) - [While Loop](#while-loop) - [Break and continue](#break-and-continue) - [For Loop](#for-loop) - [Break and Continue](#break-and-continue) - [The range function](#the-range-function) - [Nested for loop](#nested-for-loop) - [For Else](#for-else) - [Pass](#pass) - [💻 Exercises: Day 10](#%f0%9f%92%bb-exercises-day-10) - [📘 Day 11](#%f0%9f%93%98-day-11) - [Functions](#functions) - [Defining a Function](#defining-a-function) - [Declaring and calling a function](#declaring-and-calling-a-function) - [Function without parameters](#function-without-parameters) - [Function returning value](#function-returning-value) - [Function with parameters](#function-with-parameters) - [Passing arguments with key and value](#passing-arguments-with-key-and-value) - [Returning a value from a function](#returning-a-value-from-a-function) - [Function with default parameters](#function-with-default-parameters) - [Arbitrary number of arguments](#arbitrary-number-of-arguments) - [Default and arbitrary number of parameters in function](#default-and-arbitrary-number-of-parameters-in-function) - [Function as parameter of other function](#function-as-parameter-of-other-function) - [💻 Exercises: Day 11](#%f0%9f%92%bb-exercises-day-11) - [📘 Day 12](#%f0%9f%93%98-day-12) - [Module](#module) - [What is a module](#what-is-a-module) - [Creating a module](#creating-a-module) - [Importing a module](#importing-a-module) - [Import functions from a module](#import-functions-from-a-module) - [Import functions from a module and renaming](#import-functions-from-a-module-and-renaming) - [Import Builtin Modules](#import-builtin-modules) - [OS Module](#os-module) - [Sys Module](#sys-module) - [Statistics Module](#statistics-module) - [Math Module](#math-module) - [Random Module](#random-module) - [💻 Exercises: Day 12](#%f0%9f%92%bb-exercises-day-12) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 10 ## Loops Life is full of routines. In programming also we do lots of repetitive tasks. In order to handle repetitive task programming languages provide loops. Python programming language also provides the following types of two loops to handle looping. 1. while loop 2. for loop ### While Loop We use the reserved word *while* to make a while loop. While loop is used to execute a block of statements repeatedly until a given condition is satisfied. When the condition becomes false, the line immediately after the loop will be executed. ```py # syntax while condition: code goes here ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 ``` In the above while loop, the condition become false when count is 5, then the loop stops. If we are interested to run block of code once the condition is no longer true, we can use *else*. ```py # syntax while condition: code goes here else: code goes here ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 else: print(count) ``` The above loop condition will be false when count is 5 and the loop stops, and execution starts the else statement and 5 prints in the else statement. ### Break and continue * Break: We use break when we like to get out or stop the loop. ```py # syntax while condition: code goes here if another_condition: break ``` **Example:** ```py count = 0 while count < 5: print(count) count = count + 1 if count == 3: break ``` The above while loop only prints 0, 1, 2, but when it reaches 3 it stops. * Continue: With the continue statement we can stop the current iteration, and continue with the next: ```py # syntax while condition: code goes here if another_condition: continue ``` **Example:** ```py count = 0 while count < 5: if count == 3: continue print(count) count = count + 1 ``` The above while loop only prints 0, 1, 2,4 but skips 3. ### For Loop A *for* key word used to make a for loop like in other programming language but with some syntax difference. Loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). * For loop with list ```py # syntax for iterator in lst: code goes here ``` **Example:** ```py numbers = [0, 1, 2, 3, 4, 5] for number in numbers: print(number) ``` * For loop with string ```py # syntax for iterator in string: code goes here ``` **Example:** ```py language = 'Python' for letter in language: print(letter) ``` * For loop with tuple ```py # syntax for iterator in tpl: code goes here ``` **Example:** ```py numbers = (0, 1,2,3,4,5) for number in numbers: print(number) ``` * For loop with dictionary Looping through a dictionary gives you the key of the dictionary. ```py # syntax for iterator in dct: code goes here ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } for key in person: print(key) for key, value in person.items(): print(key, value) # ``` * Loops in set ```py # syntax for iterator in st: code goes here ``` **Example:** ```py it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} for company in it_companies: print(company) ``` ### Break and Continue *Break*: We use break when we like to stop our loop before the loop is completed. ```py # syntax for iterator in sequence: code goes here if condition: break ``` **Example:** ```py numbers = (0, 1,2,3,4,5) for number in numbers: print(number) if number == 3: break ``` In the above example, the loop stops when it reaches 3. Continue: We use continue when we like to skip some of the step in the iteration of the loop. ```py # syntax for iterator in sequence: code goes here if condition: continue ``` **Example:** ```py numbers = (0, 1,2,3,4,5) for number in numbers: print(number) if number == 3: continue ``` In the above example, if number is 3 the skip step and continues to the next. ### The range function The range() function uses to loop through a set of code a certain number of times. The *range(start,end, step)* takes three parameters:starting, ending and increment.By default it starts from 0 and the increment is 1. The range sequence doesn't include the end. Creating sequence using range ```py lst = list(rang(11)) print(lst) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] st = set(range(11)) print(st) # {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} lst = list(rang(0,11,2)) print(lst) # [0, 2, 4, 6, 8, 10] st = set(range(0,11,2)) print(st) # {0, 2, 4, 6, 8, 10} ``` ```py # syntax for iterator in range(start, end, increment): ``` **Example:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 fruits = ['banana', 'orange', 'mango', 'lemon'] for fruit in fruits: print(fruit) ``` ### Nested for loop We can write loop inside another loop. ```py # syntax for x in y: for t in s: print(t) ``` **Example:** ```py person = { 'first_name': 'Asabeneh', 'last_name': 'Yetayeh', 'age': 250, 'country': 'Finland', 'is_marred': True, 'skills': ['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address': { 'street': 'Space street', 'zipcode': '02210' } } for key in person: if key == 'skills': for skill in person['skills']: print(skill) ``` ### For Else If we want to execute some message when the loop ends, we use else. ```py # syntax for iterator in range(start, end, increment): do something else: print('The loop is ended') ``` **Example:** ```py for number in range(11): print(number) # prints 0 to 10, not including 11 else: print('The loop stops at', number) ``` ### Pass In python after semicolon, it requires some code to run but we don't like to execute any code after if or for loop we can write the word *pass* to avoid error. ## 💻 Exercises: Day 10 1. Iterate 0 to 10 using for loop, do the same using while and do while loop. 2. Iterate 10 to 0 using for loop, do the same using while and do while loop. 3. Write a loop that makes seven calls to print() output the following triangle: ```py # ## ### #### ##### ###### ####### ``` 4. Use nested loops to create the following: ```sh # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ``` 5. Print the following pattern: ```sh 0 x 0 = 0 1 x 1 = 1 2 x 2 = 4 3 x 3 = 9 4 x 4 = 16 5 x 5 = 25 6 x 6 = 36 7 x 7 = 49 8 x 8 = 64 9 x 9 = 81 10 x 10 = 100 ``` 6. Iterate through the list, ['Python', 'Numpy','Pandas','Django', 'Flask'] using a for loop and print out the items. 7. Use for loop to iterate from 0 to 100 and print only even numbers 8. Use for loop to iterate from 0 to 100 and print only odd numbers 9. Use for loop to iterate from 0 to 100 and print the sum of all numbers. ```sh The sum of all numbers is 5050. ``` 10. Use for loop to iterate from 0 to 100 and print the sum of all evens and the sum of all odds. ```sh The sum of all evens is 2550. And the sum of all odds is 2500. ``` 11. Go to the data folder and use the countries.py file. Loop through the countries and extract all the countries containing the word *land*. 12. This is a fruit list, ['banana', 'orange', 'mango', 'lemon'] reverse the order using loop. # 📘 Day 11 ## Functions So far we have seen many builtin python functions. In this section, we will focus on custom functions. What is a function? Before we start making functions, lets understand what function is and why we need function? ### Defining a Function A function is a reusable block of code or programming statements designed to perform a certain task. To define a function, Python provides the *def* keyword. The following is the syntax of defining a function. The function block of code only executed only if we call the function. ### Declaring and calling a function When we make a function we call it declaring a function. When we start using the function we call it calling or invoking a function. Function can be declared with or without a parameter. ```py # syntax # Declaring a function def function_name(): codes codes # Calling function function_name() ``` ### Function without parameters Function can be declared without a parameter. **Example:** ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) generate_full_name () # calling a function def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two print(total) add_two_numbers() ``` ### Function returning value Function can also return values, if a function does not return values the value of the function is None. Lets rewrite the above functions using return. From now on, we return value to a function instead of printing it. ```py def generate_full_name (): first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) def add_two_numbers (): num_one = 2 num_two = 3 total = num_one + num_two return total print(add_two_numbers()) ``` ### Function with parameters In a function we can pass different data types(number, string, boolean, list, tuple, dictionary or set) as a parameter * Single Parameter: If our function takes a parameter we should call our function with an argument ```py # syntax # Declaring a function def function_name(parameter): codes codes # Calling function function_name(parameter) ```` **Example:** ```py def greetings (name): message = name + ', welcome to Python for Everyone!' return message print(greetings('Asabeneh')) def add_ten(num): ten = 10 return num + ten print(add_ten(90)) def square_number(x): return x * x print(square_number(2)) def area_of_circle (r): PI = 3.14 area = PI * r ** 2 return area print(area_of_circle(10)) def sum_of_numbers(n): total = 0 for i in range(n+1): total+=i print(total) sum_of_numbers(10) # 55 sum_of_numbers(100) # 5050 ``` * Two Parameter: A function may or may not have a parameter or parameters. A function may have two or more parameters. If our function takes parameters we should call our function with arguments. Let's see function with two parameters: ```py # syntax # Declaring a function def function_name(para1, para2): codes codes # Calling function function_name(arg1, arg2) ```` **Example:** ```py def generate_full_name (first_name, last_name): space = ' ' full_name = first_name + space + last_name return full_name print('Full Name: ', generate_full_name('Asabeneh','Yetayeh')) def sum_two_numbers (num_one, num_two): sum = num_one + num_two return sum print('Sum of two numbers: ', sum_two_numbers(1, 9)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2019, 1819)) def weight_of_object (mass, gravity): weight = str(mass * gravity)+ ' N' # the value has to be changed to string first return weight print('Weight of an object in Newton: ', weight_of_object(100, 9.81)) ``` ### Passing arguments with key and value If we pass the arguments with key and value, the order of the arguments does not matter. ```py # syntax # Declaring a function def function_name(para1, para2): codes codes # Calling function function_name(para1='John', para2='Doe') # the order of argument now does not matter ```` **Example:** ```py def print_fullname(firstname, lastname): space = ' ' full_name = firstname + space + lastname print(full_name) print_fullname(firstname='Asabeneh', lastname='Yetayeh') def add_two_numbers (num1, num2): total = num1 + num2 print(total) add_two_numbers(num2=3, num1=2) # Order does not matter ``` ### Returning a value from a function If we do not return a value from a function, then our function is returning *None* by default. To return a value from a function we use the key word *return* followed by the data type we are returning. We can return any kind of data types from a function. * Returning string: **Example:** ```py def print_name(firstname): return firstname print_name('Asabeneh') # Asabeneh def print_full_name(firstname, lastname): space = ' ' full_name = firstname + space + lastname return full_name print_full_name(firstname='Asabeneh', lastname='Yetayeh') ``` * Returning Number: **Example:** ```py def add_two_numbers (num1, num2): total = num1 + num2 return total print(add_two_numbers(2, 3)) def calculate_age (current_year, birth_year): age = current_year - birth_year return age; print('Age: ', calculate_age(2019, 1819)) ``` * Returning Boolean: **Example:** ```py def is_even (n): if n % 2 == 0: print('even') return True return False print(is_even(10)) # True print(is_even(7)) # False ``` * Returning List: **Example:** ```py def find_even_numbers(n): evens = [] for i in range(n+1): if i % 2 == 0: evens.append(i) return evens print(find_even_numbers(10)) ``` ### Function with default parameters Sometimes we pass default values to parameters, when we invoke the function if we do not pass an argument the default value will be used. ```py # syntax # Declaring a function def function_name(param = value): codes codes # Calling function function_name() function_name(arg) ```` **Example:** ```py def greetings (name = 'Peter'): message = name + ', welcome to Python for Everyone!' return message print(greetings()) print(greetings('Asabeneh')) def generate_full_name (first_name = 'Asabeneh', last_name = 'Yetayeh'): space = ' ' full_name = first_name + space + last_name return full_name print(generate_full_name()) print(generate_full_name('David','Smith')) def calculate_age (birth_year,current_year = 2019): age = current_year - birth_year return age; print('Age: ', calculate_age(1819)) def weight_of_object (mass, gravity = 9.81): weight = str(mass * gravity)+ ' N' # the value has to be changed to string first return weight print('Weight of an object in Newton: ', weight_of_object(100)) # 9.81 gravity at the surface of Earth print('Weight of an object in Newton: ', weight_of_object(100, 1.62)) # gravity at surface of Moon ``` ### Arbitrary number of arguments If we do not know the number of arguments we pass to our function we can create a function which can take arbitrary number of arguments by add * before the parameter name. ```py # syntax # Declaring a function def function_name(*args): codes codes # Calling function function_name(param1, param2, param3,..) ``` **Example:** ```py def sum_all_nums(*nums): total = 0 for num in nums: total += num return total print(sum_all_nums(2, 3, 5)) ``` ### Default and arbitrary number of parameters in function ```py def generate_groups (team,*args): print(team) for i in args: print(i) generate_groups('Team-1','Asabeneh','Brook','David','Eyob') ``` ### Function as parameter of other function ```py #You can pass functions around as parameters def square_number (n): return n * n def do_something(f, x): return f(x) print(do_something(square_number, 3)) ``` ## 💻 Exercises: Day 11 1. Declare a function *add_two_numbers* and it takes two two parameters and it returns sum. 2. Area of a circle is calculated as follows: area = π x r x r. Write a function which calculates *area_of_circle*. 3. Write a function called add_all_nums which take arbitrary number of arguments and sum all the arguments. Check if all the list items are number types. If not give return reasonable feedback. 4. Temperature in oC can be converted to oF using this formula: oF = (oC x 9/5) + 32. Write a function which converts oC to oF, *convert_celcius_to-fahrenheit*. 5. Write a function called check-season, it takes a month parameter and returns the season:Autumn, Winter, Spring or Summer. 6. Write a function called calculate_slope which return the slop of a linear equation 7. Quadratic equation is calculated as follows: ax2 + bx + c = 0. Write a function which calculates solution set of a quadratic equation, *solve_quadratic_eqn*. 8. Declare a function name print_list. It takes list as a parameter and it prints out each element of the list. 9. Declare a function name reverse_list. It takes array as a parameter and it returns the reverse of the array (dont’ use method). ```py print(reverse_list([1, 2, 3, 4, 5])) # [5, 4, 3, 2, 1] print(reverse_list1.(["A", "B", "C"])) # ["C", "B", "A"] ``` 10. Declare a function name capitalize_list_items. It takes list as a parameter and it returns the capitalized list of the items 11. * Declare a function name add_item. It takes a list and an item parameter and it returns a list after adding the item ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print( add_item(food_staff, 'Meat')) # ['Potato', 'Tomato', 'Mango', 'Milk','Meat']; numbers = [2, 3,7,9]; print(add_item(numbers, 5)) [2, 3,7,9,5] ``` * Declare a function name remove_item. It takes a list and an item parameter and it returns a list after removing an item. ```py food_staff = ['Potato', 'Tomato', 'Mango', 'Milk']; print(remove_item(food_staff, 'Mango')) # ['Potato', 'Tomato', 'Milk']; numbers = [2, 3,7, 9]; print(remove_item(numbers, 3)) # [2, 7, 9] ``` 1. Declare a function name sum_of_numbers. It takes a number parameter and it adds all the numbers in that range. ```py print(sum_of_numbers(5)) # 15 print(sum_all_numbers(10)) # 55 print(sum_all_numbers(100)) # 5050 ``` 2. Declare a function name sum_of_odds. It takes a number parameter and it adds all the odd numbers in that range. 3. Declare a function name sum_of_even. It takes a number parameter and it adds all the even numbers in that - range. Declare a function name evens_and_odds . It takes a positive integer as parameter and it counts number of evens and odds in the number. ```py print(evens_and_odds(100)) # The number of odds are 50. # The number of evens are 51. ``` 15. Call your function factorial, it takes a whole number as a parameter and it return a factorial of the number Call your function *is_empty*, it takes a parameter and it checks if it is empty or not 16. Write different functions which take lists and it calculate_mean, calculate_median, calculate_mode, calculate_range, calculate_variance, calculate_std. 17. Write a function called is_prime, which checks if a number is prime number. 18. Write a functions which checks if all items are unique in the list. 19. Write a function which checks if all the items of the list are the same data type. 20. Write a function which check if variable if valid python variable 21. Go the data folder and access the countries-data.py file. * Create a function called the most_spoken_languages the world and it returns the 10 or 20 most spoken countries in the world in descending order * Create a function called the most_populated_countries and it return 10 or 20 most populated countries in descending order. # 📘 Day 12 ## Module ### What is a module A module is a file containing set of codes or a set of function which can be included to an application. A module could be a file containing a single variable, or function, a big code base. ### Creating a module To create a module we write our codes in a python script and we save it as .py file. Create a file named mymodule.py inside your project folder. Let write code on this file. ```py # mymodule.py file def generate_full_name(firstname, lastname): space = ' ' fullname = firstname + space + lastname return fullname ``` Create main.py file in your project directory and import the mymodule.py file. ### Importing a module To import the file we use the *import* keyword and the name of the file only. ```py # main.py file import mymodule print(mymodule.generate_full_name('Asabeneh', 'Yetayeh')) ``` ### Import functions from a module We can have many functions in a file and we can import all the functions differently. ```py # main.py file from mymodule import generate_full_name, sum_two_nums, person, gravity print(generate_full_name('Asabneh','Yetay')) print(sum_two_nums(1,9)) mass = 100; weight = mass * gravity print(weight) print(person['firstname']) ``` ### Import functions from a module and renaming During importing we can rename the name of the module. ```py # main.py file from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g print(fullname('Asabneh','Yetayeh')) print(total(1,9)) mass = 100; weight = mass * g print(weight) print(p) print(p['firstname']) ``` ## Import Builtin Modules Like other programming languages we can also import modules by importing the file/function using the key word *import*. Lets import the common module we will use most of the time. Some of the common builtin modules *math*, *datetime*, *os*,*sys*, *random*, *statistics*, *collections*, *json*,*re* ### OS Module Using python *os* module it is possible to automatically perform many operating system tasks.The OS module in Python provides functions for creating, changing current working directory, and removing a directory (folder), fetching its contents, changing and identifying the current directory. ```py # import the module import os # Creating a directory os.mkdir('directory_name') # Changing the current directory os.chdir('path') # Getting current working directory os.getcwd() # Removing directory os.rmdir() ``` ### Sys Module The sys module provides functions and variables used to manipulate different parts of the Python runtime environment. sys.argv returns a list of command line arguments passed to a Python script. The item at index 0 in this list is always the name of the script, at index 1 is argument passed from the command line. ```py import sys print(sys.argv[0], argv[1],sys.argv[2]) print('Welcome {}. Enjoy {} challenge!'.format(sys.argv[1], sys.argv[2])) output Welcome Asabeneh. Enjoy 30DayOfPython challenge! # to exist syst sys.exit() # To know the largest integer variable it takes sys.maxsize # To know environment path syst.path # To know the version of python you are using sys.version ``` ### Statistics Module The statistics module provides functions to mathematical statistics of numeric data. The popular statistical functions which are defined in this module *mean*, *median*, *mode*, *stdev* etc. ```py from statistics import * # importing all the statistics module print(mean(ages)) # 22.4 print(median(ages)) # 23 print(mode(ages)) # 20 print(stdev(ages)) # 2.3 ``` ### Math Module ```py import math print(math.pi) # 3.141592653589793, pi constant print(math.sqrt(2)) # 1.4142135623730951, square root print(math.pow(2, 3)) # 8.0, exponential print(math.floor(9.81)) # 9, rounding to the lowest print(math.ceil(9.81)) # 10, rounding to the highest print(math.log10(100)) # 2 ``` Now, we have imported the math module which contains lots of function which can help us to perform mathematical calculations.To check what functions the module has, you can use *help(math)*, or dir(math) and this will display the available functions in the module. If we want to import only a specific function from a module we import as follow: ```py from math import pi print(pi) ``` It is also possible to import multiple functions at once ```py from math import pi, sqrt, pow, floor, ceil,log10 print(pi) # 3.141592653589793 print(sqrt(2)) # 1.4142135623730951 print(pow(2, 3)) # 8.0 print(floor(9.81)) # 9 print(ceil(9.81)) # 10 print(math.log10(100)) # 2 ``` But if we want to import all the function in math module we can use * . ```py from math import * print(pi) # 3.141592653589793, pi constant print(sqrt(2)) # 1.4142135623730951, square root print(pow(2, 3)) # 8.0, exponential print(floor(9.81)) # 9, rounding to the lowest print(ceil(9.81)) # 10, rounding to the highest print(math.log10(100)) # 2 ``` When we import we can also rename the name of the function. ```py from math import pi as PI print(PI) # 3.141592653589793 ``` ### Random Module By now you are familiar with importing modules. Lets do another more import to be very familiar with importing. Let's import *random* module which can gives random number between 0 and 0.9999.... The *random* module has lots of functions but in this section we will only see *random* and *randint*. ```py from random import random, randint print(random()) # it doesn't take argument and return 0 to 0.9999 print(randint(5, 20)) # it returns a random number between 5 and 20 ``` ## 💻 Exercises: Day 12 1. Writ a function which generates a six digit random_user_id. ```py print(random_user_id()); '1ee33d' ``` 2. Modify question number above . Declare a function name user_id_gen_by_user. It doesn’t take any parameter but it takes two inputs using input(). One of the input is the number of characters and the second input is the number of ids which are supposed to be generated. ```py user_id_gen_by_user() "kcsy2 SMFYb bWmeq ZXOYh 2Rgxf " user_id_gen_by_user() "1GCSgPLMaBAVQZ26 YD7eFwNQKNs7qXaT ycArC5yrRupyG00S UbGxOFI7UXSWAyKN dIV0SSUTgAdKwStr " ``` 3. Write a function name rgb_color_gen and it generates rgb colors. ```py print(rgb_color_gen()) # rgb(125,244,255) ``` 4. Write a function list_of_hexa_colors which return any number of hexadecimal colors in an array. 5. Write a function list_of_rgb_colors which return any number of RGB colors in an array. Write a function generate_colors which can generate any number of hexa or rgb colors. ```py generate_colors('hexa', 3) # ['#a3e12f','#03ed55','#eb3d2b'] generate_colors('hexa', 1) # '#b334ef' generate_colors('rgb', 3) # ['rgb(5, 55, 175','rgb(50, 105, 100','rgb(15, 26, 80'] generate_colors('rgb', 1) # 'rgb(33,79, 176)' ``` 1. Call your function shuffle_list, it takes a list as a parameter and it returns a shuffled list 1. Write a function which returns array of seven random numbers in a range of 0-9. All the numbers must be unique. [<< Part 3 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) | [Part 5 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) *** ================================================ FILE: old_files/readme13-15.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 13](#%f0%9f%93%98-day-13) - [List Comprehension](#list-comprehension) - [Lambda Function](#lambda-function) - [Creating a lambda function](#creating-a-lambda-function) - [Lambda function inside other function](#lambda-function-inside-other-function) - [💻 Exercises: Day 13](#%f0%9f%92%bb-exercises-day-13) - [📘 Day 14](#%f0%9f%93%98-day-14) - [Higher Order Functions](#higher-order-functions) - [Function as a parameter](#function-as-a-parameter) - [Function as a return value](#function-as-a-return-value) - [Python closures](#python-closures) - [Python decorators](#python-decorators) - [Creating Decorators](#creating-decorators) - [Applying Multiple Decorators to a Single Function](#applying-multiple-decorators-to-a-single-function) - [Accepting parameters in Decorator Functions](#accepting-parameters-in-decorator-functions) - [Built-in Higher Order Functions](#built-in-higher-order-functions) - [Python - Map Function](#python---map-function) - [Python - Filter Function](#python---filter-function) - [Python - Reduce Function](#python---reduce-function) - [💻 Exercises: Day 14](#%f0%9f%92%bb-exercises-day-14) - [📘 Day 15](#%f0%9f%93%98-day-15) - [Python Error Types](#python-error-types) - [SyntaxError](#syntaxerror) - [NameError](#nameerror) - [IndexError](#indexerror) - [ModuleNotFoundError](#modulenotfounderror) - [AttributeError](#attributeerror) - [KeyError](#keyerror) - [TypeError](#typeerror) - [ImportError](#importerror) - [ValueError](#valueerror) - [ZeroDivisionError](#zerodivisionerror) - [💻 Exercises: Day 15](#%f0%9f%92%bb-exercises-day-15) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 13 ## List Comprehension List comprehension in Python is a compact way of creating a list from a sequence. It is a short way to create a new list. List comprehension is considerably faster than processing a list using the for loop. ```py # syntax [i for i in iterable if expression] ``` **Example:1** For instance if you want to change a string to a list of characters. You can use a couple methods. Let's see some of them ```py # One way language = 'Python' lst = list(language) # changing the string to list print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] # Second way: list comprehension lst = [i for i in language] print(type(lst)) # list print(lst) # ['P', 'y', 't', 'h', 'o', 'n'] ``` **Example:2** For instance if you want to generate a list of numbers ```py # Generating numbers numbers = [i for i in range(11)] # to generate number from 0 to 10 print(numbers) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # It is possible to do mathematical operation during iteration squares = [i * i for i in range(11)] print(squares) # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100] # It is possible to do mathematical operation during iteration numbers = [(i, i * i) for i in range(11)] print(numbers) # [(0, 0), (1, 1), (2, 4), (3, 9), (4, 16), (5, 25)] ``` **Example:2** List compression can be combined with if expression ```py # Generating even numbers even_numbers = [i for i in range(21) if i % 2 == 0] # to generate even number between 0 to 21 print(even_numbers) # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # Generating odd numbers odd_numbers = [i for i in range(21) if i % 2 != 0] # to generate odd number between 0 to 21 print(odd_numbers) # [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] # Filter numbers: let's filter positive and even numbers from the list below numbers = [-8, -7, -3, -1, 0, 1, 3, 4, 5, 7, 6, 8, 10] positive_event_numbers = [i for i in range(21) if i % 2 == 0 and i > )] print(positive_event_numbers) # [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] # Flattening two dimensional array two_dimen_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] flattened_list = [ number for row in two_dimen_list for number in row] print(flattened_list) # [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ## Lambda Function Lambda function is a small anonymous function without name.A lambda function can take any number of arguments, but can only have one expression. Lambda function is similar to anonymous function in JavaScript. We need lambda function when we want to write an anonymous function inside another function. ### Creating a lambda function To create a lambda function we use _lambda_ keyword followed by parameter, followed by expression. See the syntax and the example below. Lambda function do not use return but it explicitly return the expression. ```py # syntax x = lambda param1, param2, param3: param1 + param2 + param2 print(x(arg1, arg2, arg3)) ``` **Example:** ```py # Named function def add_two_nums(a, b): return a + b print(2, 3) # 3 # Lets change the above function to lambda function add_two_nums = lambda a, b: a + b print(add_two_nums(2,3)) # 5 # Self invoking lambda function (lambda a, b: a + b)(2,3) # 5 square = lambda x : x ** 2 print(square(3)) # 9 cube = lambda x : x ** 3 print(cube(3)) # 27 # Multiple variables multiple_variable = lambda a, b, c: a ** 2 - 3 * b + 4 * c print(multiple_variable(5, 5, 3)) ``` ### Lambda function inside other function Using lambda function inside another function. ```py def power(x): return lambda n : x ** n cube = power(2)(3) # 8 two_power_of_five = power(2)(5) # 32 ``` ## 💻 Exercises: Day 13 1. Filter only negative or zero in the list using list comprehension ```py numbers = [-4, -3, -2, -1, 0, 2, 4, 6] ``` 1. Flatten the following list of lists of lists to a one dimensional list : ```py list_of_lists =[[[1, 2, 3]], [[4, 5, 6]], [[7, 8, 9]]] output [1, 2, 3, 4, 5, 6, 7, 8, 9] ``` 1. Using list comprehension create the following list of tuples: ```py [(0, 1, 0, 0, 0, 0, 0), (1, 1, 1, 1, 1, 1, 1), (2, 1, 2, 4, 8, 16, 32), (3, 1, 3, 9, 27, 81, 243), (4, 1, 4, 16, 64, 256, 1024), (5, 1, 5, 25, 125, 625, 3125), (6, 1, 6, 36, 216, 1296, 7776), (7, 1, 7, 49, 343, 2401, 16807), (8, 1, 8, 64, 512, 4096, 32768), (9, 1, 9, 81, 729, 6561, 59049), (10, 1, 10, 100, 1000, 10000, 100000)] ``` 1. Change the following list to a flatten list: ```py countries = [[('Finland', 'Helsinki')], [('Sweden', 'Stockholm')], [('Norway', 'Oslo')]] output: ['FINLAND', 'HELSINKI', 'SWEDEN', 'STOCKHOLM', 'NORWAY', 'OSLO'] ``` 1. Change the following list to a list of dictionaries: ```py countries = [[('Finland', 'Helsinki')], [('Sweden', 'Stockholm')], [('Norway', 'Oslo')]] output: [{'country': 'FINLAND', 'city': 'HELSINKI'}, {'country': 'SWEDEN', 'city': 'STOCKHOLM'}, {'country': 'NORWAY', 'city': 'OSLO'}] ``` 1. Change the following list of lists to flat list: ```py names = [[('Asabeneh', 'Yetaeyeh')], [('David', 'Smith')], [('Donald', 'Trump')], [('Bill', 'Gates')]] output ['Asabeneh Yetaeyeh', 'David Smith', 'Donald Trump', 'Bill Gates'] ``` 1. Write a lambda function which can solve slope or y-intercept. # 📘 Day 14 ## Higher Order Functions In python functions are treated as first class citizens, allowing you to perform the following operations on functions: - A function can take one or more functions as parameters - A function can be returned as a result of another function - A function can be modified - A function can be assigned to a variable In this section, we will cover: 1. Handling functions as parameters 2. Returning functions as return value from other functions 3. Using python closures and decorators ### Function as a parameter ```py def sum_numbers(nums): # normal function return sum(nums) def higher_order_function(f, *args): # function as a parameter summation = f(*args) return summation result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5]) print(result) # 15 ``` ### Function as a return value ```py def square(x): # a square function return x ** 2 def cube(x): # a cube function return x ** 3 def absolute(x): # an absolute value function if x == 0: return x elif x < 1: return -(x) else: return x def higher_order_function(type): # a higher order function returning function if type == 'square': return square elif type == 'cube': return cube elif type == 'absolute': return absolute result = higher_order_function('square') print(result(3)) # 9 result = higher_order_function('cube') print(result(3)) # 27 result = higher_order_function('absolute') print(result(-3)) # 3 ``` You can see from the above example that the higher order function is returning different functions depending on the passed parameter ## Python closures Python allows a nested function to access the outer scope of the enclosing function. This is is known as a Closure. Let’s have a look at how closures works in Python. In Python, closure is created by nesting a function inside another encapsulating function and then returning the inner function. See the example below. **Example:** ```py def add_ten(): ten = 10 def add(num): return num + ten return add closure_result = add_ten() print(closure_result(5)) # 15 print(closure_result(10)) # 20 ``` ## Python decorators A decorator is a design pattern in Python that allows a user to add new functionality to an existing object without modifying its structure. Decorators are usually called before the definition of a function you want to decorate. ### Creating Decorators To create a decorator function, we need an outer function, inner wrapper function. **Example:** ```py # Normal function def greeting(): return 'Welcome to Python' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper g = uppercase_decorator(greeting) print(g()) # WELCOME TO PYTHON ## Lets implement the above to a decorator '''This decorator function is a higher order which is take function as a parameter''' def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper @uppercase_decorator def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### Applying Multiple Decorators to a Single Function ```py '''These decorator functions are higher order functions which take function as parameters''' # First Decorator def uppercase_decorator(function): def wrapper(): func = function() make_uppercase = func.upper() return make_uppercase return wrapper # Second decorator def split_string_decorator(function): def wrapper(): func = function() splitted_string = func.split() return splitted_string return wrapper @uppercase_decorator @split_string_decorator def greeting(): return 'Welcome to Python' print(greeting()) # WELCOME TO PYTHON ``` ### Accepting parameters in Decorator Functions Most of the time we need our functions to take parameters, so we might need to define a decorator that accepts parameters. ```py def decorator_with_parameters(function): def wrapper_accepting_parameters(para1, para2, para3): function(para1, para2, para3) print("I live in {}".format(para3)) return wrapper_accepting_parameters @decorator_with_parameters def print_full_name(first_name, last_name, country): print("I am {} {}. I love teaching".format( first_name, last_name, country)) print_full_name("Asabeneh", "Yetayeh",'Finland') ``` ## Built-in Higher Order Functions Some of the builtin higher order function which we cover in the part are _map()_, _filter_, and _reduce_. Lambda function can be passed a parameter and the best use case of lambda function is in function like map, filter and reduce. ### Python - Map Function The map() function is a built-in function which takes a function and iterable as parameter. ```py # syntax map(function, iterable) ``` **Example:1** ```py numbers = [1, 2, 3, 4, 5] # iterable def square(x): return x ** 2 numbers_squared = map(square, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] # Lets apply it with a lambda function numbers_squared = map(lambda x : x ** 2, numbers) print(list(numbers_squared)) # [1, 4, 9, 16, 25] ``` **Example:2** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable numbers_int = map(int, numbers_str) print(list(numbers_int)) # [1, 2, 3, 4, 5] ``` **Example:3** ```py names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def change_to_upper(name): return name.upper() names_upper_cased = map(change_to_upper, names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] # Lets apply it with a lambda function names_upper_cased = map(lambda name: name.upper(), names) print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM'] ``` What actually map do is mapping a list. For instance it changes the names to upper case and return a new list. ### Python - Filter Function The filter() function calls the specified function which returns boolean for each item of the specified iterable (list). It filters the items which the satisfied with the filtering criteria. ```py # syntax filter(function, iterable) ``` **Example:1** ```py # Lets filter only even nubers numbers = [1, 2, 3, 4, 5] # iterable def is_even(num): if num % 2 == 0: return True return False even_numbers = filter(is_even, numbers) print(list(even_numbers)) # [2, 4] ``` **Example:2** ```py numbers = [1, 2, 3, 4, 5] # iterable def is_odd(num): if num % 2 != 0: return True return False odd_numbers = filter(is_odd, numbers) print(list(odd_numbers)) # [1, 3, 5] ``` ```py # Filter long name names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] # iterable def is_name_long(name): if len(name) > 7: return True return False long_names = filter(is_name_long, names) print(list(long_names)) # ['Asabeneh'] ``` ### Python - Reduce Function The _reduce()_ function is defined in the functools module and we should import it from this module.Like map and filter it takes two parameters, a function and an iterable. However, it doesn't return another iterable, instead it returns a single value. **Example:2** ```py numbers_str = ['1', '2', '3', '4', '5'] # iterable def add(x, y): return int(x) + int(y) total = reduce(add_two, numbers_str) print(total) # 15 ``` ## 💻 Exercises: Day 14 ```py countries = ['Estonia', 'Finland', 'Sweden', 'Denmark', 'Norway', 'Iceland'] names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham'] numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ``` 1. Explain the difference between map, filter, and reduce. 1. Explain the difference between higher order function, closure and decorator 1. Define a call function before map, filter or reduce, see examples. 1. Use for loop to print each country in the countries list. 1. Use for to print each name in the names list. 1. Use for to print each number in the numbers list. 1. Use map to create a new list by changing each country to uppercase in the countries list 1. Use map to create a new list by changing each number to square in the numbers list 1. Use map to change to each name to uppercase in the names list 1. Use filter to filter out countries containing land. 1. Use filter to filter out countries having six character. 1. Use filter to filter out countries containing six letters and more in the country list. 1. Use filter to filter out country start with 'E' 1. Chain two or more list iterators(eg. arr.map(callback).filter(callback).reduce(callback)) 1. Declare a function called get_string_lists which takes an list as a parameter and then returns an list only with string items. 1. Use reduce to sum all the numbers in the numbers list. 1. Use reduce to concatenate all the countries and to produce this sentence: Estonia, Finland, Sweden, Denmark, Norway, and IceLand are north European countries 1. Declare a function called categorize_countries which returns an list of countries which have some common pattern(you find the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) in this repository as countries.js(eg 'land', 'ia', 'island', 'stan')). 1. Create a function which return a list of dictionary, which is the letter and the number of times the letter used to start a name of a country. 1. Declare a get_first_ten_countries function and return an list of ten countries from the countries.js list in the data folder. 1. Declare a get_last_ten_countries function which which returns the last ten countries in the countries list. 1. Find out which letter is used many times as initial for a country name from the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py)(eg. Finland, Fiji, France etc) 1. Use the countries_data.py file information, in the data folder. - Sort countries by name, by capital, by population - Sort out the ten most spoken languages by location. - Sort out the ten most populated countries. # 📘 Day 15 ## Python Error Types When we write code it common that we make a typo or other common errors. Based on the type of error we make python raise a kind of error which suggests us to fix it by reading the feedback. Understanding different types of errors in a certain programming language can help us to debug our code quick and in return it makes us a better programmer. Let's see the most common error types step by step by open our python interactive shell. Go to your you computer terminal and write, python, the python interactive shell will be opened. ### SyntaxError **Example 1: SyntaxError** ```py asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> ``` As you can see we made a syntax error because we forgot to enclose the string with parenthesis and python is already suggested us to fix. Let's fix it. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world' File "", line 1 print 'hello world' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('hello world')? >>> print('hello world') hello world >>> ``` The error was a _SyntaxError_ and we fixed and our code executed. Let see more error types. ### NameError **Example 1: NameError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> ``` As you can see from the above error, it says that name age is not defined. Yes, it is true. We did define an age variable but we were trying to print it as if we declare it. Now, lets fix this by declaring age variable and assigning with a value. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print(age) Traceback (most recent call last): File "", line 1, in NameError: name 'age' is not defined >>> age = 25 >>> print(age) 25 >>> ``` The type of error was a _NameError_. We debugged the error by defining the variable name. ### IndexError **Example 1: IndexError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> numbers = [1, 2, 3, 4, 5] >>> numbers[5] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range >>> ``` In the above example, python raised an _IndexError_ because the list has only 0 to 4 indexes, so it was out of range. ### ModuleNotFoundError **Example 1: ModuleNotFoundError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> ``` In the above example, I added extra s to math deliberately and _ModuleNotFoundError_ was raised. Lets fix the error by removing the extra added s from math. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> ``` We fixed the error by removing the extra s. Now let's use some of the function from math module. ### AttributeError **Example 1: AttributeError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> ``` As you can see, now again I made a mistake instead of pi, I tried to call a PI function from maths module that raise an attribute error, it means the function does not exist in the module. Lets fix it by change from PI to pi. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import maths Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'maths' >>> import math >>> math.PI Traceback (most recent call last): File "", line 1, in AttributeError: module 'math' has no attribute 'PI' >>> math.pi 3.141592653589793 >>> ``` Now, when we call pi from the math module we got the result. ### KeyError **Example 1: KeyError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> users = {'name':'Asab', 'age':250, 'country':'Finland'} >>> users['name'] 'Asab' >>> users['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> ``` As you can see, there was a typo in the key used to get the dictionary value. so, this is a key error and it is straight forward what to fix. Lets fix this. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> user = {'name':'Asab', 'age':250, 'country':'Finland'} >>> user['name'] 'Asab' >>> user['county'] Traceback (most recent call last): File "", line 1, in KeyError: 'county' >>> user['country'] 'Finland' >>> ``` We debug our error and our code ran and we got the value. ### TypeError **Example 1: TypeError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> ``` In the above example, a TypeError is raised because we can not add number and string. First, we should convert the string to int or float. Let's fix this error. ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 4 + '3' Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for +: 'int' and 'str' >>> 4 + int('3') 7 >>> 4 + float('3') 7.0 >>> ``` The remove the error and our and we got the result we expected. ### ImportError **Example 1: TypeError** ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> ``` There is no function called power in the math module instead we have _pow_. Lets correct it ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from math import power Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'power' from 'math' >>> from math import pow >>> pow(2,3) 8.0 >>> ``` ### ValueError ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> int('12a') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '12a' >>> ``` We can not change string to a number. ### ZeroDivisionError ```py Last login: Tue Dec 3 15:20:41 on ttys002 asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 1/0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero >>> ``` We can not divide a number by zero. We have covered some of the python error types, if you want to check more about it check the python documentation about python error types. If you are good at reading the error types then you will be able to fix your bugs fast and you will be also a better programmer. ## 💻 Exercises: Day 15 1. Open you python interactive shell and try all the examples covered in this section. [<< Part 4 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) | [Part 6 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) --- ================================================ FILE: old_files/readme16-18.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 16](#%f0%9f%93%98-day-16) - [Python Datetime](#python-datetime) - [Getting the datetime information](#getting-the-datetime-information) - [Formating datetime output using strftime](#formating-datetime-output-using-strftime) - [String to time using strptime](#string-to-time-using-strptime) - [Use date from datetime](#use-date-from-datetime) - [Time object to represent time](#time-object-to-represent-time) - [Difference between two datetime](#difference-between-two-datetime) - [Difference between two dates and times using timedelata](#difference-between-two-dates-and-times-using-timedelata) - [💻 Exercises: Day 16](#%f0%9f%92%bb-exercises-day-16) - [📘 Day 17](#%f0%9f%93%98-day-17) - [Exception Handling](#exception-handling) - [Packing and Unpacking Arguments in Python](#packing-and-unpacking-arguments-in-python) - [Unpacking](#unpacking) - [Unpacking list](#unpacking-list) - [Unpacking dictionary](#unpacking-dictionary) - [Packing](#packing) - [Packing list](#packing-list) - [Packing dictionary](#packing-dictionary) - [Spreading in Python](#spreading-in-python) - [Enumerate](#enumerate) - [Zip](#zip) - [Exercises: Day 17](#exercises-day-17) - [📘 Day 18](#%f0%9f%93%98-day-18) - [Regular Expression](#regular-expression) - [Import re module](#import-re-module) - [re functions](#re-functions) - [Match](#match) - [Search](#search) - [Searching all matches using findall](#searching-all-matches-using-findall) - [Replacing a substring](#replacing-a-substring) - [Spliting text using RegEx split](#spliting-text-using-regex-split) - [Writing RegEx pattern](#writing-regex-pattern) - [Square Bracket](#square-bracket) - [Escape character(\) in RegEx](#escape-character-in-regex) - [One or more times(+)](#one-or-more-times) - [Period(.)](#period) - [Zero or more times(*)](#zero-or-more-times) - [Zero or one times(?)](#zero-or-one-times) - [Quantifier in RegEx](#quantifier-in-regex) - [Cart ^](#cart) - [💻 Exercises: Day 18](#%f0%9f%92%bb-exercises-day-18) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 16 ## Python Datetime Python has _datetime_ module to handle date and time. ```py import datetime print(dir(datetime)) ['MAXYEAR', 'MINYEAR', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'date', 'datetime', 'datetime_CAPI', 'sys', 'time', 'timedelta', 'timezone', 'tzinfo'] ``` Using the dir or help builtin function it is possible to know the available functions in a certain module. As you can see in the datetime there are many functions but we will focus on _date_, _datetime_, _time_ and _timedelta_. Let see them step by step. ### Getting the datetime information ```py from datetime import datetime now = datetime.now() print(now) # 2019-12-04 23:34:46.549883 day = now.day # 4 month = now.month # 12 year = now.year # 2019 hour = now.hour # 23 minute = now.minute # 38 second = now.second timestamp = now.timestamp() print(day, month, year, hour, minute) print('timestamp', timestamp) print(f'{day}/{month}/{year}, {hour}:{minute}') # 4/12/2019, 23:38 ``` ### Formating datetime output using strftime ```py from datetime import datetime new_year = datetime(2020, 1, 1) print(new_year) # 2020-01-01 00:00:00 day = new_year.day month = new_year.month year = new_year.year hour = new_year.hour minute = new_year.minute second = new_year.second print(day, month, year, hour, minute) #1 1 2020 0 0 print(f'{day}/{month}/{year}, {hour}:{minute}') # 1/1/2020, 0:0 ``` Time formating ```py from datetime import datetime # current date and time now = datetime.now() t = now.strftime("%H:%M:%S") print("time:", t) time_one = now.strftime("%m/%d/%Y, %H:%M:%S") # mm/dd/YY H:M:S format print("time one:", time_one) time_two = now.strftime("%d/%m/%Y, %H:%M:%S") # dd/mm/YY H:M:S format print("time two:", time_two) ``` ```sh time: 01:05:01 time one: 12/05/2019, 01:05:01 time two: 05/12/2019, 01:05:01 ``` Here are all the _strftime_ symbols we use to format time. A reference of all the legal format codes. ![strftime](./images/strftime.png) ### String to time using strptime ```py from datetime import datetime date_string = "5 December, 2019" print("date_string =", date_string) date_object = datetime.strptime(date_string, "%d %B, %Y") print("date_object =", date_object) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 ``` ### Use date from datetime ```py from datetime import date d = date(2020, 1, 1) print(d) print('Current date:', d.today()) # 2019-12-05 # date object of today's date today = date.today() print("Current year:", today.year) # 2019 print("Current month:", today.month) # 12 print("Current day:", today.day) # 5 ``` ### Time object to represent time ```py from datetime import time # time(hour = 0, minute = 0, second = 0) a = time() print("a =", a) # time(hour, minute and second) b = time(10, 30, 50) print("b =", b) # time(hour, minute and second) c = time(hour=10, minute=30, second=50) print("c =", c) # time(hour, minute, second, microsecond) d = time(10, 30, 50, 200555) print("d =", d) ``` output a = 00:00:00 b = 10:30:50 c = 10:30:50 d = 10:30:50.200555 ### Difference between two datetime ```py today = date(year=2019, month=12, day=5) new_year = date(year=2020, month=1, day=1) time_left_for_newyear = new_year - today # Time left for new year: 27 days, 0:00:00 print('Time left for new year: ', time_left_for_newyear) t1 = datetime(year = 2019, month = 12, day = 5, hour = 0, minute = 59, second = 0) t2 = datetime(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) diff = t2 - t1 print('Time left for new year:', diff) # Time left for new year: 26 days, 23: 01: 00 ``` ### Difference between two dates and times using timedelata ```py from datetime import timedelta t1 = timedelta(weeks=12, days=10, hours=4, seconds=20) t2 = timedelta(days=7, hours=5, minutes=3, seconds=30) t3 = t1 - t2 print("t3 =", t3) ``` ```sh date_string = 5 December, 2019 date_object = 2019-12-05 00:00:00 t3 = 86 days, 22:56:50 ``` ## 💻 Exercises: Day 16 1. Get the current day, month, year, hour, minute and timestamp from time date module 1. Format the current date using in this format: "%m/%d/%Y, %H:%M:%S") 1. Today is 5 December, 2019. Change this time string to time. 1. Calculate the time difference from now to new year. 1. Calculate the time difference between 1 January 1970 and now. 1. Think about for what you can you use datetime module, - Time series analysis - To get time stamp of any activities in an application - And many other users # 📘 Day 17 ## Exception Handling Python uses _try_ and _except_ to handle error gracefully. A graceful exit (or graceful handling) of error is a simple programming idiom wherein a program detects a serious error condition and "exits gracefully" in a controlled manner as a result. Often the program prints a descriptive error message to a terminal or log as part of the graceful exit, this make our application more robust. The cause of an exception is often external to the program itself. An example of exceptions could be an incorrect input, wrong file name, unable to find a file, a malfunctioning IO device. Graceful handling of errors prevent our application from crashing. We have cover the different python _error_ types in the previous section. If we use _try_ and _except_ our program don't raise error. ![Try and Except](images/try_except.png) ```py try: code in this block if things go well except: code in this block run if things go wrong ``` **Example:** ```py try: print(10 + '5') except: print('Something goes wrong') ``` In the above example the second operand is a string. So, we should change to float or int to add it with a number. Therefore, the second block which is the _except_ executed. **Example:** ```py try: name = input('Enter your name:') year_born = input('Year you born:') age = 2019 - year_born print(f'You are {name}. And your age is {age}.') except: print('Something goes wrong') ``` ```sh Something goes wrong ``` In the above example, the exception block will run and we do not know exactly the problem. To know the problem we can use the different error types with except. In the following example, it will handle the error and also tells the kind of error raised. ```py except TypeError: print(TypeError) except: print('Something goes wrong') try: name = input('Enter your name:') year_born = input('Year you born:') age = 2019 - year_born print(f'You are {name}. And your age is {age}.') except TypeError: print('Type error occur') except ValueError: print('Value error occur') except ZeroDivisionError: print('zero division error occur') ``` ```sh Enter your name:Asabeneh Year you born:1920 Type error occur I alway run. ``` In the above code the output is going to be _TypeError_. Now, lets by by adding additional block: ```py try: name = input('Enter your name:') year_born = input('Year you born:') age = 2019 - int(year_born) print(f'You are {name}. And your age is {age}.') except TypeError: print('Type error occur') except ValueError: print('Value error occur') except ZeroDivisionError: print('zero division error occur') else: print('I usually run with the try block') finally: print('I alway run.') ``` ```sh Enter your name:Asabeneh Year you born:1920 You are Asabeneh. And your age is 99. I usually run with the try block I alway run. ``` ## Packing and Unpacking Arguments in Python We use two operators: - \* for tuples - \*\* for dictionaries Let's take as an example below. It takes only arguments but we have list. We can unpack the list and changes to argument. ### Unpacking #### Unpacking list ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1,2,3,4,5] print(sum_of_five_nums(lst)) # TypeError: sum_of_five_nums() missing 4 required positional arguments: 'b', 'c', 'd', and 'e' ``` When we run the above code, it raises an error because this function takes numbers as arguments not as list. Let's unpack or destructure the list. ```py def sum_of_five_nums(a, b, c, d, e): return a + b + c + d + e lst = [1,2,3,4,5] print(sum_of_five_nums(*lst)) # 15 ``` We can also use unpacking in the range builtin function that expects start and end. ```py numbers = range(2, 7) # normal call with separate arguments print(list(numbers)) # [2, 3, 4, 5, 6] args = [2, 7] numbers = range(*args) # call with arguments unpacked from a list print(numbers) # [2, 3, 4, 5,6] ``` A list or a tuple can be also be unpacked like this: ```py countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] fin, sw, nor, *rest = countries print(fin, sw, nor, rest) # Finland Sweden Norway ['Denmark', 'Iceland'] numbers = [1, 2, 3, 4, 5, 6, 7] one, *middle,last = numbers print(one, middle, last) # 1 [2, 3, 4, 5, 6] 7 ``` #### Unpacking dictionary ```py def unpacking_person_info(name, country, city, age): return f'{name} lives in {country}, {city}. He is {age} year old.' dct = {'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'age':250} print(unpacking_person_info(**dct)) # Asabeneh lives in Finland, Helsinki. He is 250 years old. ``` ### Packing Sometimes we never know how many arguments need to be passed to a python function, we can use packing method to allow our function to take unlimited number or arbitrary number of arguments. ### Packing list ```py def sum_all(*args): s = 0 for i in args: s += i return s print(sum_all(1, 2, 3)) # 6 print(sum_all(1, 2, 3, 4, 5, 6, 7)) # 28 ``` #### Packing dictionary ```py def packing_person_info(**kwargs): # check the type of kwargs and it is a dict type # print(type(kwargs)) # Printing dictionary items for key in kwargs: print(f"{key} = {kwargs[key]}") return kwargs print(packing_person_info(name="Asabeneh", country="Finland", city="Helsinki", age=250)) ``` ```sh name = Asabeneh country = Finland city = Helsinki age = 250 {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ## Spreading in Python Like JavaScript it is possible to spread in python. Lets see the example below: ```py lst_one = [1, 2, 3] lst_two = [4, 5, 6,7] lst = [0, *list_one, *list_two] print(lst) # [0, 1, 2, 3, 4, 5, 6, 7] country_lst_one = ['Finland', 'Sweden', 'Norway'] country_lst_two = ['Denmark', 'Iceland'] nordic_countries = [*country_lst_one, *country_lst_two] print(nordic_countries) ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland'] ``` ## Enumerate In we are interested in an index of a list, we use *enumerate*. ```py for index, i in enumerate(countries): print('hi') if i == 'Finland': print(f'The country {i} has been found at index {index}') ``` ```sh The country Finland has been found at index 1. ``` ## Zip Sometimes we like to combine to lists when we loop through. See the example below: ```py fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits_and_veges = [] for f, v in zip(fruits, vegetables): fruits_and_veges.append({'fruit':f, 'veg':v}) print(fruits_and_veges) ``` ```sh [{'fruit': 'banana', 'veg': 'Tomato'}, {'fruit': 'orange', 'veg': 'Potato'}, {'fruit': 'mango', 'veg': 'Cabbage'}, {'fruit': 'lemon', 'veg': 'Onion'}] ``` ## Exercises: Day 17 1. names = ['Finland', 'Sweden', 'Norway','Denmark','Iceland', 'Estonia','Russia']. Unpack the first five countries and store them in a variable nordic_countries, store Estonia and Russia in es, and ru respectively. # 📘 Day 18 ## Regular Expression A regular expression or RegEx is a small programming language that helps to find pattern in data. A RegEx can be used to check if some pattern exists in a different data type. To use RegEx in python first we should import the RegEx module which is *re*. ### Import re module After importing the module we can use it to detect or find patterns. ```py import re ``` ### re functions To find a pattern we use different set of *re* functions that allows to search a string for match. * *re.match()*:searches only in the beginning of the first line of the string and return match object if found, else return none. * *re.search*:Returns a Match object if there is a match anywhere in the string including or in multiline string. * *re.findall*:Returns a list containing all matches * *re.split*: Returns a list where the string has been split at each match * *re.sub*: Replaces one or many matches with a string #### Match ```py # syntac re.match(substring, string, re.I) # substring is a string or a pattern, string is the text we look for a pattern , re.I is case ignore ``` ```py txt = 'I love to teach python or javaScript' # It return an object with span, and match match = re.match('I love to teach', txt, re.I) print(match) # # We can get the starting and ending position of the match as tuple using span span = match.span() print(span) # (0, 15) # Lets find the start and stop position from the span start, end = span print(start, end) # 0, 15 substring = txt[start:end] print(substring) # I love to teach ``` As you can see from the above example, the pattern we are looking for or the substring *I love to teach* is the beginning of the text. The match function only returns an object if the text starts with the pattern. #### Search ```py # syntax re.match(substring, string, re.I) # substring is a pattern, string is the text we look for a pattern , re.I is case ignore flag ``` ```py txt = '''Python is the most beautiful language that a human begin has ever created. I recommend python for a first programming language''' # It return an object with span, and match match = re.search('first', txt, re.I) print(match) # # We can get the starting and ending position of the match as tuple using span span = match.span() print(span) # (100, 105) # Lets find the start and stop position from the span start, end = span print(start, end) # 100 105 substring = txt[start:end] print(substring) # first ``` As you can see search is much better than match because it can look for the pattern through out the text. Search return returns a match object right way a first match found. A much better *re* function is *findall*. This function check the pattern through the string and returns all the matches as a list. #### Searching all matches using findall *findall()* returns all the matches as a list ```py txt = '''Python is the most beautiful language that a human begin has ever created. I recommend python for a first programming language''' # It return a list matches = re.findall('language', txt, re.I) print(matches) # ['language', 'language'] ``` As you can see, the word language found two times in the string. Let's practice more Let's look for the word both Python and python in the string ```py txt = '''Python is the most beautiful language that a human begin has ever created. I recommend python for a first programming language''' # It returns list matches = re.findall('python', txt, re.I) print(matches) # ['Python', 'python'] ``` Since we are using *re.I* both lowercase and uppercase are included but if we don't have the flag, we write our pattern differently. Let's see that ```py txt = '''Python is the most beautiful language that a human begin has ever created. I recommend python for a first programming language''' matches = re.findall('Python|python', txt) print(matches) # ['Python', 'python'] # matches = re.findall('[Pp]ython', txt) print(matches) # ['Python', 'python'] ``` #### Replacing a substring ```py txt = '''Python is the most beautiful language that a human begin has ever created. I recommend python for a first programming language''' match_replaced = re.sub('Python|python', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human begin has ever created. # OR match_replaced = re.sub('[Pp]ython', 'JavaScript', txt, re.I) print(match_replaced) # JavaScript is the most beautiful language that a human begin has ever created. ``` Let's add one more example, the following string is really hard to read unless we remove the % symbol. Replacing the % with a empty string will clean the text. ```py txt = '''%I a%m te%%a%%che%r% a%n%d %% I l%o%ve te%ach%ing. T%he%re i%s n%o%th%ing as m%ore r%ewarding a%s e%duc%at%i%ng a%n%d e%m%p%ow%er%ing p%e%o%ple. I fo%und te%a%ching m%ore i%n%t%er%%es%ting t%h%an any other %jobs. D%o%es thi%s m%ot%iv%a%te %y%o%u to b%e a t%e%a%cher.''' matches = re.sub('%', '', txt) print(matches) # ['Python', 'python'] ``` ```sh I am teacher and I love teaching. There is nothing as more rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher. ``` ## Spliting text using RegEx split ```py txt = '''I am teacher and I love teaching. There is nothing as more rewarding as educating and empowering people. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher.''' print(re.split('\n', txt)) ``` ```sh ['I am teacher and I love teaching.', 'There is nothing as more rewarding as educating and empowering people.', 'I found teaching more interesting than any other jobs.', 'Does this motivate you to be a teacher.'] ``` ## Writing RegEx pattern To declare a string variable we use a single or double quote. To declare RegEx variable *r''*. The following pattern only identifies apple with lowercase, to make it case insensitive either we should rewrite our pattern or we should add a flag. ```py regex_pattern = r'apple' txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['apple'] # To make case insensitive adding flag ' matches = re.findall(regex_pattern, txt, re.I) print(matches) # ['Apple', 'apple'] # or we can use set of characters method regex_pattern = r'[Aa]pple' # this mean the first letter could be Apple or apple matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` * []: A set of characters * [a-c] means, a or b or c * [a-z] means, any letter a to z * [A-Z] means, any character A to Z * [0-3] means, 0 or 1 or 2 or 3 * [0-9] means any number 0 to 9 * [A-Za-z0-9] any character which is a to z, A to Z, 0 to 9 * \\: uses to escape special characters * \d mean:match where the string contains digits (numbers from 0-9) * \D mean: match where the string does not contain digits * . : any character except new line character(\n) * ^: starts with * r'^substring' eg r'^love', a sentence which starts with a word love * r'[^abc] mean not a, not b, not c. * $: ends with * r'substring$' eg r'love$', sentence ends with a word love * *: zero or more times * r'[a]*' means a optional or it can be occur many times. * +: one or more times * r'[a]+' mean at least once or more times * ?: zero or one times * r'[a]?' mean zero times or once * {3}: Exactly 3 characters * {3,}: At least 3 character * {3,8}: 3 to 8 characters * |: Either or * r'apple|banana' mean either of an apple or a banana * (): Capture and group ![Regular Expression cheat sheet](images/regex.png) Let's use example to clarify the above meta characters ### Square Bracket Let's use square bracket to include lower and upper case ```py regex_pattern = r'[Aa]pple' # this square bracket mean either A or a txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'apple'] ``` If we want to look for the banana, we write the pattern as follows: ```py regex_pattern = r'[Aa]pple|[Bb]anana' # this square bracket mean either A or a txt = 'Apple and banana are fruits. An old cliche says an apple a day a doctor way has been replaced by a banana a day keeps the doctor far far away. ' matches = re.findall(regex_pattern, txt) print(matches) # ['Apple', 'banana', 'apple', 'banana'] ``` Using the square bracket and or operator , we manage to extract Apple, apple, Banana and banana. ### Escape character(\\) in RegEx ```py regex_pattern = r'\d' # d is a special character which means digits txt = 'This regular expression example was made in December 6, 2019.' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2', '0', '1', '9'], this is not what we want regex_pattern = r'\d+' # d is a special character which means digits, + mean one or more txt = 'This regular expression example was made in December 6, 2019.' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019'] ``` ### One or more times(+) ```py regex_pattern = r'\d+' # d is a special character which means digits, + mean one or more times txt = 'This regular expression example was made in December 6, 2019.' matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019'] ``` ### Period(.) ```py regex_pattern = r'[a].' # this square bracket means a and . means any character except new line txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['an', 'an', 'an', 'a ', 'ar'] regex_pattern = r'[a].+' # . any character, + any character one or more times matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Zero or more times(*) Zero or many times. The pattern could may not occur or it can occur many times. ```py regex_pattern = r'[a].*' # . any character, + any character one or more times txt = '''Apple and banana are fruits''' matches = re.findall(regex_pattern, txt) print(matches) # ['and banana are fruits'] ``` ### Zero or one times(?) Zero or one times. The pattern could may not occur or it may occur once. ```py txt = '''I am not sure if there is a convention how to write the word e-mail. Some people write it email others may write it as Email or E-mail.''' regex_pattern = r'[Ee]-?mail' # ? means optional matches = re.findall(regex_pattern, txt) print(matches) # ['e-mail', 'email', 'Email', 'E-mail'] ``` ### Quantifier in RegEx We can specify the length of the substring we look for in a text, using a curly bracket. Lets imagine, we are interested in substring that their length are 4 characters ```py txt = 'This regular expression example was made in December 6, 2019.' regex_pattern = r'\d{4}' # exactly four times matches = re.findall(regex_pattern, txt) print(matches) # ['2019'] txt = 'This regular expression example was made in December 6, 2019.' regex_pattern = r'\d{1, 4}' # 1 to 4 matches = re.findall(regex_pattern, txt) print(matches) # ['6', '2019'] ``` ### Cart ^ * Starts with ```py txt = 'This regular expression example was made in December 6, 2019.' regex_pattern = r'^This' # ^ means starts with print(matches) # ['This'] ``` * Negation ```py txt = 'This regular expression example was made in December 6, 2019.' regex_pattern = r'[^A-Za-z ]+' # ^ in set character means negation, not A to Z, not a to z, no space matches = re.findall(regex_pattern, txt) print(matches) # ['e-mail', 'email', 'Email', 'E-mail'] ``` ## 💻 Exercises: Day 18 1. What is the most frequent word in the following paragraph ? ```py paragraph = 'I love teaching. If you do not love teaching what else can you love. I love Python if you do not love something which can give you all the capabilities to develop an application what else can you love. ``` ```sh [(6, 'love'), (5, 'you'), (3, 'can'), (2, 'what'), (2, 'teaching'), (2, 'not'), (2, 'else'), (2, 'do'), (2, 'I'), (1, 'which'), (1, 'to'), (1, 'the'), (1, 'something'), (1, 'if'), (1, 'give'), (1, 'develop'), (1, 'capabilities'), (1, 'application'), (1, 'an'), (1, 'all'), (1, 'Python'), (1, 'If')] ``` 2. The position of some particles on the horizontal x-axis -12, -4, -3 and -1 in the negative direction, 0 at origin, 4 and 8 in the positive direction. Extract these numbers and find the distance between the two furthest particles. ```py points = ['-1', '2', '-4', '-3', '-1', '0', '4', '8'] sorted_points = [-4, -3, -1, -1, 0, 2, 4, 8] distance = 12 ``` 3. Write a pattern which identify if a string is a valid python variable ```sh is_valid_variable('first_name') # True is_valid_variable('first-name') # False is_valid_variable('1first_name') # False is_valid_variable('firstname') # True ``` 4. Clean the following text. After cleaning, count three most frequent words in the string. ```py sentence = '''%I $am@% a %tea@cher%, &and& I lo%#ve %tea@ching%;. There $is nothing; &as& mo@re rewarding as educa@ting &and& @emp%o@wering peo@ple. ;I found tea@ching m%o@re interesting tha@n any other %jo@bs. %Do@es thi%s mo@tivate yo@u to be a tea@cher!?''' print(clean_text(sentence)); I am a teacher and I love teaching There is nothing as more rewarding as educating and empowering people I found teaching more interesting than any other jobs Does this motivate you to be a teacher print(most_frequent_words(cleaned_text)) # [(3, 'I'), (2, 'teaching'), (2, 'teacher')] ``` [<< Part 5 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) | [Part 7 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) --- ================================================ FILE: old_files/readme19-21.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 19](#%f0%9f%93%98-day-19) - [File handling](#file-handling) - [Opening File for reading](#opening-file-for-reading) - [Opening file for writing or updating](#opening-file-for-writing-or-updating) - [Deleting file](#deleting-file) - [File Types](#file-types) - [File with txt Extension](#file-with-txt-extension) - [File with json Extension](#file-with-json-extension) - [Changing JSON to dictionary](#changing-json-to-dictionary) - [Changing dictionary to JSON](#changing-dictionary-to-json) - [Saving as JSON file](#saving-as-json-file) - [File with csv Extension](#file-with-csv-extension) - [File with xlsx Extension](#file-with-xlsx-extension) - [File with xml Extension](#file-with-xml-extension) - [💻 Exercises: Day 19](#%f0%9f%92%bb-exercises-day-19) - [📘 Day 20](#%f0%9f%93%98-day-20) - [Python PIP - Python Package Manager](#python-pip---python-package-manager) - [What is PIP ?](#what-is-pip) - [Installing pip](#installing-pip) - [Installing packages using pip](#installing-packages-using-pip) - [Uninstall packages](#uninstall-packages) - [List of packages](#list-of-packages) - [Show package](#show-package) - [PIP freeze](#pip-freeze) - [Reading from URL](#reading-from-url) - [Creating a package](#creating-a-package) - [Further information about packages](#further-information-about-packages) - [Exercises: Day 20](#exercises-day-20) - [📘 Day 21](#%f0%9f%93%98-day-21) - [Classes and Objects](#classes-and-objects) - [Creating a Class](#creating-a-class) - [Creating an Object](#creating-an-object) - [Class Constructor](#class-constructor) - [Object Methods](#object-methods) - [Object default methods](#object-default-methods) - [Method to modify class default values](#method-to-modify-class-default-values) - [Inheritance](#inheritance) - [Overriding parent method](#overriding-parent-method) - [💻 Exercises: Day 21](#%f0%9f%92%bb-exercises-day-21) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 19 ## File handling So far we have seen different python data types. We usually store our data in a different file format. In addition to handling file, we will also see different file formats(.txt, .json, .xml, .csv, .tsv, .excel) file formats in this section. First, let's get familiar with handling file with common file format(.txt). File handling is an import part of programming which allows us to create, read, update and delete files. In python to handle data we use _open()_ builtin function. ```py # Syntax open('filename', mode) # mode(r, a, w, x, t,b, could be to read, write, update ``` - "r" - Read - Default value. Opens a file for reading, error if the file does not exist - "a" - Append - Opens a file for appending, creates the file if it does not exist - "w" - Write - Opens a file for writing, creates the file if it does not exist - "x" - Create - Creates the specified file, returns an error if the file exists - "t" - Text - Default value. Text mode - "b" - Binary - Binary mode (e.g. images) ### Opening File for reading The default mode of _open_ is reading, so we do not have to specify 'r' or 'rt'. I have created and saved a file named reading_file_example.txt in the files directory. Let see read this file. ```py f = open('./files/reading_file_example.txt') print(f) # <_io.TextIOWrapper name='./files/reading_file_example.txt' mode='r' encoding='UTF-8'> ``` As you can see in the above example, I printed the opened file and it gave me some information about the opened file. Opened file has different reading methods: _read()_, _readline_, _readlines_. An opened file has to be closed with _close()_ method. - _read()_: read the whole text as string. If we want to limit the number of characters we read, we can limit it by passing int value to the methods. ```py f = open('./files/reading_file_example.txt') txt = f.read() print(type(txt)) print(txt) f.close() ``` ```sh # output This is an example to show how to open a file and read. This is the second line of the text. ``` Instead of printing all the text, let see by printing the first 10 characters of the text in the file. ```py f = open('./files/reading_file_example.txt') txt = f.read(10) print(type(txt)) print(txt) f.close() ``` ```sh # output This is an ``` - _readline()_: read only the first line ```py f = open('./files/reading_file_example.txt') line = f.readline() print(type(line)) print(line) f.close() ``` ```sh # output This is an example to show how to open a file and read. ``` - _readlines()_: read all the text line by line and returns a list of lines ```py f = open('./files/reading_file_example.txt') lines = f.readlines() print(type(lines)) print(lines) f.close() ``` ```sh # output ['This is an example to show how to open a file and read.\n', 'This is the second line of the text.'] ``` Another way to get all the lines a list is using _splitlines()_: ```py f = open('./files/reading_file_example.txt') lines = f.read().splitlines() print(type(lines)) print(lines) f.close() ``` ```sh # output ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` After we open a file, we should close the file but there is a high tendency to forget to close. There is a new way of opening method, _with_ which closes by itself. Let's write the above code with _with_. ```py with open('./files/reading_file_example.txt') as f: lines = f.read().splitlines() print(type(lines)) print(lines) ``` ```sh # output ['This is an example to show how to open a file and read.', 'This is the second line of the text.'] ``` ### Opening file for writing or updating To write to an existing file, we must add a mode as parameter to the _open()_ function: - "a" - append - will append to the end of the file if the file does not exist it raise FileNotFoundError. - "w" - write - will overwrite any existing content if the file does not exist it creates. Let's append some text to the file, we have been reading ```py with open('./files/reading_file_example.txt','a') as f: f.write('This text has to be appended at the end') ``` This method below, create a new file if the file does not exist. ```py with open('./files/writing_file_example.txt','w') as f: f.write('This text will be written in a newly created file') ``` ### Deleting file We have seen in previous section, how to make and remove a directory using _os_ module. Again now, if we want to remove a file we use _os_ module. ```py import os os.remove('./files/example.txt') ``` If the file does not exist, the remove method will raise an error it is good to use condition. ```py import os if os.path.exist('./files/example.txt): os.remove('./files/example.txt') else: os.remove('The file does not exist') ``` ## File Types ### File with txt Extension File with _txt_ extension is a very common form data and we have covered it in the previous section. Let's move to the JSON file ### File with json Extension JSON stands for JavaScript Object Notation. Actually, it a stringified JavaScript object. _Example:_ ```py # dictionary person_dct= { "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScrip", "React","Python"] } # JSON: A string form a dictionary person_json = "{'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']}" # we use three quotes and make it multiple line to make it more readable person_json = '''{ "name":"Asabeneh", "country":"Finland", "city":"Helsinki", "skills":["JavaScrip", "React","Python"] }''' ``` ### Changing JSON to dictionary To change a JSON to a dictionary we use _loads_ method. ```py import json # JSON person_json = '''{ "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] }''' # let's change JSON to dictionary person_dct = json.loads(person_json) print(person_dct) print(person_dct['name']) ``` ```sh # output {'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']} Asabeneh ``` ### Changing dictionary to JSON To change a dictionary to a JSON we use _dumps_ method. ```py import json # python dictionary person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] } # let's convert it to json person_json = json.dumps(person, indent=4) # indent could be 2, 4, 8. It beautify the json print(type(person_json)) print(person_json) ``` ```sh # output # when you it is printed it does not have the quote but actually it is a string # JSON does not have type, it is a string type. { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": [ "JavaScrip", "React", "Python" ] } ``` ### Saving as JSON file We can also save our data as a json file. Let's save it as a json file using the following steps. ```py import json # python dictionary person = { "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "skills": ["JavaScrip", "React", "Python"] } with open('./files/json_example.json', 'w', encoding='utf-8') as f: json.dump(person, f, ensure_ascii=False, indent=4) ``` In the above code, we use encoding and indentation. Indentation makes the json file easy to read. ### File with csv Extension CSV stands for comma separated values. CSV is a simple file format used to store tabular data, such as a spreadsheet or database. CSV is a very common data format in data science. **Example:** ```csv "name","country","city","skills" "Asabeneh","Finland","Helsinki","JavaScrip" ``` **Example:** ```py import csv with open('./files/csv_example.csv') as f: csv_reader = csv.reader(f, delimiter=',') # w use, reader method to read csv line_count = 0 for row in csv_reader: if line_count == 0: print(f'Column names are :{", ".join(row)}') line_count += 1 else: print( f'\t{row[0]} is a teachers. He lives in {row[1]}, {row[2]}.') line_count += 1 print(f'Number of lines: {line_count}') ``` ```sh # output: Column names are :name, country, city, skills Asabeneh is a teachers. He lives in Finland, Helsinki. Number of lines: 2 ``` ### File with xlsx Extension To read excel we need to install _xlrd_ package. We will cover this after we cover package installing using pip. ### File with xml Extension XML is another structured data format which looks like HTML. In XML the tags are not predefined. The first line is an XML declaration. The person tag is the root of the XML. The person has a gender attribute. **Example:XML** ```xml Asabeneh Finland Helsinki JavaScrip React Python ``` How to read an XML file, for more information check the [documentation](https://docs.python.org/2/library/xml.etree.elementtree.html) ```py import xml.etree.ElementTree as ET tree = ET.parse('./files/xml_example.xml') root = tree.getroot() print('Root tag:', root.tag) print('Attribute:', root.attrib) for child in root: print('field: ', child.tag) ``` ```sh # output Root tag: person Attribute: {'gender': 'male'} field: name field: country field: city field: skills ``` ## 💻 Exercises: Day 19 1. Writ a function which count number of lines and number of words from a text. All the files are in data the folder: 1. Read obama_speech.txt file and count number of lines and now of words 2. Read michelle_obama_speech.txt file and count number of lines and now of words 3. Read donald_speech.txt file and count number of lines and now of words 4. Read melina_trump_speech.txt file and count number of lines and now of words 2. Read the countries_data.json data file in data directory, create a function which find the ten most spoken languages ```py # Your output should look like this print(most_spoken_languages(filename='./data/countries_data.json', 10)) [(91, 'English'), (45, 'French'), (25, 'Arabic'), (24, 'Spanish'), (9, 'Russian'), (9, 'Portuguese'), (8, 'Dutch'), (7, 'German'), (5, 'Chinese'), (4, 'Swahili'), (4, 'Serbian')] # Your output should look like this print(most_spoken_languages(filename='./data/countries_data.json', 3)) [(91, 'English'), (45, 'French'), (25, 'Arabic')] ``` 3. Read the countries_data.json data file in data directory,create a function which create the ten most populated countries ```py # Your output should look like this print(most_populated_countries(filename='./data/countries_data.json', 10)) [{'country': 'China', 'population': 1377422166}, {'country': 'India', 'population': 1295210000}, {'country': 'United States of America', 'population': 323947000}, {'country': 'Indonesia', 'population': 258705000}, {'country': 'Brazil', 'population': 206135893}, {'country': 'Pakistan', 'population': 194125062}, {'country': 'Nigeria', 'population': 186988000}, {'country': 'Bangladesh', 'population': 161006790}, {'country': 'Russian Federation', 'population': 146599183}, {'country': 'Japan', 'population': 126960000}] # Your output should look like this print(most_populated_countries(filename='./data/countries_data.json', 3)) [{'country': 'China', 'population': 1377422166}, {'country': 'India', 'population': 1295210000}, {'country': 'United States of America', 'population': 323947000}] ``` 4. Extract all incoming emails from the email_exchange_big.txt file. 5. Find the most common words in the English language. Call the name of your function find_most_common_words, it will take two parameters which are a string or a file and a positive integer. Your function will return an array of tuples in descending order. Check the output ```py # Your output should look like this print(find_most_common_words('sample.txt', 10)) [(10, 'the'), (8, 'be'), (6, 'to'), (6, 'of'), (5, 'and'), (4, 'a'), (4, 'in'), (3, 'that'), (2, 'have'), (2, 'I')] # Your output should look like this print(find_most_common_words('sample.txt', 5)) [(10, 'the'), (8, 'be'), (6, 'to'), (6, 'of'), (5, 'and')] ``` 6. Use the function, find_most_frequent_words to find out: 1. The ten most frequent words used in [Obama's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/obama_speech.txt) 2. The ten most frequent words used in [Michelle's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/michelle_obama_speech.txt) 3. The ten most frequent words used in [Trump's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/donald_speech.txt) 4. The ten most frequent words used in [Melina's speech](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/melina_trump_speech.txt) 7. Write a python application which checks similarity between two texts. It takes a file or a string as a parameter and it will evaluate the similarity of the two texts. For instance check the similarity between the transcripts of [Michelle's](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/michelle_obama_speech.txt) and [Melina's](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/melina_trump_speech.txt) speech. You may need a couple of functions, function to clean the text(clean_text), function to remove support words(remove_support_words) and finally to check the similarity(check_text_similarity). List of [stop words](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/stop_words.py) are in the data directory 8. Find the 10 most repeated words in the romeo_and_juliet.txt 9. Read the [hacker news csv](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/hacker_news.csv) file and find out: 1. Count the number of lines containing python or Python 2. Count the number lines containing JavaScript, javascript or Javascript 3. Count the number lines containing Java not JavaScript # 📘 Day 20 ## Python PIP - Python Package Manager ### What is PIP ? PIP stands for Preferred installer program. We use _pip_ to install different python packages. Package is a python module which can contain one or more modules or other packages. A module or modules which we can install to our application is a package. In programming, we do not have to write every utility programs instead we install packages and import the package to our applications. ### Installing pip If you did not install pip, lets install pip. Go to your terminal or command prompt and copy and past this: ```sh asabeneh@Asabeneh:~$ pip install pip ``` Check if it is installed by writing ```sh pip --version ``` ```py asabeneh@Asabeneh:~$ pip --version pip 19.3.1 from /usr/local/lib/python3.7/site-packages/pip (python 3.7) ``` As you can see, I am using pip version 19.3.1, if you see some number a bit below or above that mean you have pip installed. Let's some of the package used in the python community for different purposes. Just to let you know that there are lots of package which are available for use with different applications. ### Installing packages using pip Let's try to install _numpy_, which is called a numeric python. It is one of the most popular package in machine learning and data science community. - NumPy is the fundamental package for scientific computing with Python. It contains among other things: - a powerful N-dimensional array object - sophisticated (broadcasting) functions - tools for integrating C/C++ and Fortran code - useful linear algebra, Fourier transform, and random number capabilities ```sh asabeneh@Asabeneh:~$ pip install numpy ``` Lets start using numpy. Open your python interactive shell, write python and then import numpy as follows: ```py asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.version.version '1.17.3' >>> lst = [1, 2, 3,4, 5] >>> np_arr = numpy.array(lst) >>> np_arr array([1, 2, 3, 4, 5]) >>> len(np_arr) 5 >>> np_arr * 2 array([ 2, 4, 6, 8, 10]) >>> np_arr + 2 array([3, 4, 5, 6, 7]) >>> ``` Pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. Lets install big brother of numpy _pandas_ as we did for _numpy_. ```sh asabeneh@Asabeneh:~$ pip install pandas ``` ```py asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pandas ``` This section is not about numpy nor pandas, here we are trying to learn how to install packages and how to import them. If it is needed we will talk about different packages in other sections. Let's import a web browser module, which can help us to open any website.You do not install this module, it is installed by default with python 3. For instance if you like to open any number of website at any time or if you like to schedule something this *webbrowser* module can be use. ```py import webbrowser # web browser module to open websites # list of urls: python url_lists = [ 'http://www.python.org', 'https://www.linkedin.com/in/asabeneh/', 'https://twitter.com/Asabeneh', 'https://twitter.com/Asabeneh', ] # opens the above list of websites in a different tab for url in url_lists: webbrowser.open_new_tab(url) ``` ### Uninstall packages If you do not like to keep the installed packages, you can remove them. ```sh pip uninstall packagename ``` ### List of packages To see the installed packages on our machine. We can use pip followed by lis. ```sh pip list ``` ### Show package To show information about a package ```sh pip show packagename ``` ```sh asabeneh@Asabeneh:~$ pip show pandas Name: pandas Version: 0.25.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: python-dateutil, pytz, numpy Required-by: ``` If we want even more detail than the above, just add --verbose ```sh asabeneh@Asabeneh:~$ pip show --verbose pandas Name: pandas Version: 0.25.3 Summary: Powerful data structures for data analysis, time series, and statistics Home-page: http://pandas.pydata.org Author: None Author-email: None License: BSD Location: /usr/local/lib/python3.7/site-packages Requires: numpy, pytz, python-dateutil Required-by: Metadata-Version: 2.1 Installer: pip Classifiers: Development Status :: 5 - Production/Stable Environment :: Console Operating System :: OS Independent Intended Audience :: Science/Research Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Cython Topic :: Scientific/Engineering Entry-points: [pandas_plotting_backends] matplotlib = pandas:plotting._matplotlib ``` ### PIP freeze Generate output suitable for a requirements file. ```sh asabeneh@Asabeneh:~$ pip freeze docutils==0.11 Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 ``` The pip freeze gave us the packages use installed and their version. We use with requirements.txt file for deployment. ### Reading from URL By now you are familiar with how to read or write on a file which is located in you local machine. Sometimes, we may like to read from a website using url or from an API. API stands for Application Program Interface. It is a means to exchange structure data between servers primarily a json data. To open network, we need a package called _requests_ which allows to open network and to implement CRUD(create, read, update and delete) operation. In this section, we will cover only reading part of a CRUD. Let's install _requests_ ```py asabeneh@Asabeneh:~$ pip install requests ``` We will see _get_, _status_code_, _headers_, _text_ and _json_ methods from _requests_ module _ get(): to open a network and fetch data from url and it returns a response object _ status_code: After we fetched, we check the status(succes, error, etc) _ headers: To check the header types _ text: to extract the text from the fetched response object \* json: to extract json data Let's read a txt file form this website, https://www.w3.org/TR/PNG/iso_8859-1.txt. ```py import requests # importing the request module url = 'https://www.w3.org/TR/PNG/iso_8859-1.txt' # text from a website response = requests.get(url) # opening a network and fetching a data print(response) print(response.status_code) # status code, success:200 print(response.headers) # headers information print(response.text) # gives all the text from the page ``` ```sh 200 {'date': 'Sun, 08 Dec 2019 18:00:31 GMT', 'last-modified': 'Fri, 07 Nov 2003 05:51:11 GMT', 'etag': '"17e9-3cb82080711c0;50c0b26855880-gzip"', 'accept-ranges': 'bytes', 'cache-control': 'max-age=31536000', 'expires': 'Mon, 07 Dec 2020 18:00:31 GMT', 'vary': 'Accept-Encoding', 'content-encoding': 'gzip', 'access-control-allow-origin': '*', 'content-length': '1616', 'content-type': 'text/plain', 'strict-transport-security': 'max-age=15552000; includeSubdomains; preload', 'content-security-policy': 'upgrade-insecure-requests'} ``` - Lets read from an api. API stands for Application Program Interface. It is a means to exchange structure data between servers primarily a json data. An example of api:https://restcountries.eu/rest/v2/all. Let's read this API using _requests_ module. ```py import requests url = 'https://restcountries.eu/rest/v2/all' # countries api response = requests.get(url) # opening a network and fetching a data print(response) # response object print(response.status_code) # status code, success:200 countries = response.json() print(countries[:1]) # we sliced only the first country, remove the slicing to see all countries ``` ```sh 200 [{'alpha2Code': 'AF', 'alpha3Code': 'AFG', 'altSpellings': ['AF', 'Afġānistān'], 'area': 652230.0, 'borders': ['IRN', 'PAK', 'TKM', 'UZB', 'TJK', 'CHN'], 'callingCodes': ['93'], 'capital': 'Kabul', 'cioc': 'AFG', 'currencies': [{'code': 'AFN', 'name': 'Afghan afghani', 'symbol': '؋'}], 'demonym': 'Afghan', 'flag': 'https://restcountries.eu/data/afg.svg', 'gini': 27.8, 'languages': [{'iso639_1': 'ps', 'iso639_2': 'pus', 'name': 'Pashto', 'nativeName': 'پښتو'}, {'iso639_1': 'uz', 'iso639_2': 'uzb', 'name': 'Uzbek', 'nativeName': 'Oʻzbek'}, {'iso639_1': 'tk', 'iso639_2': 'tuk', 'name': 'Turkmen', 'nativeName': 'Türkmen'}], 'latlng': [33.0, 65.0], 'name': 'Afghanistan', 'nativeName': 'افغانستان', 'numericCode': '004', 'population': 27657145, 'region': 'Asia', 'regionalBlocs': [{'acronym': 'SAARC', 'name': 'South Asian Association for Regional Cooperation', 'otherAcronyms': [], 'otherNames': []}], 'subregion': 'Southern Asia', 'timezones': ['UTC+04:30'], 'topLevelDomain': ['.af'], 'translations': {'br': 'Afeganistão', 'de': 'Afghanistan', 'es': 'Afganistán', 'fa': 'افغانستان', 'fr': 'Afghanistan', 'hr': 'Afganistan', 'it': 'Afghanistan', 'ja': 'アフガニスタン', 'nl': 'Afghanistan', 'pt': 'Afeganistão'}}] ``` We use _json()_ method from response object, if the we are fetching JSON data. For txt, html, xml and other file formats we can use _text_. ### Creating a package We organize a large number of files in different folders and subfolders based on some criteria, so that we can find and manage them easily. As you know, a module can contain multiple objects, such as classes, functions, etc. A package can contain one or more relevant modules.A package is actually a folder containing one or more module files. Let's create a package named mypackage, using the following steps: Create a new folder named mypacakge inside 30DaysOfPython folder Create an empty **init**.py file in the mypackage folder. Create modules arithmetic.py and greet.py with following code: ```py # mypackage/arithmetics.py # arithmetics.py def add_numbers(*args): total = 0 for num in args: total += num return total def subtract(a, b): return (a - b) def multiple(a, b): return a * b def division(a, b): return a / b def remainder(a, b): return a % b def power(a, b): return a ** b ``` ```py # mypackage/greet.py # greet.py def greet_person(firstname, lastname): return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!' ``` The folder structure of your package should look like this: ```sh ─ mypackage ├── __init__.py ├── arithmetic.py └── greet.py ``` Now let's open the python interactive shell and try the package we have created: ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from mypackage import arithmetics >>> arithmetics.add_numbers(1,2,3,5) 11 >>> arithmetics.subtract(5, 3) 2 >>> arithmetics.multiple(5, 3) 15 >>> arithmetics.division(5, 3) 1.6666666666666667 >>> arithmetics.remainder(5, 3) 2 >>> arithmetics.power(5, 3) 125 >>> from mypackage import greet >>> greet.greet_person('Asabeneh', 'Yetayeh') 'Asabeneh Yetayeh, welcome to 30DaysOfPython Challenge!' >>> ``` As you can see our package works perfect. The package folder contains a special file called __init__.py which stores the package's content. If we put __init__.py in the package folder, python start recognizes it as a package. The __init__.py exposes specified resources from its modules to be imported to other python files. An empty __init__.py file makes all functions available when a package is imported. The __init__.py is essential for the folder to be recognized by Python as a package. ### Further information about packages - Database - SQLAlchemy or SQLObject - Object oriented access to several different database systems - _pip install SQLAlchemy_ - Web Development - Django - High-level web framework. - _pip install django_ - Flask - microframework for Python based on Werkzeug, Jinja 2. (It's BSD licensed) - _pip install flask_ - HTML Parser - [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) - HTML/XML parser designed for quick turnaround projects like screen-scraping, will accept bad markup. - _pip install beautifulsoup4_ - PyQuery - implements jQuery in Python; faster than BeautifulSoup, apparently. - XML Processing - ElementTree - The Element type is a simple but flexible container object, designed to store hierarchical data structures, such as simplified XML infosets, in memory. --Note: Python 2.5 and up has ElementTree in the Standard Library - GUI - PyQt - Bindings for the cross-platform Qt framework. - TkInter - The traditional Python user interface toolkit. - Data Analysis, Data Science and Machine learning - Numpy: Numpy(numeric python) is known as one of the most popular machine learning library in Python. - Pandas: is a machine learning library in Python that provides data structures of high-level and a wide variety of tools for analysis. - SciPy: SciPy is a machine learning library for application developers and engineers. SciPy library contains modules for optimization, linear algebra, integration, image processing, and statistics. - Scikit-Learn: It is NumPy and SciPy. It is considered as one of the best libraries for working with complex data. - TensorFlow: is a machine learning library built by Google. - Keras: is considered as one of the coolest machine learning libraries in Python. It provides an easier mechanism to express neural networks. Keras also provides some of the best utilities for compiling models, processing data-sets, visualization of graphs, and much more. - Network: - requests: is a package which we can use to send requests to a server(GET, POST, DELETE, PUT) - _pip install requests_ ## Exercises: Day 20 1. Read this url and find out the 10 most frequent words.romeo_and_juliet = 'http://www.gutenberg.org/files/1112/1112.txt' 1. Read the cats api and cats_api = 'https://api.thecatapi.com/v1/breeds' and find the avarage weight of cat in metric unit. 1. Read the countries api and find out the 10 largest countries 1. UCI is one the most common place for get data set for data science and machine learning. Read the content of UCL(http://mlr.cs.umass.edu/ml/datasets.html). Without library it will be difficult, you may try it with BeautifulSoup4 # 📘 Day 21 ## Classes and Objects Python is an object oriented programming language. Everything in Python is an object, with its properties and methods. A number, string, list, dictionary,tuple, set etc. used in a program is an object of a corresponding built-in class. We create class to create an object. A Class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class. We have been working with classes and objects right from the beginning of these challenge unknowingly. Every element in a Python program is an object of a class. Let's check if everything in python is class: ```py Last login: Tue Dec 10 09:35:28 on console asabeneh@Asabeneh:~$ python Python 3.7.5 (default, Nov 1 2019, 02:16:32) [Clang 11.0.0 (clang-1100.0.33.8)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> num = 10 >>> type(num) >>> string = 'string' >>> type(string) >>> boolean = True >>> type(boolean) >>> lst = [] >>> type(lst) >>> tpl = () >>> type(tpl) >>> set1 = set() >>> type(set1) >>> dct = {} >>> type(dct) ``` ### Creating a Class To create a class we need the key word **class** followed by colon. Class name should be **CamelCase**. ```sh # syntax class ClassName: code goes here ``` **Example:** ```py class Person: pass ``` ```sh <__main__.Person object at 0x10804e510> ``` ### Creating an Object We can create an object by calling the class. ```py p = Person() print(p) ``` ### Class Constructor In the above examples, we have created an object from the Person class. However, Class without a constructor is not really useful in real applications. Let's use constructor function to make our class more useful. Like the constructor function in Java or JavaScript, python has also a builtin _**init**()_ constructor function. The _**init**_ constructor function has self parameter which is a reference to the current instance of the class **Examples:** ```py class Person: def __init__ (self, name): self.name =name p = Person('Asabeneh') print(p.name) print(p) ``` ```sh # output Asabeneh ``` Let's add more parameter to the constructor function. ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.firstname) print(p.lastname) print(p.age) print(p.country) print(p.city) ``` ```sh # output Asabeneh Yetayeh 250 Finland Helsinki ``` ### Object Methods Objects can have methods. The methods are functions which are belongs to the object. **Example:** ```py class Person: def __init__(self, firstname, lastname, age, country, city): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} year old. He lives in {self.city}, {self.country}' p = Person('Asabeneh', 'Yetayeh', 250, 'Finland', 'Helsinki') print(p.person_info()) ``` ```sh # output Asabeneh Yetayeh is 250 year old. He lives in Helsinki, Finland ``` ### Object default methods Sometimes, you may want to have a default values for you object methods. If we give a default values for the parameters in the constructor, we can avoid error when we call or instantiate our class without parameters. Let's see how it looks using example. **Example:** ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} year old. He lives in {self.city}, {self.country}.' p1 = Person() print(p1.person_info()) p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) ``` ```sh # output Asabeneh Yetayeh is 250 year old. He lives in Helsinki, Finland. John Doe is 30 year old. He lives in Noman city, Nomanland. ``` ### Method to modify class default values In the example below, the person class, all the constructor parameters have default values and in addition to that we have a skills default value which we can access it using method. Let's create add_skill method to add skill to the skills list. ```py class Person: def __init__(self, firstname='Asabeneh', lastname='Yetayeh', age=250, country='Finland', city='Helsinki'): self.firstname = firstname self.lastname = lastname self.age = age self.country = country self.city = city self.skills = [] def person_info(self): return f'{self.firstname} {self.lastname} is {self.age} year old. He lives in {self.city}, {self.country}.' def add_skill(self, skill): self.skills.append(skill) p1 = Person() print(p1.person_info()) p1.add_skill('HTML') p1.add_skill('CSS') p1.add_skill('JavaScript') p2 = Person('John', 'Doe', 30, 'Nomanland', 'Noman city') print(p2.person_info()) print(p1.skills) print(p2.skills) ``` ```sh # output Asabeneh Yetayeh is 250 year old. He lives in Helsinki, Finland. John Doe is 30 year old. He lives in Noman city, Nomanland. ['HTML', 'CSS', 'JavaScript'] [] ``` ### Inheritance Using inheritance we can reuse parent class code. Inheritance allows us to define a class that inherits all the methods and properties from another class. The parent class or super or base class is the class which gives all the methods and properties. Child class is the class the inherits from another class. Let's see create a student class by inheriting from person class. ```py class Student(Person): pass s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh output Eyob Yetayeh is 30 year old. He lives in Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam is 28 year old. He lives in Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` We didn't call the _**init**()_ constructor in the child class. If we didn't call it we can access all the properties but if we call it once we access the parent properties by calling _super_. We can write add a new method to the child or we can overwrite the parent class by creating the same method name in the child class. When we add the **init**() function, the child class will no longer inherit the parent's **init**() function. ### Overriding parent method ```py class Student(Person): def __init__ (self, firstname='Asabeneh', lastname='Yetayeh',age=250, country='Finland', city='Helsinki', gender='male'): self.gender = gender super().__init__(firstname, lastname,age, country, city) def person_info(self): gender = 'He' if self.gender =='male' else 'She' return f'{self.firstname} {self.lastname} is {self.age} year old. {gender} lives in {self.city}, {self.country}.' s1 = Student('Eyob', 'Yetayeh', 30, 'Finland', 'Helsinki','male') s2 = Student('Lidiya', 'Teklemariam', 28, 'Finland', 'Espoo', 'female') print(s1.person_info()) s1.add_skill('JavaScript') s1.add_skill('React') s1.add_skill('Python') print(s1.skills) print(s2.person_info()) s2.add_skill('Organizing') s2.add_skill('Marketing') s2.add_skill('Digital Marketing') print(s2.skills) ``` ```sh Eyob Yetayeh is 30 year old. He lives in Helsinki, Finland. ['JavaScript', 'React', 'Python'] Lidiya Teklemariam is 28 year old. She lives in Espoo, Finland. ['Organizing', 'Marketing', 'Digital Marketing'] ``` We can use super() function or the parent name Person to automatically inherit the methods and properties from its parent. In the above example, we override the parant method. The child method has a different feature, it can identify if the gender is male or female and assign the proper pronoun(He/She). ## 💻 Exercises: Day 21 1. Python has the module called _statistics_ and we can use this module to do all the statistical caluculations. Hower to challlenge ourselves, let's try to develop a program which calculate measure of central tendency of a sample(mean, median, mode) and measure of variability(range, variance, standard deviation). In addition to those measures find the min, max, count, percentile, and frequency distribution of the sample. You can create a class called Statistics and create all the functions which do statistical calculations as method for the Statistics class. Check the output below. ```py ages = [31, 26, 34, 37, 27, 26, 32, 32, 26, 27, 27, 24, 32, 33, 27, 25, 26, 38, 37, 31, 34, 24, 33, 29, 26] print('Count:', data.count()) # 25 print('Sum: ', data.sum()) # 744 print('Min: ', data.min()) # 24 print('Max: ', data.max()) # 38 print('Range: ', data.range() # 14 print('Mean: ', data.mean()) # 30 print('Median: ',data.median()) # 29 print('Mode: ', data.mode()) # {'mode': 26, 'count': 5} print('Variance: ',data.var()) # 17.5 print('Standard Deviation: ', data.std()) # 4.2 print('Variance: ',data.var()) # 17.5 print('Frequency Distribution: ',data.freq_dist()) # [(20.0, 26), (16.0, 27), (12.0, 32), (8.0, 37), (8.0, 34), (8.0, 33), (8.0, 31), (8.0, 24), (4.0, 38), (4.0, 29), (4.0, 25)] ``` ```sh # you output should look like this print(data.describe()) Count: 25 Sum: 744 Min: 24 Max: 38 Range: 14 Mean: 30 Median: 29 Mode: (26, 5) Variance: 17.5 Standard Deviation: 4.2 Frequency Distribution: [(20.0, 26), (16.0, 27), (12.0, 32), (8.0, 37), (8.0, 34), (8.0, 33), (8.0, 31), (8.0, 24), (4.0, 38), (4.0, 29), (4.0, 25)] ``` 1. Create a class called PersonAccount. It has firstname, lastname, incomes, expenses properties and it has total_income, total_expense, account_info,add_income, add_expense and account_balance methods. Incomes is a set of incomes and its description and the same goes for expenses. [<< Part 6 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) | [Part 8 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) --- ================================================ FILE: old_files/readme22-24.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 22](#%f0%9f%93%98-day-22) - [Python Web Scraping](#python-web-scraping) - [What is web scrapping](#what-is-web-scrapping) - [💻 Exercises: Day 22](#%f0%9f%92%bb-exercises-day-22) - [📘 Day 23](#%f0%9f%93%98-day-23) - [Setting up Virtual Environments](#setting-up-virtual-environments) - [💻 Exercises: Day 23](#%f0%9f%92%bb-exercises-day-23) - [📘 Day 24](#%f0%9f%93%98-day-24) - [Python for Statistical Analysis](#python-for-statistical-analysis) - [Statistics](#statistics) - [Data](#data) - [Statistics Module](#statistics-module) - [NumPy](#numpy) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 22 ## Python Web Scraping ### What is web scrapping The internet is full huge amount of data which can be used for different uses. To collect this data we need to know how scrape data on a website. Web scraping is the process of extracting and collecting data from websites and storing the data into a local machine or into a database. In this section, we will use beautifulsoup and requests package to scape data. The beautifulsoup package we are using beautifulsoup 4. To start scraping a website you need _requests_, _beautifoulSoup4_ and _website_ to be scrapped. ```sh pip install requests pip installl install beautifulsoup4 ``` To scrape a data on a website it needs basic understanding of HTML tags and css selectors. We target content from a website using HTML tag, class or an id. Let's import the requests and BeautifulSoup module ```py import requests from bs4 import BeautifulSoup ``` Let's declare url variable for the website which we are going to scrape. ```py import requests from bs4 import BeautifulSoup url = 'http://mlr.cs.umass.edu/ml/datasets.html' # Lets use the requests get method to fetch the data from url response = requests.get(url) # lets check the status status = response.status_code print(status) # 200 means the fetching was successful ``` ```sh 200 ``` Using beautifulSoup to parse content from the page ```py import requests from bs4 import BeautifulSoup url = 'http://mlr.cs.umass.edu/ml/datasets.html' response = requests.get(url) content = response.content # we get all the content from the website soup = BeautifulSoup(content, 'html.parser') # beautiful soup will give a chance to parse print(soup.title) # UCI Machine Learning Repository: Data Sets print(soup.title.get_text()) # UCI Machine Learning Repository: Data Sets print(soup.body) # gives the whole page on the website # print(soup.body) print(response.status_code) tables = soup.find_all('table', {'cellpadding':'3'}) # We are targeting the table with cellpadding attribute and the attribute value # We can select using id, class or HTML tag , for more information check the beautifulsoup doc table = tables[0] # the result is list, we are taking out from the list for td in table.find('tr').find_all('td'): print(td.text) ``` If you run the above code, you can see that the extraction is half done. You can continue doing it because it is part of exercise 1. For reference check the beautiful [soup documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#quick-start) ## 💻 Exercises: Day 22 1. Extract the table in this url (http://mlr.cs.umass.edu/ml/datasets.html) and change it to a json file 2. Scrape the presidents table and store the data as json(https://en.wikipedia.org/wiki/List_of_presidents_of_the_United_States) # 📘 Day 23 ## Setting up Virtual Environments To start with project, it would be better to have a virtual environment. Virtual environment can help us to create an isolated or separate environment. This will help us to avoid conflicts in dependencies across projects. If you write pip freeze on your terminal you will see all the installed packages on your computer. If we use virtualenv, we will access only packages which are specific for that project. Open your terminal and install virtualenv ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip install virtualenv ``` After installing the virtualenv package go to your project folder and create a virtual env by writing: ``sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project\$ virtualenv venv ```` The venv name could another name too but I prefer to call it venv. Let's check if the the venv is create by using ls command. ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ls venv/ ```` Let's activate the virtual environment by writing the following command at our project folder. ```sh asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ source venv/bin/activate ``` After you write the activation command, your project directory will start with venv. See the example below. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ``` Now, lets check the available package in this project by writing pip freeze. You will not see any package. We are going to do a small flask project so let's install flask to this project. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip install Flask ``` Now, let's write pip freeze to see the install packages in the project ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 ``` When you finish you should dactivate active project using _deactivate_. ```sh (venv) asabeneh@Asabeneh:~/Desktop/30DaysOfPython$ deactivate ``` The necessary modules to work on flask are installed. Now, you project directory is ready for flask project. You should include the venv to your .gitignore file not to push it to github. ## 💻 Exercises: Day 23 1. Create a project directory with a virtual environment based on the example give above. # 📘 Day 24 ## Python for Statistical Analysis ## Statistics Statistics is the discipline that studies the _collection_, _organization_, _displaying_, _analysis_, _interpretation_ and _presentation_ of data. Statistics is a branch of mathematics that is recommended to be a prerequisite for data science and machine learning. Statistics is a very broad field but we will focus in this section only on the most relevant part. After completing this challenge, you may go to web development, data analysis, machine learning and data science path. Whatever path you may follow, at some point in your career you will get data which you may work on. Having some statistical knowledge will help you to make decision based on data, *data tells as they say*. ## Data What is data? Data is any set of characters that is gathered and translated for some purpose, usually analysis. It can be any character, including text and numbers, pictures, sound, or video. If data is not put into context, it doesn't give any sense to a human or computer. To make sense from data we need to work on the data using different tools. The work flow of data analysis, data science or machine learning starts from data. Data can be provided from some data source or it can be created. There are structured and and unstructure data. Data can be found as small or big data format. Most of the data types we will get have been covered in the file handling section. ## Statistics Module The python _statistics_ module provides functions for calculating mathematical statistics of numeric data. The module is not intended to be a competitor to third-party libraries such as NumPy, SciPy, or proprietary full-featured statistics packages aimed at professional statisticians such as Minitab, SAS and Matlab. It is aimed at the level of graphing and scientific calculators. # NumPy In the first section we defined python as a great general-purpose programming language on its own, but with the help of other popular libraries (numpy, scipy, matplotlib, pandas etc) it becomes a powerful environment for scientific computing. Numpy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with arrays. So far, we have been using vscode but from now on I would recommend using Jupyter Notebook. To access jupter notebook let's install [anaconda](https://www.anaconda.com/). If you are using anaconda most of the common packages are included and you don't have install packages if you installed anaconda. [continue](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/numpy.md) [<< Part 7 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) | [Part 9 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) --- ================================================ FILE: old_files/readme25-27.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) - [📘 Day 25](#%f0%9f%93%98-day-25) - [Pandas](#pandas) - [Importing pandas](#importing-pandas) - [Creating Pandas Series with default index](#creating-pandas-series-with-default-index) - [Creating Pandas Series with custom index](#creating-pandas-series-with-custom-index) - [Creating Pandas Series from a dictionary](#creating-pandas-series-from-a-dictionary) - [Creating a constant pandas series](#creating-a-constant-pandas-series) - [Creating a pandas series using linspace](#creating-a-pandas-series-using-linspace) - [DataFrames](#dataframes) - [Creating DataFrames from list of lists](#creating-dataframes-from-list-of-lists) - [Creating DataFrame using Dictionary](#creating-dataframe-using-dictionary) - [Creating DataFrams from list of dictionaries](#creating-dataframs-from-list-of-dictionaries) - [Reading CSV File using pandas](#reading-csv-file-using-pandas) - [Data Exploration](#data-exploration) - [Modifying DataFrame](#modifying-dataframe) - [Create a DataFrame](#create-a-dataframe) - [Adding new column](#adding-new-column) - [Modifying column values](#modifying-column-values) - [Formating DataFrame column](#formating-dataframe-column) - [Checking data types of Column values](#checking-data-types-of-column-values) - [Boolean Indexing](#boolean-indexing) - [Exercises: Day 25](#exercises-day-25) - [📘 Day 26](#%f0%9f%93%98-day-26) - [Python for Web](#python-for-web) - [Flask](#flask) - [Folder structure](#folder-structure) - [Setting up your project directory](#setting-up-your-project-directory) - [Creating routes](#creating-routes) - [Creating templates](#creating-templates) - [Python Script](#python-script) - [Navigation](#navigation) - [Creating a layout](#creating-a-layout) - [Deployment](#deployment) - [Creating Heroku account](#creating-heroku-account) - [Login to Heroku](#login-to-heroku) - [Create requirements and Procfile](#create-requirements-and-procfile) - [Pushing project to heroku](#pushing-project-to-heroku) - [Exercises: Day 26](#exercises-day-26) - [📘 Day 27](#%f0%9f%93%98-day-27) - [Python with MongoDB](#python-with-mongodb) - [MongoDB](#mongodb) - [SQL versus NoSQL](#sql-versus-nosql) - [Getting Connection String(MongoDB URI)](#getting-connection-stringmongodb-uri) - [Connecting Flask application to MongoDB Cluster](#connecting-flask-application-to-mongodb-cluster) - [Creating a database and collection](#creating-a-database-and-collection) - [Inserting many documents to collection](#inserting-many-documents-to-collection) - [MongoDB Find](#mongodb-find) - [Find with Query](#find-with-query) - [Find query with modifier](#find-query-with-modifier) - [Limiting documents](#limiting-documents) - [Find with sort](#find-with-sort) - [Update with query](#update-with-query) - [Delete Document](#delete-document) - [Drop a collection](#drop-a-collection) - [💻 Exercises: Day 27](#%f0%9f%92%bb-exercises-day-27) GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback # 📘 Day 25 ## Pandas Pandas is an open source,high-performance, easy-to-use data structures and data analysis tools for the Python programming language. Pandas adds data structures and tools designed to work with table-like data which is Series and Data Frames Pandas provides tools for data manipulation: reshaping, merging, sorting, slicing, aggregation and imputation. ```py pip install conda conda install pandas ``` Pandas data structure is based on *Series* and *DataFrames* A series is a column and a DataFrame is a multidimensional table made up of collection of series. In order to create a pandas series we should use numpy to create a one dimensional arrays or a python list. Let's see an example of a series: Names pandas Series ![pandas series](images/pandas-series-1.png) Countries Series ![pandas series](images/pandas-series-2.png) Cities Series ![pandas series](images/pandas-series-3.png) As you can see, pandas series is just one column data. If we want to have multiple columns we use data frames. The example below shows pandas DataFrames. Let's see, an example of a pandas data frame: ![Pandas data frame](images/pandas-dataframe-1.png) Data from is a collection of rows and columns. Look at the table below it has many columns than the above ![Pandas data frame](images/pandas-dataframe-2.png) Next, we will see how to import pandas and how to create Series and DataFrames using pandas ## Importing pandas ```python import pandas as pd # importing pandas as pd import numpy as np # importing numpy as np ``` ### Creating Pandas Series with default index ```python nums = [1, 2, 3, 4,5] s = pd.Series(nums) s ``` 0 1 1 2 2 3 3 4 4 5 dtype: int64 ### Creating Pandas Series with custom index ```python nums = [1, 2, 3, 4, 5] s = pd.Series(nums, index=[1, 2, 3, 4, 5]) s ``` 1 1 2 2 3 3 4 4 5 5 dtype: int64 ```python fruits = ['Orange','Banana','Mangao'] fruits = pd.Series(fruits, index=[1, 2, 3]) fruits ``` 1 Orange 2 Banana 3 Mangao dtype: object ### Creating Pandas Series from a dictionary ```python dct = {'name':'Asabeneh','country':'Finland','city':'Helsinki'} ``` ```python s = pd.Series(dct) s ``` name Asabeneh country Finland city Helsinki dtype: object ### Creating a constant pandas series ```python s = pd.Series(10, index = [1, 2,3]) s ``` 1 10 2 10 3 10 dtype: int64 ### Creating a pandas series using linspace ```python s = pd.Series(np.linspace(5, 20, 10)) # linspace(starting, end, items) s ``` 0 5.000000 1 6.666667 2 8.333333 3 10.000000 4 11.666667 5 13.333333 6 15.000000 7 16.666667 8 18.333333 9 20.000000 dtype: float64 ## DataFrames Pandas data frames can be created in different ways. ### Creating DataFrames from list of lists ```python data = [ ['Asabeneh', 'Finland', 'Helsink'], ['David', 'UK', 'London'], ['John', 'Sweden', 'Stockholm'] ] df = pd.DataFrame(data, columns=['Names','Country','City']) df ```
Names Country City
0 Asabeneh Finland Helsink
1 David UK London
2 John Sweden Stockholm
### Creating DataFrame using Dictionary ```python data = {'Name': ['Asabeneh', 'David', 'John'], 'Country':[ 'Finland', 'UK', 'Sweden'], 'City': ['Helsiki', 'London', 'Stockholm']} df = pd.DataFrame(data) df ```
Name Country City
0 Asabeneh Finland Helsiki
1 David UK London
2 John Sweden Stockholm
```python ``` ### Creating DataFrams from list of dictionaries ```python data = [ {'Name': 'Asabeneh', 'Country': 'Finland', 'City': 'Helsinki'}, {'Name': 'David', 'Country': 'UK', 'City': 'London'}, {'Name': 'John', 'Country': 'Sweden', 'City': 'Stockholm'}] df = pd.DataFrame(data) df ```
Name Country City
0 Asabeneh Finland Helsinki
1 David UK London
2 John Sweden Stockholm
## Reading CSV File using pandas ```python import pandas as pd df = pd.read_csv('./data/weight-height.csv') ``` ### Data Exploration Let's read only the first 5 rows using head() ```python df.head() # give five rows we can increase the number of rows by passing argument to the head() method ```
Gender Height Weight
0 Male 73.847017 241.893563
1 Male 68.781904 162.310473
2 Male 74.110105 212.740856
3 Male 71.730978 220.042470
4 Male 69.881796 206.349801
As you can see the csv file has three rows:Gender, Height and Weight. But we don't know the number of rows. Let's use shape meathod. ```python df.shape # as you can see 10000 rows and three columns ``` (10000, 3) Let's get all the columns using columns. ```python df.columns ``` Index(['Gender', 'Height', 'Weight'], dtype='object') Let's read only the last 5 rows using tail() ```python df.tail() # tails give the last five rows, we can increase the rows by passing argument to tail method ```
Gender Height Weight
9995 Female 66.172652 136.777454
9996 Female 67.067155 170.867906
9997 Female 63.867992 128.475319
9998 Female 69.034243 163.852461
9999 Female 61.944246 113.649103
Now, lets get specif colums using the column key ```python heights = df['Height'] # this is now a a series ``` ```python heights ``` 0 73.847017 1 68.781904 2 74.110105 3 71.730978 4 69.881796 ... 9995 66.172652 9996 67.067155 9997 63.867992 9998 69.034243 9999 61.944246 Name: Height, Length: 10000, dtype: float64 ```python weights = df['Weight'] # this is now a series ``` ```python weights ``` 0 241.893563 1 162.310473 2 212.740856 3 220.042470 4 206.349801 ... 9995 136.777454 9996 170.867906 9997 128.475319 9998 163.852461 9999 113.649103 Name: Weight, Length: 10000, dtype: float64 ```python len(heights) == len(weights) ``` True ```python heights.describe() # give statistical information about height data ``` count 10000.000000 mean 66.367560 std 3.847528 min 54.263133 25% 63.505620 50% 66.318070 75% 69.174262 max 78.998742 Name: Height, dtype: float64 ```python weights.describe() ``` count 10000.000000 mean 161.440357 std 32.108439 min 64.700127 25% 135.818051 50% 161.212928 75% 187.169525 max 269.989699 Name: Weight, dtype: float64 ```python df.describe() # describe can also give statistical information from a datafrom ```
Height Weight
count 10000.000000 10000.000000
mean 66.367560 161.440357
std 3.847528 32.108439
min 54.263133 64.700127
25% 63.505620 135.818051
50% 66.318070 161.212928
75% 69.174262 187.169525
max 78.998742 269.989699
## Modifying DataFrame Modifying a DataFrame * We can create a new DataFrame * We can create a new column and add to DataFrame, * we can remove an existing column from DataFrame, * we can modify an existing column from DataFrame, * we can change the data type of column values from DataFrame ### Create a DataFrame All the time, first we import the necessary packages. Now, lets import pandas and numpy two best friends ever. ```python import pandas as pd import numpy as np data = [ {"Name": "Asabeneh", "Country":"Finland","City":"Helsinki"}, {"Name": "David", "Country":"UK","City":"London"}, {"Name": "John", "Country":"Sweden","City":"Stockholm"}] df = pd.DataFrame(data) df ```
Name Country City
0 Asabeneh Finland Helsinki
1 David UK London
2 John Sweden Stockholm
Adding column in DataFrame is like adding a key in dictionary. First let's use the previous example to create a DataFrame. After we create the DataFrame, we will start modifying the columns and column values. ### Adding new column Let's add a weight column in the DataFrame ```python weights = [74, 78, 69] df['Weight'] = weights df ```
Name Country City Weight
0 Asabeneh Finland Helsinki 74
1 David UK London 78
2 John Sweden Stockholm 69
Let's add a height column in the DataFrame ```python heights = [173, 175, 169] df['Height'] =heights df ```
Name Country City Weight Height
0 Asabeneh Finland Helsinki 74 173
1 David UK London 78 175
2 John Sweden Stockholm 69 169
As you can see from the above DataFrame, now we new added columns, the Weight and Height. Let's add one additional column by called BMI(Body Mass Index) by calculating their BMI using thier mass and height. BMI is mass divided by height square meter(Weight/Height * Height). As you can see, the hieght is in centimeter, so we shoud change the height to meter. So, let's modify the height row ### Modifying column values ```python df['Height'] = df['Height'] * 0.01 df ```
Name Country City Weight Height
0 Asabeneh Finland Helsinki 74 1.73
1 David UK London 78 1.75
2 John Sweden Stockholm 69 1.69
```python # Using function makes our code clean but you can just calculate the bmi without function def calculate_bmi (): weights = df['Weight'] heights = df['Height'] bmi = [] for w,h in zip(weights, heights): b = w/(h*h) bmi.append(b) return bmi bmi = calculate_bmi() ``` ```python df['BMI'] = bmi df ```
Name Country City Weight Height BMI
0 Asabeneh Finland Helsinki 74 1.73 24.725183
1 David UK London 78 1.75 25.469388
2 John Sweden Stockholm 69 1.69 24.158818
### Formating DataFrame column The BMI of the above DataFrame has is float with many significant digits after decimal. Let's make it to have only one significant digit after point. ```python df['BMI'] = round(df['BMI'], 1) df ```
Name Country City Weight Height BMI
0 Asabeneh Finland Helsinki 74 1.73 24.7
1 David UK London 78 1.75 25.5
2 John Sweden Stockholm 69 1.69 24.2
The information in the DataFrame seems not yet complete, let's add birth year and current year columns. ```python birth_year = ['1769', '1985', '1990'] current_year = pd.Series(2019, index=[0, 1,2]) df['Birth Year'] = birth_year df['Current Year'] = current_year df ```
Name Country City Weight Height BMI Birth Year Current Year
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2019
1 David UK London 78 1.75 25.5 1985 2019
2 John Sweden Stockholm 69 1.69 24.2 1990 2019
## Checking data types of Column values ```python df.Weight.dtype ``` dtype('int64') ```python df['Birth Year'].dtype # it give string object , we should change this to number ``` dtype('O') ```python df['Birth Year'] = df['Birth Year'].astype('int') df['Birth Year'].dtype # let's check the data type now ``` dtype('int64') ```python df['Current Year'] = df['Current Year'].astype('int') df['Current Year'].dtype ``` dtype('int64') Now, the column values of birth year and current year are integers. We can calculate the age. ```python ages = df['Current Year'] - df['Birth Year'] ages ``` 0 250 1 34 2 29 dtype: int64 ```python df['Ages'] = ages df ```
Name Country City Weight Height BMI Birth Year Current Year Ages
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2019 250
1 David UK London 78 1.75 25.5 1985 2019 34
2 John Sweden Stockholm 69 1.69 24.2 1990 2019 29
The person in the first row lives 250 years. It is unlikely for someone to live 250 years. Either it is a typo or the data is cooked. So lets fill that data with average of the columns without including outlier. mean = (34 + 29)/ 2 ```python mean = (34 + 29)/ 2 mean ``` 31.5 ### Boolean Indexing ```python df[df['Ages'] > 120] ```
Name Country City Weight Height BMI Birth Year Current Year Ages
0 Asabeneh Finland Helsinki 74 1.73 24.7 1769 2019 250
```python df[df['Ages'] < 120] ```
Name Country City Weight Height BMI Birth Year Current Year Ages
1 David UK London 78 1.75 25.5 1985 2019 34
2 John Sweden Stockholm 69 1.69 24.2 1990 2019 29
```python df['Ages'] = df[df['Ages'] > 120] ``` ## Exercises: Day 25 1. Read the hacker_ness.csv file from data directory 1. Get the first five rows 1. Get the last five rows 1. Get the title column as pandas series 1. Count the number of rows and columns * Filter the titles which contain python * Filter the titles which contain JavaScript * Explore the data and make sense of the data # 📘 Day 26 ## Python for Web Python is a general purpose programming language and it can be used for many places. In this section, we will see how we use python for the web. There are many python web frame works. Django and Flask are the most popular ones. Today, we will see how to use Flask for web development. ### Flask Flask is a web development framework written in python. Flask uses Jinja2 template engine. Flask can be also used with other modern frond libraries such as react. If you did not install the virtualenv package ye install it first. Virtual environment will allows to isolate project dependencies. #### Folder structure After completing all the step your project file structure should look like this: ```sh ├── Procfile ├── app.py ├── env │   ├── bin ├── requirements.txt ├── static │   └── css │   └── main.css └── templates ├── about.html ├── home.html ├── layout.html ├── post.html └── result.html ``` ### Setting up your project directory Follow, the following steps to get started with Flask. Step 1: install virtualenv using the following command. ```sh pip install virtualenv ``` Step 2: ```sh asabeneh@Asabeneh:~/Desktop$ mkdir python_for_web asabeneh@Asabeneh:~/Desktop$ cd python_for_web/ asabeneh@Asabeneh:~/Desktop/python_for_web$ virtualenv env asabeneh@Asabeneh:~/Desktop/python_for_web$ source env/bin/activate (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip install Flask (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` We created a project director named python*for_web. Inside the project we created a virtual environment \_env* which could be any name but I prefer to call it _env_. Then we activated the virtual environment. We used pip freeze to check the installed packages in the project directory. The result of pip freeze was empty because a package was not installed yet. Now, let's create app.py file in the project directory and write the following code. The app.py file will be the main file in the project. The following code has flask module, os module. ### Creating routes The home route. ```py # let's import the flask from flask import Flask import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return '

Welcome

' @app.route('/about') def about(): return '

About us

' if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` After you run _python app.py_ check local host 5000. Let's add additional route. Creating about route ```py # let's import the flask from flask import Flask import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return '

Welcome

' @app.route('/about') def about(): return '

About us

' if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Now, we added the about route in the above code. How about if we want to render an HTML file instead of string? It is possible to render HTML file using the function _render_templae_. Let's create a folder called templates and create home.html and about.html in the project directory. Let's also import the _render_template_ function from flask. ### Creating templates Create the HTML files inside templates folder. home.html ```html Home

Welcome Home

``` about.html ```html About

About Us

``` ### Python Script app.py ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): return render_template('home.html') @app.route('/about') def about(): return render_template('about.html') if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` As you can see to go to different pages or to navigate we need a navigation. Let's add a link to each page or let's create a layout which we use to every page. ### Navigation ```html
``` Now, we can navigate between the pages using the above link. Let's create additional page which handle form data. You can call it any name, I like to call it post.html. We can inject data to the HTML files using Jinja2 template engine. ```py # let's import the flask from flask import Flask, render_template, request, redirect, url_for import os # importing operating system module app = Flask(__name__) @app.route('/') # this decorator create the home route def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 Days Of Python Programming' return render_template('home.html', techs=techs, name = name, title = 'Home') @app.route('/about') def about(): name = '30 Days Of Python Programming' return render_template('about.html', name = name, title = 'About Us') @app.route('/post') def post(): name = 'Text Analyzer' return render_template('post.html', name = name, title = name) if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Let's see the templates too: home.html ```html Home

Welcome to {{name}}

{% for tech in techs %}
  • {{tech}}
{% endfor %} ``` about.html ```html About Us

About Us

{{name}}

``` ### Creating a layout In the template files, there are lots of repeated codes, we can write a layout and we can remove the repetition. Let's create layout.html inside the templates folder. After we create the layout we will import to every file. layout.html ```html {% if title %} 30 Days of Python - {{ title}} {% else %} 30 Days of Python {% endif %}
{% block content %} {% endblock %}
``` Now, lets remove all the repeated code in the other template files and import the layout.html. The href is using _url_for_ function with the name of the route function to connect each navigation route. home.html ```html {% extends 'layout.html' %} {% block content %}

Welcome to {{name}}

This application clean texts and analyse the number of word, characters and most frequent words in the text. Check it out by click text analyzer at the menu. You need the following technologies to build this web application:

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
{% endblock %} ``` about.html ```html {% extends 'layout.html' %} {% block content %}

About {{name}}

This is a 30 days of python programming challenge. If you have been coding this far, you are awesome. Congratulations for the job well done!

{% endblock %} ``` post.html ```html {% extends 'layout.html' %} {% block content %}

Text Analyzer

{% endblock %} ``` Request methods, there are different request methods(GET, POST, PUT, DELETE) are the common request methods which allow us to do CRUD(Create Read Update Delete) operation. In the post, route we will use GET and POST method alternative depending on the type of request, check how it looks in the code below. The request method is a function to handle request methods and also to access form data. app.py ```py # let's import the flask from flask import Flask, render_template, request, redirect, url_for import os # importing operating system module app = Flask(__name__) # to stop caching static file app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0 @app.route('/') # this decorator create the home route def home (): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 Days Of Python Programming' return render_template('home.html', techs=techs, name = name, title = 'Home') @app.route('/about') def about(): name = '30 Days Of Python Programming' return render_template('about.html', name = name, title = 'About Us') @app.route('/result') def result(): return render_template('result.html') @app.route('/post', methods= ['GET','POST']) def post(): name = 'Text Analyzer' if request.method == 'GET': return render_template('post.html', name = name, title = name) if request.method =='POST': content = request.form['content'] print(content) return redirect(url_for('result')) if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` So far, we have seen how to use template and how to inject data to template, how to a common layout. Now, lets handle static file. Create a folder called static in the project director and create a folder called css. Inside css folder create main.css. Your main. css file will be linked to the layout.html. You don't have to write the css file, copy and use it. Let's move on to deployment. ### Deployment #### Creating Heroku account Heroku provides a free deployment service for both front end and fullstack applications. Create an account on [heroku](https://www.heroku.com/) and install the heroku [CLI](https://devcenter.heroku.com/articles/heroku-cli) for you machine. After installing heroku write the following command #### Login to Heroku ```sh asabeneh@Asabeneh:~$ heroku login heroku: Press any key to open up the browser to login or q to exit: ``` Let's see the result by clicking any key from the keyboard. When you press any key from you keyboard it will open the heroku login page and click the login page. Then you will local machine will be connected to the remote heroku server. If you are connected to remote server, you will see this. ```sh asabeneh@Asabeneh:~$ heroku login heroku: Press any key to open up the browser to login or q to exit: Opening browser to https://cli-auth.heroku.com/auth/browser/be12987c-583a-4458-a2c2-ba2ce7f41610 Logging in... done Logged in as asabeneh@gmail.com asabeneh@Asabeneh:~$ ``` #### Create requirements and Procfile Before we push our code to remote server, we need requirements - requirements.txt - Procfile ```sh (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ touch requirements.txt (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ pip freeze > requirements.txt (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ cat requirements.txt Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ touch Procfile (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ls Procfile env/ static/ app.py requirements.txt templates/ (env) asabeneh@Asabeneh:~/Desktop/python_for_web$ ``` The Procfile will have the command which run the application in the web server in our case on Heroku. ```sh web: python app.py ``` #### Pushing project to heroku Now, it is ready to be deployed. Steps to deploy the application on heroku 1. git init 2. git add . 3. git commit -m "commit message" 4. heroku create 'name of the app as one word' 5. git push heroku master 6. heroku open(to launch the deployed application) After this step you will get an application like [this](http://thirdaysofpython-practice.herokuapp.com/) ## Exercises: Day 26 1. You will build [this application](https://thirtydaysofpython-v1-final.herokuapp.com/). Only the text analyser part is left # 📘 Day 27 # Python with MongoDB Python is a backend technology and it can be connected with different data base applications such as MongoDB and SQL. ## MongoDB MongoDB is a NoSQL database. MongoDB stores data in a JSON like document which make MongoDB very flexible and scalable. Let's see the different terminologies of SQL and NoSQL databases. The following table will make the difference between SQL vs NoSQL databases. ### SQL versus NoSQL ![SQL versus NoSQL](./images/mongoDB/sql-vs-nosql.png) In this section we will focus on a NoSQL database MongoDB. Lets sign up on [mongoDB](https://www.mongodb.com/) by click on the sign in button then click register on the next page. ![MongoDB Sign up pages](./images/mongoDB/mongodb-signup-page.png) Complete the fields and click continue ![Mongodb register](./images/mongoDB/mongodb-register.png) Select the free plan ![Mongodb free plan](./images/mongoDB/mongodb-free.png) Choose the proximate free region and give any name for you cluster. ![Mongodb cluster name](./images/mongoDB/mongodb-cluster-name.png) Now, a free sandbox is created ![Mongodb sandbox](./images/mongoDB/mongodb-sandbox.png) All local host access ![Mongodb allow ip access](./images/mongoDB/mongodb-allow-ip-access.png) Add user and password ![Mongodb add user](./images/mongoDB/mongodb-add-user.png) Create a mongoDB uri link ![Mongodb create uri](./images/mongoDB/mongodb-create-uri.png) Select python 3.6 or above driver ![Mongodb python driver](./images/mongoDB/mongodb-python-driver.png) ### Getting Connection String(MongoDB URI) Copy the connection string only link and you get something like this ```sh mongodb+srv://asabeneh:@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` Don't worry about the url, it is a means to connect your application with mongoDB. Let's replace the password placeholder with the passed you use to add a user. **Example:** ```sh mongodb+srv://asabeneh:123123123@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority ``` Now, I replaced everything and the password is 123123 and the name of the database is thirty_days_python. This is just an example, your password must a bit strong than this. Python needs a mongoDB driver to access mongoDB database. We will use _pymongo_ with _dnspython_ to connect our application with mongoDB base . Inside your project directory install pymongo and dnspython. ```sh pip install pymongo dnspython ``` The "dnspython" module must be installed to use mongodb+srv:// URIs. The dnspython is a DNS toolkit for Python. It supports almost all record types. ### Connecting Flask application to MongoDB Cluster ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` When we run the above code we get the default mongoDB databases. ```sh ['admin', 'local'] ``` ### Creating a database and collection Let's create a database, database and collection in mongoDB will be created if it doesn't exist. Let's create a data base name _thirty_days_of_python_ and _students_ collection. To create a database ```sh db = client.name_of_databse # we can create a database like this or the second way db = client['name_of_database'] ``` ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) # Creating database db = client.thirty_days_of_python # Creating students collection and inserting a document db.students.insert_one({'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250}) print(client.list_database_names()) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` After we create a database, we also created a students collection and we used _insert_one_ method to insert a document. Now, the data _thirty_days_of_python_ and _students_ collection have been created and the document has been inserted. Check your mongoDB cluster and you will see both the database and the collection. Inside the collection, there will be a document. ```sh ['thirty_days_of_python', 'admin', 'local'] ``` If you see this on the mongoDB cluster, it means you have successfully created a database and a collection. ![Creating database and collection](./images/mongoDB/mongodb-creating_database.png) If you have seen on the figure, the document has been created with a long id which acts as a primary key. Every time we create a document mongoDB create and unique id for it. ### Inserting many documents to collection The _insert_one()_ method inserts one item at a time if we want to insert many documents at once either we use _insert_many()_ method or for loop. We can use for loop to inset many documents at once. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) students = [ {'name':'David','country':'UK','city':'London','age':34}, {'name':'John','country':'Sweden','city':'Stockholm','age':28}, {'name':'Sami','country':'Finland','city':'Helsinki','age':25}, ] for student in students: db.students.insert_one(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### MongoDB Find The find and findOne methods common method to find data in a collection in mongoDB database. It is similar to the SELECT statement in a MySQL database. Let's use the _find_one()_ method to get documents in the database collection. - \*find_one({"\_id": ObjectId("id"}): Gets the first occurrence if an id is not provided ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database student = db.students.find_one() print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Helsinki', 'city': 'Helsinki', 'age': 250} ``` The above query returns the first entry but we can target specific document using specific \_id. Let's do one example, let's use David's id to get David object. '\_id':ObjectId('5df68a23f106fe2d315bbc8c') ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module from bson.objectid import ObjectId # id object MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database student = db.students.find_one({'_id':ObjectId('5df68a23f106fe2d315bbc8c')}) print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` We have seen, how to use _find_one()_ using the above examples. Let's move one to _find()_ - _find()_: returns all the occurrence from a collection if we don't pass a query object. The object is pymongo.cursor object. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find() for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Helsinki', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` We can specify which fields to return by passing second object in the _find({}, {})_. 0 means not include and 1 means include but we can not mix 0 and 1, except for \_id. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find({}, {"_id":0, "name": 1, "country":1}) # 0 means not include and 1 means include for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'name': 'Asabeneh', 'country': 'Finland'} {'name': 'David', 'country': 'UK'} {'name': 'John', 'country': 'Sweden'} {'name': 'Sami', 'country': 'Finland'} ``` ### Find with Query In mongoDB find take a query object. We can pass a query object and we can filter the documents we like to filter out. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Query with modifiers ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Find query with modifier ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Query with modifiers ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} ``` ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {"age":{"$gt":30}} students = db.students.find(query) for student in students: print(student) ``` ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` ### Limiting documents We can limit the number of documents we return using the *limit()* method. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database db.students.find().limit(3) ``` ### Find with sort By default, sort is in ascending order. We can change to descending by adding -1 parameter. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database students = db.students.find().sort('name') for student in students: print(student) students = db.students.find().sort('name',-1) for student in students: print(student) students = db.students.find().sort('age') for student in students: print(student) students = db.students.find().sort('age',-1) for student in students: print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` Ascending order ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` Descending order ```sh {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 250} ``` ### Update with query We will use _update_one()_ method to update one item. It takes two object one is a qeury and the second is the new object. The first person, Asabeneh got a very implausible age. Let's update Asabeneh's age. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {'age':250} new_value = {'$set':{'age':38}} db.students.update_one(query, new_value) # lets check the result if the age is modified for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8d'), 'name': 'John', 'country': 'Sweden', 'city': 'Stockholm', 'age': 28} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` When we want to update many documents at once we use *upate_many()*method. ### Delete Document The method _delete_one()_ delete one document.The _delete_one()_ take a query object parameter. It only removes the first occurrence. Let's remove one John from the collection. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database query = {'name':'John'} db.students.delete_one(query) for student in db.students.find(): print(student) # lets check the result if the age is modified for student in db.students.find(): print(student) app = Flask(__name__) if __name__ == '__main__': # for deployment we use the environ # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh {'_id': ObjectId('5df68a21f106fe2d315bbc8b'), 'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'age': 38} {'_id': ObjectId('5df68a23f106fe2d315bbc8c'), 'name': 'David', 'country': 'UK', 'city': 'London', 'age': 34} {'_id': ObjectId('5df68a23f106fe2d315bbc8e'), 'name': 'Sami', 'country': 'Finland', 'city': 'Helsinki', 'age': 25} ``` As you can see John as been removed from the collection When we want to delete many documents we use _delete_many()_ method, it takes a query object. If we pass an empyt query object to _delete_many({})_ it will delete all the documents in the collection. ### Drop a collection Using the _drop()_ method we can delete a collection from a database. ```py # let's import the flask from flask import Flask, render_template import os # importing operating system module MONGODB_URI = 'mongodb+srv://asabeneh:your_password_goes_here@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database db.students.drop() ``` Now, we have deleted the students collection from the database. ## 💻 Exercises: Day 27 [<< Part 8 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) | [Part 10 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- ================================================ FILE: old_files/readme28-30.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) - [📘 Day 28](#%f0%9f%93%98-day-28) - [Application Programming Interface(API)](#application-programming-interfaceapi) - [API](#api) - [Building API](#building-api) - [HTTP(Hypertext Transfer Protocol)](#httphypertext-transfer-protocol) - [Structure of HTTP](#structure-of-http) - [Initial Request Line(Status Line)](#initial-request-linestatus-line) - [Initial Response Line(Status Line)](#initial-response-linestatus-line) - [Header Fields](#header-fields) - [The message body](#the-message-body) - [Request Methods](#request-methods) - [💻 Exercises: Day 28](#%f0%9f%92%bb-exercises-day-28) - [Day 29](#day-29) - [Building API](#building-api-1) - [Structure of an API](#structure-of-an-api) - [Retrieving data using get](#retrieving-data-using-get) - [Getting a document by id](#getting-a-document-by-id) - [Creating data using POST](#creating-data-using-post) - [Updating using PUT](#updating-using-put) - [Deleting a document using Delete](#deleting-a-document-using-delete) - [💻 Exercises: Day 29](#%f0%9f%92%bb-exercises-day-29) - [Day 30](#day-30) - [Conclusions](#conclusions) # 📘 Day 28 # Application Programming Interface(API) ## API Application Programming Interface(API). The kind of API will cover in this section is going to be Web APIS. Web APIs are the defined interfaces through which interactions happen between an enterprise and applications that use its assets, which also is a Service Level Agreement (SLA) to specify the functional provider and expose the service path or URL for its API users. In the context of web development, an API is defined as a set of specifications, such as Hypertext Transfer Protocol (HTTP) request messages, along with a definition of the structure of response messages, usually in an XML or a JavaScript Object Notation (JSON) format. Web API has been moving away from Simple Object Access Protocol (SOAP) based web services and service-oriented architecture (SOA) towards more direct representational state transfer (REST) style web resources. Social media services, web APIs have allowed web communities to share content and data between communities and different platforms. Using API, content that is created in one place dynamically can be posted and updated to multiple locations on the web. For example, Twitter's REST API allows developers to access core Twitter data and the Search API provides methods for developers to interact with Twitter Search and trends data. Many applications provide API end points. An example [API](https://restcountries.eu/rest/v2/all). In this section, we will cove a RESTful API that uses HTTP request methods to GET, PUT, POST and DELETE data. ## Building API RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data. In the previous sections, we have learned about python, flask and mongoDB. We will use the knowledge we acquire to develop a RESTful API using python flask and mongoDB. Every application which has CRUD(Create, Read, Update, Delete) operation has an API to create data, to get data, to update data or to delete data from database. To build an API, it is good to understand HTTP protocol. ## HTTP(Hypertext Transfer Protocol) HTTP is an established communication protocol between a client and a server. A client in this case is a browser and server is the place where you access data. HTTP is a network protocol used to deliver resources which could be files on the World Wide Web, whether they're HTML files, image files, query results, scripts, or other file types. A browser is an HTTP client because it sends requests to an HTTP server (Web server), which then sends responses back to the client. ## Structure of HTTP HTTP uses client-server model. An HTTP client opens a connection and sends a request message to an HTTP server and the HTTP server returns message which is the requested resources. When the request response cycle completes the server closes the connection. ![HTTP request response cycle](./images/http_request_response_cycle.png) The format of the request and response messages are similar. Both kinds of messages have * an initial line, * zero or more header lines, * a blank line (i.e. a CRLF by itself), and * an optional message body (e.g. a file, or query data, or query output). Let's an example of request and response messages by navigating this site:https://thirtydaysofpython-v1-final.herokuapp.com/ ![Request and Response header](./images/request_response_header.png) ## Initial Request Line(Status Line) The initial request line is different from the response. A request line has three parts, separated by spaces: * method name(GET, POST, HEAD) * path of the requested resource, * the version of HTTP being used. eg GET / HTTP/1.1 * GET is the most common HTTP to get or read resource and POST a common request method to create resource. ### Initial Response Line(Status Line) The initial response line, called the status line, also has three parts separated by spaces: * HTTP version * Response status code that gives the result of the request, and a reason which describes the status code. Example of status lines are: HTTP/1.0 200 OK or HTTP/1.0 404 Not Found Notes: The most common status codes are: 200 OK: The request succeeded, and the resulting resource (e.g. file or script output) is returned in the message body. 500 Server Error A complete list of HTTP status code can be found [here](https://httpstatuses.com/) ### Header Fields As you have seen in the above screenshot, header lines provide information about the request or response, or about the object sent in the message body. ```sh GET / HTTP/1.1 Host: thirtydaysofpython-v1-final.herokuapp.com Connection: keep-alive Pragma: no-cache Cache-Control: no-cache Upgrade-Insecure-Requests: 1 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 Sec-Fetch-User: ?1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: navigate Referer: https://thirtydaysofpython-v1-final.herokuapp.com/post Accept-Encoding: gzip, deflate, br Accept-Language: en-GB,en;q=0.9,fi-FI;q=0.8,fi;q=0.7,en-CA;q=0.6,en-US;q=0.5,fr;q=0.4 ``` ### The message body An HTTP message may have a body of data sent after the header lines. In a response, this is where the requested resource is returned to the client (the most common use of the message body), or perhaps explanatory text if there's an error. In a request, this is where user-entered data or uploaded files are sent to the server. If an HTTP message includes a body, there are usually header lines in the message that describe the body. In particular, The Content-Type: header gives the MIME-type of the data in the body(text/html, application/json, text/plain, text/css, image/gif). The Content-Length: header gives the number of bytes in the body. ### Request Methods The GET, POST, PUT and DELETE are the HTTP request methods which we are going to implement an API or a CRUD operation application. 1. GET: GET method is used to retrieve and get information from the given server using a given URI. Requests using GET should only retrieve data and should have no other effect on the data. 2. POST: POST request is used to create data and send data to the server, for example, creating a new post, file upload, etc. using HTML forms. 3. PUT: Replaces all current representations of the target resource with the uploaded content and we use it modify or update data. 4. DELETE: Removes data ## 💻 Exercises: Day 28 1. Read about API and HTTP ## Day 29 ## Building API An example [API](https://restcountries.eu/rest/v2/all). In this section, we will cove a RESTful API that uses HTTP request methods to GET, PUT, POST and DELETE data. RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data. In the previous sections, we have learned about python, flask and mongoDB. We will use the knowledge we acquire to develop a RESTful API using python flask and mongoDB. Every application which has CRUD(Create, Read, Update, Delete) operation has an API to create data, to get data, to update data or to delete data from database. The browser can handle only get request. Therefore, we have to have a tool which can help us to handle all request methods(GET, POST, PUT, DELETE). [Postman](https://www.getpostman.com/) is a very popular tool when it comes to API development. So, if you like to do this section you need to [download postman](https://www.getpostman.com/) ![Postman](./images/postman.png) ### Structure of an API An API end point is a URL which can help to retrieve, create, update or delete a resource. The structure looks like this: Example: https://api.twitter.com/1.1/lists/members.json Returns the members of the specified list. Private list members will only be shown if the authenticated user owns the specified list. The name of the company name followed by version followed by the purpose of the API. The methods: HTTP methods & URLs The API uses the following HTTP methods for object manipulation: ```sh GET Used for object retrieval POST Used for object creation and object actions PUT Used for object update DELETE Used for object deletion ``` Let's build an api which collects information about 30DaysOfPython students. We will collect the name, country, city, date of birth, skills and bio. To implement this API, we will use: * Postman * Python * Flask * MongoDB ### Retrieving data using get In this step, let's use dummy data and return it as a json. To return it as json, will use json module and Response module. ```py # let's import the flask from flask import Flask, Response import json app = Flask(__name__) @app.route('/api/v1.0/students', methods = ['GET']) def students (): student_list = [ { 'name':'Asabeneh', 'country':'Finland', 'city':'Helsinki', 'skills':['HTML', 'CSS','JavaScript','Python'] }, { 'name':'David', 'country':'UK', 'city':'London', 'skills':['Python','MongoDB'] }, { 'name':'John', 'country':'Sweden', 'city':'Stockholm', 'skills':['Java','C#'] } ] return Response(json.dumps(student_list), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` When you request the http://localhost:5000/api/v1.0/students url on the browser you will get this: ![Get on browser](./images/get_on_browser.png) When you request the http://localhost:5000/api/v1.0/students url on the browser you will get this: ![Get on postman](./images/get_on_postman.png) In stead of displaying dummy data let's connect the flask application with MongoDB and let's get data from mongoDB database. ```py # let's import the flask from flask import Flask, Response import json import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` By connecting the flask, we can fetch students collection data from the thirty_days_of_python database. ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8c" }, "name": "David", "country": "UK", "city": "London", "age": 34 }, { "_id": { "$oid": "5df68a23f106fe2d315bbc8e" }, "name": "Sami", "country": "Finland", "city": "Helsinki", "age": 25 } ] ``` ### Getting a document by id We can access signle document using an id, let's access Asabeneh using his id. http://localhost:5000/api/v1.0/students/5df68a21f106fe2d315bbc8b ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ```sh [ { "_id": { "$oid": "5df68a21f106fe2d315bbc8b" }, "name": "Asabeneh", "country": "Finland", "city": "Helsinki", "age": 38 } ] ``` ### Creating data using POST We use the POST request method to create data ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return ; def update_student (id): if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Updating using PUT ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return def update_student (id): if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ### Deleting a document using Delete ```py # let's import the flask from flask import Flask, Response import json from bson.objectid import ObjectId import json from bson.json_util import dumps import pymongo from datetime import datetime app = Flask(__name__) # MONGODB_URI='mongodb+srv://asabeneh:your_password@30daysofpython-twxkr.mongodb.net/test?retryWrites=true&w=majority' client = pymongo.MongoClient(MONGODB_URI) db = client['thirty_days_of_python'] # accessing the database @app.route('/api/v1.0/students', methods = ['GET']) def students (): return Response(json.dumps(student), mimetype='application/json') @app.route('/api/v1.0/students/', methods = ['GET']) def single_student (id): student = db.students.find({'_id':ObjectId(id)}) return Response(dumps(student), mimetype='application/json') @app.route('/api/v1.0/students', methods = ['POST']) def create_student (): name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.insert_one(student) return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return @app.route('/api/v1.0/students/', methods = ['PUT']) # this decorator create the home route def update_student (id): query = {"_id":ObjectId(id)} name = request.form['name'] country = request.form['country'] city = request.form['city'] skills = request.form['skills'].split(', ') bio = request.form['bio'] birthyear = request.form['birthyear'] created_at = datetime.now() student = { 'name': name, 'country': country, 'city': city, 'birthyear': birthyear, 'skills': skills, 'bio': bio, 'created_at': created_at } db.students.update_one(query, student) # return Response(dumps({"result":"a new student has been created"}), mimetype='application/json') return ; @app.route('/api/v1.0/students/', methods = ['DELETE']) def delete_student (id): db.students.delete_one({"_id":ObjectId(id)}) return if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ``` ## 💻 Exercises: Day 29 1. Implement the above example and develop [this](https://thirtydayofpython-api.herokuapp.com/) # Day 30 ## Conclusions In the process of preparing this material I I have learning quite a lot and you have inspired me to do more. Congratulations for making it to this level. If you have done all the exercise and the projects, now you are capable to go a data analysis, data science, machine learning or web development. GIVE FEEDBACK: http://thirtydayofpython-api.herokuapp.com/feedback [<< Part 9 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-25.md) | [Part 10 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- ================================================ FILE: old_files/readme4-6.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [Day 4](#day-4) - [String](#string) - [Creating a string](#creating-a-string) - [String Concatenation](#string-concatenation) - [Escape Sequences in string](#escape-sequences-in-string) - [String formating](#string-formating) - [Old Style String Formatting (% Operator)](#old-style-string-formatting--operator) - [New Style String Formatting (str.format)](#new-style-string-formatting-strformat) - [String Interpolation / f-Strings (Python 3.6+)](#string-interpolation--f-strings-python-36) - [Python strings as sequences of characters](#python-strings-as-sequences-of-characters) - [Unpacking characters](#unpacking-characters) - [Accessing characters in strings by index](#accessing-characters-in-strings-by-index) - [Slicing Python Strings](#slicing-python-strings) - [Reversing a string](#reversing-a-string) - [Skipping characters while slicing](#skipping-characters-while-slicing) - [String Methods](#string-methods) - [💻 Exercises - Day 4](#%f0%9f%92%bb-exercises---day-4) - [Day 5](#day-5) - [Lists](#lists) - [How to create a list](#how-to-create-a-list) - [Accessing list items using positive indexing](#accessing-list-items-using-positive-indexing) - [Accessing list items using negative indexing](#accessing-list-items-using-negative-indexing) - [Unpacking list items](#unpacking-list-items) - [Slicing items from list](#slicing-items-from-list) - [Modifying list](#modifying-list) - [Check items in a list](#check-items-in-a-list) - [Adding item in a list](#adding-item-in-a-list) - [Inserting item in to a list](#inserting-item-in-to-a-list) - [Removing item from list](#removing-item-from-list) - [Removing item using pop](#removing-item-using-pop) - [Removing item using del](#removing-item-using-del) - [Clearing list items](#clearing-list-items) - [Copying a list](#copying-a-list) - [Joining lists](#joining-lists) - [Counting Items in a list](#counting-items-in-a-list) - [Finding index of an item](#finding-index-of-an-item) - [Reversing a list](#reversing-a-list) - [Sorting list items](#sorting-list-items) - [💻 Exercises: Day 5](#%f0%9f%92%bb-exercises-day-5) - [Day 6:](#day-6) - [Tuple](#tuple) - [Creating Tuple](#creating-tuple) - [Tuple length](#tuple-length) - [Accessing tuple items](#accessing-tuple-items) - [Slicing tuples](#slicing-tuples) - [Changing tuples to list](#changing-tuples-to-list) - [Checking an item in a list](#checking-an-item-in-a-list) - [Joining tuples](#joining-tuples) - [Deleting tuple](#deleting-tuple) - [💻 Exercises: Day 6](#%f0%9f%92%bb-exercises-day-6) # Day 4 ## String Text is a string data type. Any data type written as text is a string. Any data under single or double quote are strings. There are different string methods and built-in functions to deal with string data types. To check the length of a string use the len() method. ### Creating a string ```py letter = 'P' # A string could be a single character or a bunch of texts print(letter) # P print(len(letter)) # 1 greeting = 'Hello, World!' # String could be a single or double quote,"Hello, World!" print(greeting) # Hello, World! print(len(greeting)) # 13 sentence = "I hope you are enjoying 30 days of python challenge" print(sentence) ``` Multiline string is created by using triple ''' or quotes.See the example below. ```py multiline_string = '''I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.''' print(multiline_string) # Another way of doing the same thing multiline_string = """I am a teacher and enjoy teaching. I didn't find anything as rewarding as empowering people. That is why I created 30 days of python.""" print(multiline_string) ``` ### String Concatenation We can connect to strings together. Merging or connecting to strings together is called concatenation.See the example below ```py first_name = 'Asabeneh' last_name = 'Yetayeh' space = ' ' full_name = first_name + space + last_name print(full_name) # Asabeneh Yetayeh # Checking length of a string using len() builtin function print(len(first_name)) # 8 print(len(last_name)) # 7 print(len(first_name) > len(last_name)) # True print(len(full_name)) # 15 ``` ### Escape Sequences in string In python and other programming language \ followed by a character. Let's see the most common escape characters: * \n: new line * \t: Tab means(8 spaces) * \\\\: Back slash * \\': Single quote (') * \\":Double quote (") ```py print('I hope every one enjoying the python challenge.\nDo you ?') # line break print('Days\tTopics\tExercises') print('Day 1\t3\t5') print('Day 2\t3\t5') print('Day 3\t3\t5') print('Day 4\t3\t5') print('This is a back slash symbol (\\)') # To write a back slash print('In every programming language it starts with \"Hello, World!\"') # output I hope every one enjoying the python challenge. Do you ? Days Topics Exercises Day 1 5 5 Day 2 6 20 Day 3 5 23 Day 4 1 35 This is a back slash symbol (\) In every programming language it starts with "Hello, World!" ``` ### String formating #### Old Style String Formatting (% Operator) In python there many ways of formating string. In this section we will cover some of them. The "%" operator is used to format a set of variables enclosed in a "tuple" (a fixed size list), together with a format string, which contains normal text together with "argument specifiers", special symbols like "%s", "%d", "%f", "%.f". * %s - String (or any object with a string representation, like numbers) * %d - Integers * %f - Floating point numbers * %.f - Floating point numbers with a fixed amount of digits to the right of the dot. ```py # Strings only first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formatted_string = 'I am %s %s. I teach %s' %(first_name, last_name, language) print(formatted_string) # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formatted_string = 'The area of radius %d is %.2f.' %(radius, area) # 2 refers the 2 significant digits after the point python_libraries = ['Django', 'Flask', 'Numpy', 'Pandas'] formatted_string = 'The following are python libraries:' % python_libraries print(formatted_string) # "The following are python libraries:['Django', 'Flask', 'Numpy', 'Pandas']" ``` #### New Style String Formatting (str.format) This is formating is introduced in python version 3. ```py first_name = 'Asabeneh' last_name = 'Yetayeh' language = 'Python' formatted_string = 'I am {} {}. I teach {}'.format(first_name, last_name, language) print(formatted_string) a = 4 b = 3 print('{} + {} = {}'.format(a, b, a + b)) print('{} - {} = {}'.format(a, b, a - b)) print('{} * {} = {}'.format(a, b, a * b)) print('{} / {} = {:.2f}'.format(a, b, a / b)) # limits it to two digits after decimal print('{} % {} = {}'.format(a, b, a % b)) print('{} // {} = {}'.format(a, b, a // b)) print('{} ** {} = {}'.format(a, b, a ** b)) # output 4 + 3 = 7 4 - 3 = 1 4 * 3 = 12 4 / 3 = 1.33 4 % 3 = 1 4 // 3 = 1 4 ** 3 = 64 # Strings and numbers radius = 10 pi = 3.14 area = pi * radius ** 2 formatted_string = 'The area of radius {} is {:.2f}.'.format(radius, area) # 2 digits after decimal print(formatted_string) ``` #### String Interpolation / f-Strings (Python 3.6+) Another new string formatting is string interpolation, f-strings. String started with f and we can inject the data in their corresponding positions. ```py a = 4 b = 3 print(f'{a} + {b} = {a +b}') print(f'{a} - {b} = {a - b}') print(f'{a} * {b} = {a * b}') print(f'{a} / {b} = {a / b:.2f}') print(f'{a} % {b} = {a % b}') print(f'{a} // {b} = {a // b}') print(f'{a} ** {b} = {a ** b}') ``` ### Python strings as sequences of characters Python strings are sequences of characters, and share their basic methods of access with those other Python sequences – lists and tuples. The simplest way of extracting single characters from strings (and individual members from any sequence) is to unpack them into corresponding variables. #### Unpacking characters ``` language = 'Python' a,b,c,d,e,f = language # unpacking sequence characters into variables print(a) # P print(b) # y print(c) # t print(d) # h print(e) # o print(f) # n ``` #### Accessing characters in strings by index In programming counting starts from zero. Therefore the first letter of a string is at zero index and the last letter of a string is the length of a string minus one. ![String index](./images/string_index.png) ```py language = 'Python' first_letter = language[0] print(first_letter) # P second_letter = language[1] print(second_letter) # y last_index = len(language) - 1 last_letter = language[last_index] print(last_letter) # n ``` If we want to start from right end we can use negative indexing. -1 is the last index. ```py language = 'Python' last_letter = language[-1] print(last_letter) # n second_last = language[-2] print(second_last) # o ``` #### Slicing Python Strings In python we can slice substrings from a string. ```py language = 'Python' first_three = language[0:3] # starts at zero index and up to 3 but not include 3 last_three = language[3:6] print(last_three) # hon # Another way last_three = language[-3:] print(last_three) # hon last_three = language[3:] print(last_three) # hon ``` #### Reversing a string We can easily reverse string in python. ```py greeting = 'Hello, World!' print(greeting[::-1]) # !dlroW ,olleH ``` #### Skipping characters while slicing It is possible to skip characters while slicing by passing step argument to slice method. ```py language = 'Python' pto = language[0,6:2] # print(pto) # Pto ``` ### String Methods There are many string methods which allow us to format strings. See some of the string methods in the following example: * capitalize(): Converts the first character the string to Capital Letter ```py challenge = 'thirty days of python' print(challenge.capitalize()) # 'Thirty days of python' ``` * count(): returns occurrences of substring in string, count(substring, start=.., end=..) ```py challenge = 'thirty days of python' print(challenge.count('y')) # 3 print(challenge.count('y', 7, 14)) # 1 print(challenge.count('th')) # 2` ``` * endswith(): Checks if a string ends with a specified ending ```py challenge = 'thirty days of python' print(challenge.endswith('on')) # True print(challenge.endswith('tion')) # False ``` * expandtabs(): Replaces tab character with spaces, default tab size is 8. It takes tab size argument ```py challenge = 'thirty\tdays\tof\tpython' print(challenge.expandtabs()) # 'thirty days of python' print(challenge.expandtabs(10)) # 'thirty days of python' ``` * find(): Returns the index of first occurrence of substring ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` * format() formats string into nicer output More about string formating check this [link](https://www.programiz.com/python-programming/methods/string/format) ```py first_name = 'Asabeneh' last_name = 'Yetayeh' job = 'teacher' country = 'Finland' sentence = 'I am {} {}. I am a {}. I live in {}.'.format(first_name, last_name, job, country) print(sentence) # I am Asabeneh Yetayeh. I am a teacher. I live in Finland. radius = 10 pi = 3.14 area = pi * radius ** 2 result = 'The area of circle with {} is {}'.format(str(radius), str(area)) print(result) # The area of circle with 10 is 314.0 ``` * index(): Returns the index of substring ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` * isalnum(): Checks alphanumeric character ```py challenge = 'ThirtyDaysPython' print(challenge.isalnum()) # True challenge = '30DaysPython' print(challenge.isalnum()) # True challenge = 'thirty days of python' print(challenge.isalnum()) # False challenge = 'thirty days of python 2019' print(challenge.isalnum()) # False ``` * isalpha(): Checks if all characters are alphabets ```py challenge = 'thirty days of python' print(challenge.isalpha()) # True num = '123' print(num.isalpha()) # False ``` * isdecimal(): Checks Decimal Characters ```py challenge = 'thirty days of python' print(challenge.find('y')) # 5 print(challenge.find('th')) # 0 ``` * isdigit(): Checks Digit Characters ```py challenge = 'Thirty' print(challenge.isdigit()) # False challenge = '30' print(challenge.digit()) # True ``` * isdecimal():Checks decimal characters ```py num = '10' print(num.isdecimal()) # True num = '10.5' print(num.isdecimal()) # False ``` * isidentifier():Checks for valid identifier means it check if a string is a valid variable name ```py challenge = '30DaysOfPython' print(challenge.isidentifier()) # False, because it starts with a number challenge = 'thirty_days_of_python' print(challenge.isidentifier()) # True ``` * islower():Checks if all alphabets in a string are lowercase ```py challenge = 'thirty days of python' print(challenge.islower()) # True challenge = 'Thirty days of python' print(challenge.islower()) # False ``` * isupper(): returns if all characters are uppercase characters ```py challenge = 'thirty days of python' print(challenge.isupper()) # False challenge = 'THIRTY DAYS OF PYTHON' print(challenge.isupper()) # True ``` * isnumeric():Checks numeric characters ```py num = '10' print(num.isnumeric()) # True print('ten'.isnumeric()) # False ``` * join(): Returns a concatenated string ```py web_tech = ['HTML', 'CSS', 'JavaScript', 'React'] result = '#, '.join(web_tech) print(result) # 'HTML# CSS# JavaScript# React' ``` * strip(): Removes both leading and trailing characters ```py challenge = ' thirty days of python ' print(challenge.strip('y')) # 5 ``` * replace(): Replaces substring inside ```py challenge = 'thirty days of python' print(challenge.replace('python', 'coding')) # 'thirty days of coding' ``` * split():Splits String from Left ```py challenge = 'thirty days of python' print(challenge.split()) # ['thirty', 'days', 'of', 'python'] ``` * title(): Returns a Title Cased String ```py challenge = 'thirty days of python' print(challenge.title()) # Thirty Days Of Python ``` * swapcase(): Checks if String Starts with the Specified String The string swapcase() method converts all uppercase characters to lowercase and all lowercase characters to uppercase characters of the given string, and returns it. ```py challenge = 'thirty days of python' print(challenge.swapcase()) # THIRTY DAYS OF PYTHON challenge = 'Thirty Days Of Python' print(challenge.swapcase()) # tHIRTY dAYS oF pYTHON ``` * startswith(): Checks if String Starts with the Specified String ```py challenge = 'thirty days of python' print(challenge.startswith('thirty')) # True challenge = '30 days of python' print(challenge.startswith('thirty')) # False ``` ## 💻 Exercises - Day 4 1. Concatenate the string 'Thirty', 'Days', 'Of', 'Python' to a single string, 'Thirty Days Of Python' 2. Concatenate the string 'Coding', 'For' , 'All' to a single string, 'Coding For All' 3. Declare a variable name company and assign it to an initial value "Coding For All. 4. Print company using *print()* 5. Print the length of the company string using *len()* method and *print()* 6. Change all the characters to capital letters using *upper()* method 7. Change all the characters to lowercase letters using *lower()* method 8. Use capitalize(), title(), swapcase() methods to format the value the string *Coding For All*. 9. Cut(slice) out the first word of *Coding For All* string 10. Check if *Coding For All* string contains a word Coding using the method index, find or other methods. 11. Replace the word coding in the string 'Coding For All' to Python. 12. Change Python for Everyone to Python for All using the replace method or other methods 13. Split the string 'Coding For All' at the space using split() method 14. "Facebook, Google, Microsoft, Apple, IBM, Oracle, Amazon" split the string at the comma 15. What is character at index 0 in the string *Coding For All*. 16. What is the last index of the string *Coding For All* 17. What character is at index 10 in "Coding For All" string. 18. Create an acronym or an abbreviation for the name 'Python For Everyone' 19. Create an acronym or an abbreviation for the name 'Coding For All' 20. Use index to determine the position of the first occurrence of C in Coding For All. 21. Use index to determine the position of the first occurrence of F in Coding For All 22. Use rfind to determine the position of the last occurrence of l in Coding For All People. 23. Use index or find to find the position of the first occurrence of the word because in the following sentence:'You cannot end a sentence with because because because is a conjunction' 24. Use rindex to find the position of the last occurrence of the word because in the following sentence:'You cannot end a sentence with because because because is a conjunction' 25. Slice out the phrase because because because in the following sentence:'You cannot end a sentence with because because because is a conjunction' 26. Find the position of the first occurrence of the word because in the following sentence:'You cannot end a sentence with because because because is a conjunction' 27. Slice out the phase because because because in the following sentence:'You cannot end a sentence with because because because is a conjunction' 28. Does Coding For All starts with a substring *Coding*? 29. Does Coding For All ends with a substring *coding*? 30. '   Coding For All      '  , remove the left and right trailing spaces in the given string. 31. Which one of the following variable return True when we use the method isidentifier() * 30DaysOfPython * thirty_days_of_python 32. The following are some of python libraries list: ['Django', 'Flask', 'Bottle', 'Pyramid', 'Falcon']. Join the list with a hash with space string. 33. Use new line escape sequence to writ the following sentence. ```py I am enjoying this challenge. I just wonder what is next. ``` 34. Use a tab escape sequence to writ the following sentence. ```py Name Age Country Asabeneh 250 Finland ``` 35. Use string formatting method to display the following: ```sh radius = 10 area = 3.14 * radius ** 2 The area of radius 10 is 314 meters squares. ``` 36. Make the following using string formatting methods: ```sh 8 + 6 = 14 8 - 6 = 2 8 * 6 = 48 8 / 6 = 1.33 8 % 6 = 2 8 // 6 = 1 8 ** 6 = 262144 ``` # Day 5 ## Lists The are four collection data types in python : * List: is a collection which is ordered and changeable(modifiable). Allows duplicate members. * Tuple: is a collection which is ordered and unchangeable or unmodifiable(immutable). Allows duplicate members. * Set: is a collection which is unordered and unindexed. No duplicate members. * Dictionary: is a collection which is unordered, changeable(modifiable) and indexed. No duplicate members. A list is collection of different data types which is ordered and modifiable(mutable). A list can be empty or it may have different data type items or items ### How to create a list In python we can create list in two ways: * Using list builtin function ```py # syntax lst = list() ``` ```py empty_list = list() # this is an empty list, no item in the list print(len(empty_list)) # 0 ``` * Using square brackets, [] ```py # syntax lst = [] ``` ```py empty_list = [] # this is an empty list, no item in the list print(len(empty_list)) # 0 ``` List with initial values. We use *len()* to find the length of a list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] # list of fruits vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] # list of vegetables animal_products = ['milk', 'meat', 'butter', 'yoghurt'] # list of animal products web_techs = ['HTML', 'CSS', 'JS', 'React','Redux', 'Node', 'MongDB'] # list of web technologies countries = ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] # Print the lists and it length print('Fruits:', fruits) print('Number of fruits:', len(fruits)) print('Vegetables:', vegetables) print('Number of vegetables:', len(vegetables)) print('Animal products:',animal_products) print('Number of animal products:', len(animal_products)) print('Web technologies:', web_techs) print('Number of web technologies:', len(web_techs)) print('Countries:', countries) print('Number of countries:', len(countries)) ``` ```sh output Fruits: ['banana', 'orange', 'mango', 'lemon'] Number of fruits: 4 Vegetables: ['Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] Number of vegetables: 5 Animal products: ['milk', 'meat', 'butter', 'yoghurt'] Number of animal products: 4 Web technologies: ['HTML', 'CSS', 'JS', 'React', 'Redux', 'Node', 'MongDB'] Number of web technologies: 7 Countries: ['Finland', 'Estonia', 'Denmark', 'Sweden', 'Norway'] Number of countries: 5 ``` * List can have items of different data types ```py lst = ['Asabeneh', 250, True, {'country':'Finland', 'city':'Helsinki'}] # list containing different data types ``` ### Accessing list items using positive indexing We access each item in a list using their index. A list index start from 0. The picture below show clearly where the index starts ![List index](./images/list_index.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[0] # we are accessing the first item using its index print(first_fruit) # banana second_fruit = fruits[1] print(second_fruit) # orange last_fruit = fruits[3] print(last_fruit) # lemon # Last index last_index = len(fruits) - 1 last_fruit = fruits[last_index] ``` ### Accessing list items using negative indexing Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second last item. ![List negative indexing](./images/list_negative_indexing.png) ```py fruits = ['banana', 'orange', 'mango', 'lemon'] first_fruit = fruits[-4] last_fruit = fruits[-1] second_last = fruits[-2] print(first_fruit) # banana print(last_fruit) # lemon print(second_last) # mango ``` ### Unpacking list items ```py lst = ['item','item2','item3', 'item4', 'item5'] first_item, second_item, third_item, *rest = lst print(first_item) # item1 print(second_item) # item1 print(third_item) # item2 print(rest) # ['item4', 'item5'] ``` ```py # First Example fruits = ['banana', 'orange', 'mango', 'lemon','lime','apple'] first_fruit, second_fruit, third_fruit, *rest = lst print(first_fruit) # banana print(second_fruit) # orange print(third_fruit) # mango print(rest) # ['lemon','lime','apple'] # Second Example about unpacking list first, second, third,*rest, tenth = [1,2,3,4,5,6,7,8,9,10] print(first) print(second) print(third) print(rest) print(tenth) # Third Example about unpacking list countries = ['Germany', 'France','Belgium','Sweden','Denmark','Finland','Norway','Iceland','Estonia'] gr, fr, bg, sw, *scandic, es = countries print(gr) print(fr) print(bg) print(sw) print(scandic) print(es) ``` ### Slicing items from list * Positive Indexing: We can specify a range of positive indexes by specifying the starting and the ending, the return value will be a new list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[0:4] # it returns all the fruits # this is also give the same result as the above all_fruits = fruits[0:] # if we don't set where to stop it takes all the rest orange_and_mango = fruits[1:3] # it does not include the end index orange_mango_lemon = fruits[1:] ``` * Negative Indexing: We can specify a range of negative indexes by specifying the starting and the ending, the return value will be a new list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] all_fruits = fruits[-4:] # it returns all the fruits # this is also give the same result as the above orange_and_mango = fruits[-3:-1] # it does not include the end index orange_mango_lemon = fruits[-3:] ``` ### Modifying list List is a mutable or modifiable ordered collection of items or items. Lets modify the fruit list. ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits[0] = 'Avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] last_index = len(fruits) fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ``` ### Check items in a list ```py fruits = ['banana', 'orange', 'mango', 'lemon'] does_exist = 'banana' in fruits print(does_exist) # True does_exist = 'lime' in fruits print(does_exist) # False ``` ### Adding item in a list To add item to the end of an existing list we use the method ```py # syntax lst = list() lst.append(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.append('apple') print(fruits) # ['banana', 'orange', 'mango', 'lemon', 'apple'] fruits.append('lime') # ['banana', 'orange', 'mango', 'lemon', 'apple', 'lime'] print(fruits) ``` ### Inserting item in to a list Use insert() method to insert a single item at a specified index in a list. Note that other items are shifted to the right. ```py # syntax lst = ['item1', 'item2'] lst.insert(index, item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.insert(2, 'apple') # insert apple between orange and mango print(fruits) # ['banana', 'orange', 'apple', 'mango', 'lemon'] fruits.insert(3, 'lime') # ['banana', 'orange', 'apple', 'mango', 'lime','lemon'] print(fruits) ``` ### Removing item from list The remove method remove a specified item from a list ```py # syntax lst = ['item1', 'item2'] lst.remove(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.remove('banana') print(fruits) # ['orange', 'mango', 'lemon'] fruits.remove('lemon') print(fruits) # ['orange', 'mango'] ``` ### Removing item using pop The pop() method removes the specified index, (or the last item if index is not specified): ```py # syntax lst = ['item1', 'item2'] lst.pop() # last item lst.pop(index) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.pop() print(fruits) # ['banana', 'orange', 'mango'] fruits.remove(0) print(fruits) # ['orange', 'mango'] ``` ### Removing item using del The del keyword removes the specified index and it can be also use to delete the list completely ```py # syntax lst = ['item1', 'item2'] del lst[index] # only a single item del lst # to delete the list completely ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] del fruits[0] print(fruits) # ['orange', 'mango', 'lemon'] del fruits[1] print(fruits) # ['orange', 'lemon'] del fruits print(fruits) # This should give: NameError: name 'fruits' is not defined ``` ### Clearing list items The clear() method empties the list: ```py # syntax lst = ['item1', 'item2'] lst.clear() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.clear() print(fruits) # [] ``` ### Copying a list It is possible to copy a list by reassigning to a new variable in the following way list2 = list1. Now, list2 is a reference of list1, any changes we make in list2 will also modify the original, list2. But there are lots of case in which we do not like to modify the original instead we like to have a different copy. One of way avoid the above problem is using *copy()*. ```py # syntax lst = ['item1', 'item2'] lst_copy = lst.copy() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits_copy = fruits.copy() print(fruits_copy) # ['banana', 'orange', 'mango', 'lemon'] ``` ### Joining lists There are several ways to join, or concatenate, two or more lists in Python. * Plus Operator (+) ```py # syntax list3 = list1 +list2 ``` ```py positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers = [-5,-4,-3,-2,-1] integers = negative_numbers + zero + positive_numbers print(integers) fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables ) ``` ```py # output [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` * Joining using extend() method ```py # syntax lst1 = ['item1', 'item2'] lst2 = ['item3', 'item4','item5'] list1.extend(list2) ``` ```py num1 = [0, 1, 2, 3] num2= [4, 5,6] num1.extend(num2) print('Numbers:', num1) negative_numbers = [-5,-4,-3,-2,-1] positive_numbers = [1, 2, 3,4,5] zero = [0] negative_numbers.extend(zero) negative_numbers.extend(positive_numbers) print('Integers:', negative_numbers) fruits = ['banana', 'orange', 'mango', 'lemon'] vegetables = ['Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'] fruits.extend(vegetables) print('Fruits and vegetables:', fruits ) ``` ```py Numbers: [0, 1, 2, 3, 4, 5, 6] Integers: [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] Fruits and vegetables: ['banana', 'orange', 'mango', 'lemon', 'Tomato', 'Potato', 'Cabbage', 'Onion', 'Carrot'] ``` ### Counting Items in a list The count() method returns the number of times an item appears in a list: ```py # syntax lst = ['item1', 'item2'] lst.count(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.count('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.count(24)) # 3 ``` ### Finding index of an item The count() method returns the index of an item in the list: ```py # syntax lst = ['item1', 'item2'] lst.index(item) ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] print(fruits.index('orange')) # 1 ages = [22, 19, 24, 25, 26, 24, 25, 24] print(ages.index(24)) # 2, the first occurrence ``` ### Reversing a list The reverse() method reverse the order of a list. ```py # syntax lst = ['item1', 'item2'] lst.reverse() ``` ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.reverse() print(fruits.reverse()) ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.reverse() print(ages.reverse()) ``` ```py ['lemon', 'mango', 'orange', 'banana'] [24, 25, 24, 26, 25, 24, 19, 22] ``` ### Sorting list items To sort list we can use *sort() method or *sorted()* builtin function. The sort() method reorder the list items in ascending order and modify the original list. If a reverse is equal to true it arrange in descending order. * sort(): ```py # syntax lst = ['item1', 'item2'] lst.sort() # ascending lst.sort(reverse=True) # descending ``` **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits.sort() print(fruits) fruits.sort(reverse=True) print(fruits) ages = [22, 19, 24, 25, 26, 24, 25, 24] ages.sort() print(ages) ages.sort(reverse=True) print(ages) ``` ```sh ['banana', 'lemon', 'mango', 'orange'] ['orange', 'mango', 'lemon', 'banana'] [19, 22, 24, 24, 24, 25, 25, 26] [26, 25, 25, 24, 24, 24, 22, 19] ``` sorted(): returns the ordered list without modifying the original **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits) print(fruits) # ['banana', 'lemon', 'mango', 'orange'] # Reverse order fruits = ['banana', 'orange', 'mango', 'lemon'] fruits = sorted(fruits,reverse=True) print(fruits) # ['orange', 'mango', 'lemon', 'banana'] ``` ## 💻 Exercises: Day 5 1. Declare an empty list 2. Declare a list with more than 5 number of items 3. Find the length of your list 4. Get the first item, the middle item and the last item of the list 5. Declare a list called mixed_data_types,put your(name, age, height, marital status, address) 6. Declare a list variable name it_companies and assign initial values Facebook, Google, Microsoft, Apple, IBM, Oracle and Amazon. 7. Print the list using *print()* 8. Print the number of companies in the list 9. Print the first, middle and last company 10. Print modify any of the companies 11. Add an IT company to it_companies 12. Insert an IT company in the middle of the companies list 13. Change one of the it_companies item to uppercase 14. Join the it_companies with a string '#;  ' 15. Check if a certain company exists in the it_companies list. 16. Sort the list using sort() method 17. Reverse the list in descending order using reverse() method 18. Slice out the first 3 companies from the list 19. Slice out the last 3 companies from the list 20. Slice out the middle IT company or companies from the list 21. Remove the first IT company from the list 22. Remove the middle IT company or companies from the list 23. Remove the last IT company from the list 24. Remove all IT companies item 25. Destroy the IT companies list 26. Join the following lists: ```py front_end = ['HTML', 'CSS', 'JS', 'React', 'Redux'] back_end = ['Node','Express', 'MongoDB'] ``` 27. After joining the lists in question 26. Copy the joined list and assigned it to a variable full_stack. Then insert, Python and SQL after Redux. 28. The following is a list of 10 students ages: ```sh ages = [19, 22, 19, 24, 20, 25, 26, 24, 25, 24] ``` * Sort the list and find the min and max age * Add the min age and the max age * Find the median age(one middle item or two middle items divided by two) * Find the average age(all items divided by number of items) * Find the range of the ages(max minus min) * Compare the value of (min - average) and (max - average), use *abs()* method 29. Find the middle country(ies) in the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/tree/master/data/countries.py) 30. Divide the countries list into two equal lists if it is even if not one more country for the first half. 31. ['China', 'Russia', 'USA', 'Finland', 'Sweden', 'Norway', 'Denmark']. Unpack the first three countries and the rest as scandic countries. # Day 6: ## Tuple A tuple is a collection of different data types which is ordered and unchangeable(immutable). Tuples are written with round brackets,(). Once a tuple is created, we can not change its values. We can not add, insert, remove a tuple because it is not modifiable (mutable). Unlike list, tuple has few methods. Methods related to tuple: * tuple(): to create an empty tuple * count(): to count the number of a specified item in a tuple * index(): to find the index of a specified item in a tuple * + operator: to join two or more tuples and to create new tuple ### Creating Tuple * Empty tuple: Creating an empty tuple ```py # syntax empty_tuple = () # or using the tuple constructor empty_tuple = tuple() ``` * Tuple with initial values ```py # syntax tpl = ('item1', 'item2','item3') ``` * ```py fruits = ('banana', 'orange', 'mango', 'lemon') ``` ### Tuple length We use the *len()* method to get the length of a tuple. ```py # syntax tpl = ('item1', 'item2', 'item3') len(tpl) ``` ### Accessing tuple items * Positive Indexing Similar to the list data type we use positive or negative indexing to access tuple items. ![Accessing tuple items](images/tuples_index.png) ```py # Syntax tpl = ('item1', 'item2', 'item3') first_item = tpl[0] second_item = tpl[1] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[0] second_fruit = fruits[1] last_index =len(fruits) - 1 last_fruit = fruits[las_index] ``` * Negative indexing Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second last and the negative of the list length refers to the first item. ![Tuple Negative indexing](images/tuple_negative_indexing.png) ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') first_item = tpl[-4] second_item = tpl[-3] ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') first_fruit = fruits[-4] second_fruit = fruits[-3] last_fruit = fruits[-1] ``` ### Slicing tuples We can slice out a sub tuple by specifying a range of indexes where to start and where to end in the tuple, the return value will be a new tuple with the specified items. * Range of Positive Indexes ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[0:4] # all items all_items = tpl[0:] # all items middle_two_items = tpl[1:3] # does not include item at index 3 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[0:4] # all items all_fruits= fruits[0:] # all items orange_mango = fruits[1:3] # doesn't include item at index 3 orange_to_the_rest = fruits[1:] ``` * Range of Negative Indexes ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') all_items = tpl[-4:] # all items middle_two_items = tpl[-3:-1] # does not include item at index 3 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') all_fruits = fruits[-4:] # all items orange_mango = fruits[-3:-1] # doesn't include item at index 3 orange_to_the_rest = fruits[-3:] ``` ### Changing tuples to list We can change tuples to list and list to tuple. Tuple is immutable if we want to modify a tuple we should change to a list. ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') lst = list(tpl) ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') fruits = list(fruits) fruits[0] = 'apple' print(fruits) # ['apple', 'orange', 'mango', 'lemon'] fruits = tuple(fruits) print(fruits) # ('apple', 'orange', 'mango', 'lemon') ``` ### Checking an item in a list We can check an item if it exists in a list or not using *in*, it returns boolean. ```py # Syntax tpl = ('item1', 'item2', 'item3','item4') 'item2' in tpl # True ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') 'orange' in fruits # True 'apple' in fruits # False fruits[0] = 'apple' ``` ### Joining tuples We can join two or more tuples using + operator ```py # syntax tpl1 = ('item1', 'item2', 'item3') tpl2 = ('item4', 'item5','item6') tpl3 = tpl1 + tpl2 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') vegetables = ('Tomato', 'Potato', 'Cabbage','Onion', 'Carrot') fruits_and_vegetables = fruits + vegetables ``` ### Deleting tuple It is not possible to remove a single item in a tuple but it is possible to delete the tuple itself using *del*. ```py # syntax tpl1 = ('item1', 'item2', 'item3') del tpl1 ``` ```py fruits = ('banana', 'orange', 'mango', 'lemon') del fruits ``` ## 💻 Exercises: Day 6 1. Create an empty tuple 2. Create a tuple containing name of your sisters and your brothers 3. Join brothers and sisters tuples and assign it to siblings 4. How many siblings do you have ? 5. Modify the siblings tuple and add the name of your father and mother and assign it to family_members 6. Unpack siblings and parents from family_members 7. Create a fruits, vegetables and animal products tuples. Join the three tuples and assign it to a variable called food_stuff. 8. Slice out the middle item or items from the food_staff list 9. Slice out the first three items and the last three items from food_staff list 10. Delete the food_staff list completely 11. Check if an item exist in a tuple: * Check if 'Estonia' is a nordic country * Check if 'Iceland' is a nordic country ```py nordic_countries = ('Denmark', 'Finland','Iceland', 'Norway', 'Sweden') ``` [<< Part 1](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme.md) | [Part 3>>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) ================================================ FILE: old_files/readme7-9.md ================================================ ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) 🧳 [Part 1: Day 1 - 3](https://github.com/Asabeneh/30-Days-Of-Python) 🧳 [Part 2: Day 4 - 6](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) 🧳 [Part 3: Day 7 - 9](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme7-9.md) 🧳 [Part 4: Day 10 - 12](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) 🧳 [Part 5: Day 13 - 15](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme13-15.md) 🧳 [Part 6: Day 16 - 18](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme16-18.md) 🧳 [Part 7: Day 19 - 21](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme19-21.md) 🧳 [Part 8: Day 22 - 24](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme22-24.md) 🧳 [Part 9: Day 25 - 27](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme25-27.md) 🧳 [Part 10: Day 28 - 30](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme28-30.md) --- - [📘 Day 7](#%f0%9f%93%98-day-7) - [Set](#set) - [Creating a set](#creating-a-set) - [Getting set length](#getting-set-length) - [Accessing Items in set](#accessing-items-in-set) - [Checking an item](#checking-an-item) - [Adding items to a list](#adding-items-to-a-list) - [Removing item from a list](#removing-item-from-a-list) - [Clearing item in a set](#clearing-item-in-a-set) - [Deleting a set](#deleting-a-set) - [Converting list to set](#converting-list-to-set) - [Joining sets](#joining-sets) - [Finding intersection items](#finding-intersection-items) - [Checking subset and super set](#checking-subset-and-super-set) - [Checking difference between two sets](#checking-difference-between-two-sets) - [Finding Symmetric difference between two sets](#finding-symmetric-difference-between-two-sets) - [Joining set](#joining-set) - [💻 Exercises: Day 7](#%f0%9f%92%bb-exercises-day-7) - [📘 Day 8](#%f0%9f%93%98-day-8) - [Dictionary](#dictionary) - [Creating a dictionary](#creating-a-dictionary) - [Dictionary Length](#dictionary-length) - [Accessing a dictionary items](#accessing-a-dictionary-items) - [Adding Item to a dictionary](#adding-item-to-a-dictionary) - [Modifying Item in a dictionary](#modifying-item-in-a-dictionary) - [Checking a key in a dictionary](#checking-a-key-in-a-dictionary) - [Removing key items from dictionary](#removing-key-items-from-dictionary) - [Changing dictionary to list items](#changing-dictionary-to-list-items) - [Clearing dictionary list items](#clearing-dictionary-list-items) - [Deleting dictionary](#deleting-dictionary) - [Copy a dictionary](#copy-a-dictionary) - [Getting dictionary keys as list](#getting-dictionary-keys-as-list) - [Getting dictionary values as list](#getting-dictionary-values-as-list) - [💻 Exercises: Day 8](#%f0%9f%92%bb-exercises-day-8) - [📘 Day 9](#%f0%9f%93%98-day-9) - [Conditionals](#conditionals) - [If condition](#if-condition) - [If Else](#if-else) - [If elif else](#if-elif-else) - [Short Hand](#short-hand) - [Nested condition](#nested-condition) - [If condition and and logical operator](#if-condition-and-and-logical-operator) - [If and or logical operator](#if-and-or-logical-operator) - [💻 Exercises: Day 9](#%f0%9f%92%bb-exercises-day-9) # 📘 Day 7 ## Set Let me take you back to your elementary or high school Mathematics lesson. The Mathematics definition of set can be applied also in python. Set is a collection of unordered and unindexed distinct elements. In python set uses to store unique items, and it is possible to find the *union*, *intersection*, *difference*, *symmetric difference*, *subset*, *super set* and *disjoint set* among sets. ### Creating a set We use curly bracket, {} to create a set. * Creating an empty set ```py # syntax st = {} # or st = set() ``` * Creating a set with initial items ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} ``` **Example:** ```py # syntax fruits = {'banana', 'orange', 'mango', 'lemon'} ``` ### Getting set length We use **len()** method to find the length of a set. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} len(set) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} len(fruits) ``` ### Accessing Items in set We use loops to access items. We will see this in loop section ### Checking an item To check if an item exist in a list use use *in*. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} 'item3' in st ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} 'mango' in fruits ``` ### Adding items to a list Once a list is created we can not change an item but we can add additional items. * Add one item using *add()* ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.add('item5') ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.add('lime') ``` * Add multiple items or using *update()* ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.update(['item5','item6','item7']) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = ('Tomato', 'Potato', 'Cabbage','Onion', 'Carrot') fruits.update(vegetables) ``` ### Removing item from a list We can remove an item from a list using *remove()* method. If the item is not found *remove()* method raise an errors, so it is good to check if the item exist or not. However, *discard() method doesn't raise an error. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.remove('item2") ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.pop() ``` ### Clearing item in a set If we want to clear or empty the set we use *clear* method. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} st.clear() ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} fruits.clear() ``` ### Deleting a set If we want to delete the set itself we use *del* operator. ```py # syntax st = {'item1', 'item2', 'item3', 'item4'} del set ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} del fruits ``` ### Converting list to set We can convert list to set and set to list back. Converting list to set removes duplicates and only unique items will be reserved. ```py # syntax lst = ['item1', 'item2', 'item3', 'item4', 'item1'] st = set(lst) # {'item2', 'item4', 'item1', 'item3'} ``` **Example:** ```py fruits = ['banana', 'orange', 'mango', 'lemon','orange', 'banana'] fruits = set(fruits) # {'mango', 'lemon', 'banana', 'orange'} ``` ### Joining sets We can join two using the *union()* or *update() method. * Union This method returns a new set ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st3 = st1.union(st2) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'} fruits.union(vegetables) # {'lemon', 'Carrot', 'Tomato', 'banana', 'mango', 'orange', 'Cabbage', 'Potato', 'Onion'} ``` * Update This method insert an other set ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item5', 'item6', 'item7', 'item8'} st1.update(st2) ``` **Example:** ```py fruits = {'banana', 'orange', 'mango', 'lemon'} vegetables = {'Tomato', 'Potato', 'Cabbage','Onion', 'Carrot'} fruits.update(vegetables) print(fruits) # {'lemon', 'Carrot', 'Tomato', 'banana', 'mango', 'orange', 'Cabbage', 'Potato', 'Onion'} ``` ### Finding intersection items Intersection returns a set of items which are in both the sets. See the example ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.intersection(even_numbers) # {0, 2, 4, 6, 8, 10} python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.intersection(dragon) # {'o', 'n'} ``` ### Checking subset and super set A set can be a subset or super set of other sets: * Subset: *issubset()* * Super set: *issuperset* ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.issubset(st1) # True st1.issuperset(st2) # True ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.issubset(even_numbers) # False, because it is super set whole_numbers.issuperset(even_numbers) # True python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.issubset(dragon) # False ``` ### Checking difference between two sets It return the difference between the two sets. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.difference(st1) # {'item1', 'item4'} => st1\st2 ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {0, 2, 4, 6, 8, 10} whole_numbers.difference(even_numbers) # {1, 3, 5, 7} python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.difference(dragon) # {'p', 'y', 't'} dragon.difference(python) # {'d', 'r', 'a', 'g'} ``` ### Finding Symmetric difference between two sets It return the the symmetric difference between the two sets, it means that it return a set that contains all items from both sets, except items that are present in both set, mathematically: (A\B) U (B\A) ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} # it mean (A\B)U(B) st2.symmetric_difference(st1) # {'item1', 'item4'} ``` **Example:** ```py whole_numbers = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} even_numbers = {1, 2, 3, 4, 5} whole_numbers.symmetric_difference(even_numbers) # {0, 6, 7, 8, 9, 10} python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.symmetric_difference(dragon) # {'r', 't', 'p', 'y', 'g', 'a', 'd'} ``` ### Joining set If two set do not have common item or items we call it disjoint set. We can check if two sets are joint or disjoint using *isdisjoint()* method. ```py # syntax st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item2', 'item3'} st2.isdisjoint(st1) # False ``` **Example:** ```py even_numbers = {0, 2, 4 ,6, 8} even_numbers = {1, 3, 5, 7, 9} even_numbers.isdisjoint(odd_numbers) # True, because no common item python = {'p', 'y', 't', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} python.disjoint(dragon) # False, there is common items {'o', 'n'} ``` ## 💻 Exercises: Day 7 ```py # sets it_companies = {'Facebook', 'Google', 'Microsoft', 'Apple', 'IBM', 'Oracle', 'Amazon'} A = {19, 22, 24, 20, 25, 26} B = {19, 22, 20, 25, 26, 24, 28, 27} age = [22, 19, 24, 25, 26, 24, 25, 24] ``` 1. Find the length of the set, it_companies 2. Add 'Twitter' to it companies 3. Insert multiple it companies at once to the set, it_companies 4. Remove one of the companies from the set, it_companies 5. What is the difference between remove and discard 6. Join A and B 7. Find A intersection B 8. Is A subset of B 9. Are A and B disjoint sets 10. Join A with B and B with A 11. What is the symmetric difference between A and B 12. Delete the sets completely 13. Convert the ages to set and compare the length of the list and the set, which is larger ? 14. Explain the difference among the following data types: string, list, tuple and set 15. *I am a teacher and I love to inspire and teach people.* How many unique words have been used in the sentence. # 📘 Day 8 ## Dictionary A dictionary is a collection of unordered, modifiable(mutable) key value paired data type. ### Creating a dictionary To create a dictionary we use a curly bracket, {}. ```py # syntax empty_dict = {} # Dictionary with data values dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'] 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` The dictionary above shows that a value could be any different data type:string, boolean, list, tuple, set or a dictionary. ### Dictionary Length It checks the number of key value pairs in the dictionary. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} print(len(dct)) # 4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(len(person)) # 7 ``` ### Accessing a dictionary items We can access a dictionary items by referring to its key name. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} print(dct['key1']) # item1 print(dct['key4']) # item4 ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person['first_name']) # Asabeneh print(person['country']) # Finland print(person['skills']) # ['HTML','CSS','JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person['city']) # Error ``` Accessing an item by key name raises an error if the key does not exist. To avoid this error first we have to check if a key exist or we can use the _get_ method.The get method returns None, which is a NoneType object data type. object if the data ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } print(person.get('first_name')) # Asabeneh print(person.get('country')) # Finland print(person.get('skills')) #['HTML','CSS','JavaScript', 'React', 'Node', 'MongoDB', 'Python'] print(person.get('city')) # None ``` ### Adding Item to a dictionary We can add new key and value pair to a dictionary ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} dct['key5'] = 'item5' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['job_title'] = 'Instructor' person['skills'].append('HTML') print(person) ``` ### Modifying Item in a dictionary We can add modify item in a dictionary ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} dct['key1'] = 'item-one' ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person['first_name'] = 'Eyob' person['age'] ``` ### Checking a key in a dictionary We use the _in_ operator to check if a key exist in a dictionary ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} print('key2' in dct) # True print('key5' in dct) # False ``` ### Removing key items from dictionary - _pop(key)_: removes the item with the specified key name: - _popitem()_: remove the last time - _del_: removes the item with the specified key name ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} dct.pop('key1') # the first key pair removed dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} dct.popitem() # remove the last item del dct['key2'] # remove key 2 item ``` **Example:** ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } person.pop('first_name') # Remove the firstname item person.popitem() # Remove the lastname item del person['is_married'] # Remove the is_married item ``` ### Changing dictionary to list items The *items()* method change a dictionary to list of tuples. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} print(dct.items()) # dict_items([('key1', 'item1'), ('key2', 'item2'), ('key3', 'item3'), ('key4', 'item4')]) ``` ### Clearing dictionary list items If we don't want the items in a dictionary we can clear them using _clear()_ methods ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} print(dct.clear()) # {} ``` ### Deleting dictionary If we do not use the dictionary we can delete it completely ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} del dct ``` ### Copy a dictionary We copy a dictionary using a _copy()_ method. Using copy we can avoid mutation of the original dictionary. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} dct_copy = dct.copy() # {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} ``` ### Getting dictionary keys as list The _keys()_ method gives us all the keys of a a dictionary as a list. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} keys = dct.keys() print(keys) # dict_keys(['key1', 'key2', 'key3', 'key4']) ``` ### Getting dictionary values as list The _values_ method gives us all the values of a a dictionary as a list. ```py # syntax dct = {'key1':'item1', 'key2':'item2', 'key3':'item3', 'key4':'item4'} values = dct.values() print(values) # dict_values(['item1', 'item2', 'item3', 'item4']) ``` ## 💻 Exercises: Day 8 1. Create a an empty dictionary called dog 2. Add name, color, breed, legs, age to the dog, dictionary 3. Create a student dictionary and add first_name, last_name, gender, age, marital status, skills, country, city and address as key for the dictionary 4. Get the length of student dictionary 5. Get the value of skills and check the data type, it should be list 6. Modify the skills value by adding one or two skills 7. Get the dictionary keys as list 8. Get the dictionary values as list 9. Change the dictionary to a list of tuples using *items() method 10. Delete one of the item in the dictionary 11. Delete the dictionary completely # 📘 Day 9 ## Conditionals By default , statements in python script executed sequentially from top to bottom. If the processing logic require so, the sequential flow of execution can be altered in two way: * Conditional execution: a block of one or more statements will be executed if a certain expression is true * Repetitive execution: a block of one or more statements will be repetitively executed as long as a certain expression is true. In this section, we will cover *if*, *else* , *elif* statements. The comparison and logical operator we learned in the previous sections will be useful here. ### If condition In python and other programming languages the key word *if* use to check if a condition is true and to execute the block code. Remember the indentation after the colon. ```py # syntax if condition: this part of code run for truthy condition ``` **Example:** ```py a = 3 if a > 0: print('A is a positive number') # a is a positive number ``` As you can see in the above condition, 3 is greater than 0 and it is a positive number. The condition was true and the block code was executed. However, if the condition is false, we do not see a result. In order to see the result of the falsy condition, we should have another block, which is going to be *else*. ### If Else If condition is true the first block will be executed, if not the else condition will run. ```py # syntax if condition: this part of code run for truthy condition else: this part of code run for false condition ``` **Example:** ```py a = 3 if a < 0: print('A is a positive number') else: print('A is a negative number') ``` The above condition is false, therefore the else block was executed. How about if our condition is more than two, we will use *elif*. ### If elif else On our daily life, we make decision on daily basis. We make decision not by checking one or two conditions instead multiple conditions. As similar to life, programming is also full conditions. We use *elif* when we have multiple conditions. ```py # syntax if condition: code elif condition: code else: code ``` **Example:** ```py a = 0 if a > 0: print('A is a positive number') elif a < 0: print('A is a negative number') else: print('A is zero') ``` ### Short Hand ```py # syntax code if condition else code ``` **Example:** ```py a = 3 print('A is positive') if a > 0 else print('A is negative') ``` ### Nested condition Condition can be nested ```py # syntax if condition: code if condition: code ``` **Example:** ```py a = 0 if a > 0: if a % 2 == 0: print('A is positive even integer') else: print('A positive number') elif a == 0: print('Zero') else: print('A negative number') ``` We can avoid writing nested condition by using logical operator, *and*. ### If condition and and logical operator ```py # syntax if condition and condition: code ``` **Example:** ```py a = 0 if a > 0 and a % 2 == 0: print('A is even positive integer') elif a > 0 and a % 2 !== 0: print('A is positive integer') elif a == 0: print('Zero') else: print('A negative number') ``` ### If and or logical operator ```py # syntax if condition or condition: code ``` **Example:** ```py a = 0 if a > 0 or % 2 == 0: print('A is positive integer') elif a == 0: print('Zero') else: print('A negative number') ``` ## 💻 Exercises: Day 9 1. Get user input using input(“Enter your age:”). If user is 18 or older , give feedback:You are old enough to drive but if not 18 give feedback to wait for the years he supposed to wait for. Output: ```sh Enter your age: 30 You are old enough to drive. Output: Enter your age:15 You are left with 3 years to drive. ``` 1. Compare the values of my_age and your_age using if … else. Based on the comparison print who is older (me or you). Use input(“Enter your age:”) to get the age as input. Output: ```sh Enter your age: 30 You are 5 years older than me. ``` 1. Get two numbers from user using, input prompt. If a is greater than b return a is greater than b,if a is less b return a lesson b, else a is equal to b. Output: ```sh Enter number one: 4 Enter number two: 3 4 is greater than 3 ``` 1. Write a code which give grade to students according to theirs scores: ```sh 90-100, A 80-89, B 70-79, C 60-69, D 0-59, F ``` 1. Check if the season is Autumn, Winter, Spring or Summer. If the user input is: September, October or November, the season is Autumn. December, January or February, the season is Winter. March, April or May, the season is Spring June, July or August, the season is Summer 1. The following list contains some fruits: ```sh fruits = ['banana', 'orange', 'mango', 'lemon'] ``` If a fruit doesn't exist in the list add the fruit in the list and print the modified list but if the fruit exists print('A fruit already exist in the list') 1. Here we have a person dictionary. ```py person = { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'age':250, 'country':'Finland', 'is_marred':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street', 'zipcode':'02210' } } ``` * Check if the person dictionary has skills, if it has skills key check print out the middle skill in the skills list. * Check if the person dictionary has skills, if it has skills key check if the person has 'Python' skill and print the skill. * If a person skills has only JavaScript and React, print('He is a front end developer'), if the person skills has Node, Python, MongoDB, print ('He is a backend developer'), if the person skills has React, Node and MongoDB, Print('He is a fullstack developer'), else print('unknown title') * If the person is married and if he lives in Finland, print the following: ```py Asabeneh Yetayeh lives in Finland. He is married. ``` [<< Part 2 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme4-6.md) | [Part 4 >>](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme10-12.md) *** ================================================ FILE: python_for_web/.gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ ================================================ FILE: python_for_web/Procfile ================================================ web: python app.py ================================================ FILE: python_for_web/app.py ================================================ # let's import the flask from flask import Flask, render_template, request, redirect, url_for import os # importing operating system module app = Flask(__name__) # to stop caching static file app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0 @app.route('/') # this decorator create the home route def home(): techs = ['HTML', 'CSS', 'Flask', 'Python'] name = '30 Days Of Python Programming' return render_template('home.html', techs=techs, name=name, title='Home') @app.route('/about') def about(): name = '30 Days Of Python Programming' return render_template('about.html', name=name, title='About Us') @app.route('/result') def result(): return render_template('result.html') @app.route('/post', methods=['GET', 'POST']) def post(): name = 'Text Analyzer' if request.method == 'GET': return render_template('post.html', name=name, title=name) if request.method == 'POST': content = request.form['content'] return redirect(url_for('result')) if __name__ == '__main__': # for deployment # to make it work for both production and development port = int(os.environ.get("PORT", 5000)) app.run(debug=True, host='0.0.0.0', port=port) ================================================ FILE: python_for_web/requirements.txt ================================================ Click==7.0 Flask==1.1.1 itsdangerous==1.1.0 Jinja2==2.10.3 MarkupSafe==1.1.1 Werkzeug==0.16.0 ================================================ FILE: python_for_web/static/css/main.css ================================================ /* === GENERAL === */ * { margin: 0; padding: 0; box-sizing: border-box; } /* === css variables === */ :root { --header-bg-color: #4a7799; --textarea-bg-color: rgb(250, 246, 246); --body-bg-color: rgb(210, 214, 210); --nav-link-color: #bbb; } /* === body style === */ body { background: var(--body-bg-color); margin: auto; line-height: 1.75; font-weight: 900; word-spacing: 1.5px; font-family: 'Lato',sans-serif; font-weight: 300; } /* === header style === */ header { background: var(--header-bg-color); } /* === title and subtitle style === */ h1, h2 { margin: 20px; font-weight: 300; font-family: Nunito; } /* === header menu style === */ .menu-container { width: 90%; display: flex; justify-content: space-around; align-items: center; color: rgb(221, 215, 215); padding: 25px; } .nav-lists { display: flex; } .nav-list { list-style: none; margin: 0 5px; } .nav-link { text-decoration: none; font-size: 22px; padding: 0 5px; color: var(--nav-link-color); font-weight: 400; } .brand-name { font-size: 28px; font-weight: bolder; } /* === paragraph text style === */ p { font-size: 22px; font-weight: 300; } /* === main style === */ main { width: 90%; margin: auto; } /* === container div inside main style === */ .container { background: rgb(210, 214, 210); padding: 20px; margin: auto; } .tech-lists { margin: 10px auto; text-align: left; font-size: 20px; } .tech { list-style: none; } /* === button style === */ .btn { width: 150px; height: 50px; background: var(--header-bg-color); color: var(--nav-link-color); font-size: 20px; margin: 5px; border: 1px solid var(--header-bg-color); font-family: Lato; cursor: pointer; } .btn:focus { outline: 2px solid #2a70a5; cursor: pointer; } /* === textarea style === */ textarea { width: 65%; margin: auto; padding: 10px 15px; outline: 2px solid rgba(207, 203, 203, 0.25); border: none; font-size: 18px; font-family: Lato; font-weight: 300; } textarea:focus { border: none; outline: 2px solid rgba(74, 119, 153, 0.45); background: var(--textarea-bg-color); font-size: 18px; caret-color: var(--header-bg-color); font-family: Lato; font-weight: 300; } /* === responsiveness === */ @media (max-width:600px) { .menu-container { flex-direction: column; justify-content: space-between; } h1{ font-size: 22px; } .nav-lists { flex-direction: column; } textarea { width: 100%; } } ================================================ FILE: python_for_web/templates/about.html ================================================ {% extends 'layout.html' %} {% block content %}

About {{name}}

This is a 30 days of python programming challenge. If you have been coding this far, you are awesome. Congratulations for the job well done!

{% endblock %} ================================================ FILE: python_for_web/templates/home.html ================================================ {% extends 'layout.html' %} {% block content %}

Welcome to {{name}}

This application clean texts and analyse the number of word, characters and most frequent words in the text. Check it out by click text analyzer at the menu. You need the following technologies to build this web application:

    {% for tech in techs %}
  • {{tech}}
  • {% endfor %}
{% endblock %} ================================================ FILE: python_for_web/templates/layout.html ================================================ {% if title %} 30 Days of Python - {{ title}} {% else %} 30 Days of Python {% endif %}
{% block content %} {% endblock %}
================================================ FILE: python_for_web/templates/post.html ================================================ {% extends 'layout.html' %} {% block content %}

Text Analyzer

{% endblock %} ================================================ FILE: python_for_web/templates/result.html ================================================ {% extends 'layout.html' %} {% block content %}

Text Analysis Result

{% endblock %} ================================================ FILE: readme.md ================================================ # 🐍 30 Days Of Python |# Day | Topics | |------|:---------------------------------------------------------:| | 01 | [Introduction](./readme.md)| | 02 | [Variables, Built-in Functions](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md)| | 03 | [Operators](./03_Day_Operators/03_operators.md)| | 04 | [Strings](./04_Day_Strings/04_strings.md)| | 05 | [Lists](./05_Day_Lists/05_lists.md)| | 06 | [Tuples](./06_Day_Tuples/06_tuples.md)| | 07 | [Sets](./07_Day_Sets/07_sets.md)| | 08 | [Dictionaries](./08_Day_Dictionaries/08_dictionaries.md)| | 09 | [Conditionals](./09_Day_Conditionals/09_conditionals.md)| | 10 | [Loops](./10_Day_Loops/10_loops.md)| | 11 | [Functions](./11_Day_Functions/11_functions.md)| | 12 | [Modules](./12_Day_Modules/12_modules.md)| | 13 | [List Comprehension](./13_Day_List_comprehension/13_list_comprehension.md)| | 14 | [Higher Order Functions](./14_Day_Higher_order_functions/14_higher_order_functions.md)| | 15 | [Python Type Errors](./15_Day_Python_type_errors/15_python_type_errors.md)| | 16 | [Python Date time](./16_Day_Python_date_time/16_python_datetime.md) | | 17 | [Exception Handling](./17_Day_Exception_handling/17_exception_handling.md)| | 18 | [Regular Expressions](./18_Day_Regular_expressions/18_regular_expressions.md)| | 19 | [File Handling](./19_Day_File_handling/19_file_handling.md)| | 20 | [Python Package Manager](./20_Day_Python_package_manager/20_python_package_manager.md)| | 21 | [Classes and Objects](./21_Day_Classes_and_objects/21_classes_and_objects.md)| | 22 | [Web Scraping](./22_Day_Web_scraping/22_web_scraping.md)| | 23 | [Virtual Environment](./23_Day_Virtual_environment/23_virtual_environment.md)| | 24 | [Statistics](./24_Day_Statistics/24_statistics.md)| | 25 | [Pandas](./25_Day_Pandas/25_pandas.md)| | 26 | [Python web](./26_Day_Python_web/26_python_web.md)| | 27 | [Python with MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md)| | 28 | [API](./28_Day_API/28_API.md)| | 29 | [Building API](./29_Day_Building_API/29_building_API.md)| | 30 | [Conclusions](./30_Day_Conclusions/30_conclusions.md)| 🧡🧡🧡 HAPPY CODING 🧡🧡🧡 ---

💖 Sponsors

Our amazing sponsors for supporting my open-source contribution and the 30 Days of Challenge series!

Current Sponsors



--- ### 🙌 Become a Sponsor You can support this project by becoming a sponsor on **[GitHub Sponsors](https://github.com/sponsors/asabeneh)** or through [PayPal](https://www.paypal.me/asabeneh). Every contribution, big or small, makes a huge difference. Thank you for your support! 🌟 ---

30 Days Of Python: Day 1 - Introduction

Twitter Follow Author: Asabeneh Yetayeh
Second Edition: July, 2021
🇧🇷 [Portuguese](./Portuguese/README.md) 🇨🇳 [中文](./Chinese/README.md) [Day 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md) ![30DaysOfPython](./images/30DaysOfPython_banner3@2x.png) - [🐍 30 Days Of Python](#-30-days-of-python) - [🙌 Become a Sponsor](#-become-a-sponsor) - [📘 Day 1](#-day-1) - [Welcome](#welcome) - [Introduction](#introduction) - [Why Python ?](#why-python-) - [Environment Setup](#environment-setup) - [Installing Python](#installing-python) - [Python Shell](#python-shell) - [Installing Visual Studio Code](#installing-visual-studio-code) - [How to use visual studio code](#how-to-use-visual-studio-code) - [Basic Python](#basic-python) - [Python Syntax](#python-syntax) - [Python Indentation](#python-indentation) - [Comments](#comments) - [Data types](#data-types) - [Number](#number) - [String](#string) - [Booleans](#booleans) - [List](#list) - [Dictionary](#dictionary) - [Tuple](#tuple) - [Set](#set) - [Checking Data types](#checking-data-types) - [Python File](#python-file) - [💻 Exercises - Day 1](#-exercises---day-1) - [Exercise: Level 1](#exercise-level-1) - [Exercise: Level 2](#exercise-level-2) - [Exercise: Level 3](#exercise-level-3) # 📘 Day 1 ## Welcome **Congratulations** for deciding to participate in a _30 days of Python_ programming challenge. In this challenge, you will learn everything you need to be a python programmer and the whole concept of programming. In the end of the challenge you will get a _30DaysOfPython_ programming challenge certificate. If you would like to actively engage in the challenge, you may join the [30DaysOfPython challenge](https://t.me/ThirtyDaysOfPython) telegram group. ## Introduction Python is a high-level programming language for general-purpose programming. It is an open source, interpreted, object-oriented programming language. Python was created by a Dutch programmer, Guido van Rossum. The name of the Python programming language was derived from a British sketch comedy series, *Monty Python's Flying Circus*. The first version was released on February 20, 1991. This 30 days of Python challenge will help you learn the latest version of Python, Python 3 step by step. The topics are broken down into 30 days, where each day contains several topics with easy-to-understand explanations, real-world examples, and many hands on exercises and projects. This challenge is designed for beginners and professionals who want to learn python programming language. It may take 30 to 100 days to complete the challenge. People who actively participate in the telegram group have a high probability of completing the challenge. This challenge is easy to read, written in conversational English, engaging, motivating and at the same time, it is very demanding. You need to allocate much time to finish this challenge. If you are a visual learner, you may get the video lesson on Washera YouTube channel. You may start from [Python for Absolute Beginners video](https://youtu.be/OCCWZheOesI). Subscribe the channel, comment and ask questions on YouTube videos and be proactive, the author will eventually notice you. The author likes to hear your opinion about the challenge, share the author by expressing your thoughts about the 30DaysOfPython challenge. You can leave your testimonial on this [link](https://www.asabeneh.com/testimonials) ## Why Python ? It is a programming language which is very close to human language and because of that, it is easy to learn and use. Python is used by various industries and companies (including Google). It has been used to develop web applications, desktop applications, system administration, and machine learning libraries. Python is a highly embraced language in the data science and machine learning community. I hope this is enough to convince you to start learning Python. Python is eating the world and you are killing it before it eats you. ## Environment Setup ### Installing Python To run a python script you need to install python. Let's [download](https://www.python.org/) python. If your are a windows user, click the button encircled in red. [![installing on Windows](./images/installing_on_windows.png)](https://www.python.org/) If you are a macOS user, click the button encircled in red. [![installing on Windows](./images/installing_on_macOS.png)](https://www.python.org/) To check if python is installed write the following command on your device terminal. ```shell python3 --version ``` ![Python Version](./images/python_versio.png) As you can see from the terminal, I am using _Python 3.7.5_ version at the moment. Your version of Python might be different from mine by but it should be 3.6 or above. If you manage to see the python version, well done. Python has been installed on your machine. Continue to the next section. ### Python Shell Python is an interpreted scripting language, so it does not need to be compiled. It means it executes the code line by line. Python comes with a _Python Shell (Python Interactive Shell)_. It is used to execute a single python command and get the result. Python Shell waits for the Python code from the user. When you enter the code, it interprets the code and shows the result in the next line. Open your terminal or command prompt(cmd) and write: ```shell python ``` ![Python Scripting Shell](./images/opening_python_shell.png) The Python interactive shell is opened and it is waiting for you to write Python code(Python script). You will write your Python script next to this symbol >>> and then click Enter. Let us write our very first script on the Python scripting shell. ![Python script on Python shell](./images/adding_on_python_shell.png) Well done, you wrote your first Python script on Python interactive shell. How do we close the Python interactive shell ? To close the shell, next to this symbol >>> write **exit()** command and press Enter. ![Exit from python shell](./images/exit_from_shell.png) Now, you know how to open the Python interactive shell and how to exit from it. Python will give you results if you write scripts that Python understands, if not it returns errors. Let's make a deliberate mistake and see what Python will return. ![Invalid Syntax Error](./images/invalid_syntax_error.png) As you can see from the returned error, Python is so clever that it knows the mistake we made and which was _Syntax Error: invalid syntax_. Using x as multiplication in Python is a syntax error because (x) is not a valid syntax in Python. Instead of (**x**) we use asterisk (*) for multiplication. The returned error clearly shows what to fix. The process of identifying and removing errors from a program is called _debugging_. Let us debug it by putting * in place of **x**. ![Fixing Syntax Error](./images/fixing_syntax_error.png) Our bug was fixed, the code ran and we got a result we were expecting. As a programmer you will see such kind of errors on daily basis. It is good to know how to debug. To be good at debugging you should understand what kind of errors you are facing. Some of the Python errors you may encounter are _SyntaxError_, _IndexError_, _NameError_, _ModuleNotFoundError_, _KeyError_, _ImportError_, _AttributeError_, _TypeError_, _ValueError_, _ZeroDivisionError_ etc. We will see more about different Python **_error types_** in later sections. Let us practice more how to use Python interactive shell. Go to your terminal or command prompt and write the word **python**. ![Python Scripting Shell](./images/opening_python_shell.png) The Python interactive shell is opened. Let us do some basic mathematical operations (addition, subtraction, multiplication, division, modulus, exponentiation). Let us do some maths first before we write any Python code: - 2 + 3 = 5 - 3 - 2 = 1 - 3 \* 2 = 6 - 3 / 2 = 1.5 - 3 \*\* 2 = 3 x 3 = 9 In python, we have the following additional operations: - 3 % 2 = 1 => which means finding the remainder - 3 // 2 = 1 => which means removing the remainder Let us change the above mathematical expressions to Python code. The Python shell has been opened and let us write a comment at the very beginning of the shell. A _comment_ is a part of the code which is not executed by python. So we can leave some text in our code to make our code more readable. Python does not run the comment part. A comment in python starts with hash(#) symbol. This is how you write a comment in python ```shell # comment starts with hash # this is a python comment, because it starts with a (#) symbol ``` ![Maths on python shell](./images/maths_on_python_shell.png) Before we move on to the next section, let us practice more on the Python interactive shell. Close the opened shell by writing _exit()_ on the shell and open it again and let us practice how to write text on the Python shell. ![Writing String on python shell](./images/writing_string_on_shell.png) ### Installing Visual Studio Code The Python interactive shell is good to try and test small script codes but it will not be for a big project. In real work environment, developers use different code editors to write codes. In this 30 days of Python programming challenge, we will use Visual Studio Code. Visual Studio Code is a very popular open source text editor. I am a fan of vscode and I would recommend to [download](https://code.visualstudio.com/) visual studio code, but if you are in favor of other editors, feel free to follow with what you have. [![Visual Studio Code](./images/vscode.png)](https://code.visualstudio.com/) If you installed visual studio code, let us see how to use it. If you prefer a video, you can follow this Visual Studio Code for Python [Video tutorial](https://www.youtube.com/watch?v=bn7Cx4z-vSo) #### How to use visual studio code Open the visual studio code by double clicking the visual studio icon. When you open it you will get this kind of interface. Try to interact with the labeled icons. ![Visual studio Code](./images/vscode_ui.png) Create a folder named 30DaysOfPython on your desktop. Then open it using visual studio code. ![Opening Project on Visual studio](./images/how_to_open_project_on_vscode.png) ![Opening a project](./images/opening_project.png) After opening it, you will see shortcuts for creating files and folders inside of 30DaysOfPython project's directory. As you can see below, I have created the very first file, `helloworld.py`. You can do the same. ![Creating a python file](./images/helloworld.png) After a long day of coding, you want to close your code editor, right? This is how you will close the opened project. ![Closing project](./images/closing_opened_project.png) Congratulations, you have finished setting up the development environment. Let us start coding. ## Basic Python ### Python Syntax A Python script can be written in Python interactive shell or in the code editor. A Python file has an extension .py. ### Python Indentation An indentation is a white space in a text. Indentation in many languages is used to increase code readability; however, Python uses indentation to create blocks of code. In other programming languages, curly brackets are used to create code blocks instead of indentation. One of the common bugs when writing Python code is incorrect indentation. ![Indentation Error](./images/indentation.png) ### Comments Comments play a crucial role in enhancing code readability and allowing developers to leave notes within their code. In Python, any text preceded by a hash (#) symbol is considered a comment and is not executed when the code runs. **Example: Single Line Comment** ```shell # This is the first comment # This is the second comment # Python is eating the world ``` **Example: Multiline Comment** Triple quote can be used for multiline comment if it is not assigned to a variable ```shell """This is multiline comment multiline comment takes multiple lines. python is eating the world """ ``` ### Data types In Python there are several types of data types. Let us get started with the most common ones. Different data types will be covered in detail in other sections. For the time being, let us just go through the different data types and get familiar with them. You do not have to have a clear understanding now. #### Number - Integer: Integer(negative, zero and positive) numbers Example: ... -3, -2, -1, 0, 1, 2, 3 ... - Float: Decimal number Example ... -3.5, -2.25, -1.0, 0.0, 1.1, 2.2, 3.5 ... - Complex Example 1 + j, 2 + 4j #### String A collection of one or more characters under a single or double quote. If a string is more than one sentence then we use a triple quote. **Example:** ```py 'Asabeneh' 'Finland' 'Python' 'I love teaching' 'I hope you are enjoying the first day of 30DaysOfPython Challenge' ``` #### Booleans A boolean data type is either a True or False value. T and F should be always uppercase. **Example:** ```python True # Is the light on? If it is on, then the value is True False # Is the light on? If it is off, then the value is False ``` #### List Python list is an ordered collection which allows to store different data type items. A list is similar to an array in JavaScript. **Example:** ```py [0, 1, 2, 3, 4, 5] # all are the same data types - a list of numbers ['Banana', 'Orange', 'Mango', 'Avocado'] # all the same data types - a list of strings (fruits) ['Finland','Estonia', 'Sweden','Norway'] # all the same data types - a list of strings (countries) ['Banana', 10, False, 9.81] # different data types in the list - string, integer, boolean and float ``` #### Dictionary A Python dictionary object is an unordered collection of data in a key value pair format. **Example:** ```py { 'first_name':'Asabeneh', 'last_name':'Yetayeh', 'country':'Finland', 'age':250, 'is_married':True, 'skills':['JS', 'React', 'Node', 'Python'] } ``` #### Tuple A tuple is an ordered collection of different data types like list but tuples can not be modified once they are created. They are immutable. **Example:** ```py ('Asabeneh', 'Pawel', 'Brook', 'Abraham', 'Lidiya') # Names ``` ```py ('Earth', 'Jupiter', 'Neptune', 'Mars', 'Venus', 'Saturn', 'Uranus', 'Mercury') # planets ``` #### Set A set is a collection of data types similar to list and tuple. Unlike list and tuple, set is not an ordered collection of items. Like in Mathematics, set in Python stores only unique items. In later sections, we will go in detail about each and every Python data type. **Example:** ```py {2, 4, 3, 5} {3.14, 9.81, 2.7} # order is not important in set ``` ### Checking Data types To check the data type of certain data/variable we use the **type** function. In the following terminal you will see different python data types: ![Checking Data types](./images/checking_data_types.png) ### Python File First open your project folder, 30DaysOfPython. If you don't have this folder, create a folder name called 30DaysOfPython. Inside this folder, create a file called helloworld.py. Now, let's do what we did on python interactive shell using visual studio code. The Python interactive shell was printing without using **print** but on visual studio code to see our result we should use a built in function _print()_. The _print()_ built-in function takes one or more arguments as follows _print('arument1', 'argument2', 'argument3')_. See the examples below. **Example:** The file name is `helloworld.py` ```py # Day 1 - 30DaysOfPython Challenge print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) print(3 // 2) # Floor division operator(//) # Checking data types print(type(10)) # Int print(type(3.14)) # Float print(type(1 + 3j)) # Complex number print(type('Asabeneh')) # String print(type([1, 2, 3])) # List print(type({'name':'Asabeneh'})) # Dictionary print(type({9.8, 3.14, 2.7})) # Set print(type((9.8, 3.14, 2.7))) # Tuple ``` To run the python file check the image below. You can run the python file either by running the green button on Visual Studio Code or by typing _python helloworld.py_ in the terminal . ![Running python script](./images/running_python_script.png) 🌕 You are amazing. You have just completed day 1 challenge and you are on your way to greatness. Now do some exercises for your brain and muscles. ## 💻 Exercises - Day 1 ### Exercise: Level 1 1. Check the python version you are using 2. Open the python interactive shell and do the following operations. The operands are 3 and 4. - addition(+) - subtraction(-) - multiplication(\*) - modulus(%) - division(/) - exponential(\*\*) - floor division operator(//) 3. Write strings on the python interactive shell. The strings are the following: - Your name - Your family name - Your country - I am enjoying 30 days of python 4. Check the data types of the following data: - 10 - 9.8 - 3.14 - 4 - 4j - ['Asabeneh', 'Python', 'Finland'] - Your name - Your family name - Your country ### Exercise: Level 2 1. Create a folder named day_1 inside 30DaysOfPython folder. Inside day_1 folder, create a python file helloworld.py and repeat questions 1, 2, 3 and 4. Remember to use _print()_ when you are working on a python file. Navigate to the directory where you have saved your file, and run it. ### Exercise: Level 3 1. Write an example for different Python data types such as Number(Integer, Float, Complex), String, Boolean, List, Tuple, Set and Dictionary. 2. Find an [Euclidean distance](https://en.wikipedia.org/wiki/Euclidean_distance#:~:text=In%20mathematics%2C%20the%20Euclidean%20distance,being%20called%20the%20Pythagorean%20distance.) between (2, 3) and (10, 8) 🎉 CONGRATULATIONS ! 🎉 [Day 2 >>](./02_Day_Variables_builtin_functions/02_variables_builtin_functions.md)